/* ============================================
   TEMA NOIR LUXE - PRETO E OURO
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3769d4;
    --dark-bg: #050505;
    --card-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #B0B0B0;
    --border-color: #333333;
    --accent-gold: #D4AF37;
    --secondary-dark: #2A2A2A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HEADER & NAVEGAÇÃO
   ============================================ */

.header {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 8rem 0;
    background-color: var(--dark-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero {
    padding: 6rem 0;
    background-color: var(--secondary-dark);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    text-align: center;
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
}

.heading-lg {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
        min-height: 50vh;
    }
    
    .page-hero {
        padding: 4rem 0;
    }
    
    .heading-lg {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .heading-lg {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.section.alternate {
    background-color: var(--secondary-dark);
}

.section-header {
    margin-bottom: 3rem;
}

.heading-md {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 700;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTENT GRID
   ============================================ */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.text-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.icon-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.icon-container {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container.large {
    width: 300px;
    height: 300px;
}

.icon-container.medium {
    width: 200px;
    height: 200px;
}

.icon-container svg {
    width: 100%;
    height: 100%;
}

.icon-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .icon-container {
        width: 200px;
        height: 200px;
    }
    
    .icon-container.large {
        width: 250px;
        height: 250px;
    }
}

/* ============================================
   INFO BLOCKS
   ============================================ */

.info-block {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 1.5rem;
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.info-block .body-text {
    margin-top: 0.5rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */

.highlight-box {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   HIGHLIGHTS GRID (HOME PAGE)
   ============================================ */

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.highlight-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-top: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.highlight-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TWO COLUMN GRID
   ============================================ */

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   SECTORS GRID (ECONOMIA)
   ============================================ */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.sector-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    text-align: center;
    border-top: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
}

.sector-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
}

.sector-icon svg {
    width: 100%;
    height: 100%;
}

.sector-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sector-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   IDEALS GRID (POLÍTICA)
   ============================================ */

.ideals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ideal-card {
    background-color: var(--card-bg);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.ideal-card:hover {
    transform: translateY(-5px);
}

.ideal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.ideal-icon svg {
    width: 100%;
    height: 100%;
}

.ideal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ideal-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ideals-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--card-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SCROLL EFFECTS
   ============================================ */

.info-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .heading-md {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2rem 0;
    }
    
    .heading-md {
        font-size: 1.5rem;
    }
    
    .body-text {
        font-size: 0.95rem;
    }
    
    .nav-links {
        display: none;
    }
}
