:root {
    /* Colors */
    --bg-dark: #080808;
    --bg-light: #F5F0E6;
    --gold-primary: #C9A84C;
    --gold-text: #E0C57A;
    --text-light: #F5F0E6;
    --text-dark: #080808;
    --text-gray: #181818;
    --card-bg-dark: #27231A;
    --card-bg-light: #FFFFFF;
    --metric-card-bg: rgba(195, 148, 17, 0.12);
    --btn-text: #080808;
    --alert-bg: #FFEBEB;
    --alert-text: #9E0909;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Petrona', serif;

    /* Spacing */
    --container-padding-mobile: 24px;
    --container-padding-desktop: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* Typography Base */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
    width: 100%;
}

.section {
    padding-top: 64px;
    padding-bottom: 64px;
}

/* Header */
.header {
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
    height: 64px;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 24px;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menu */
.main-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
}

.main-menu.active {
    max-height: 200px; /* Ajuste se houver mais itens no menu */
    padding: 24px var(--container-padding-mobile);
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
}

.main-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.main-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--gold-text);
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: var(--text-light);
}

/* Shared Titles */
.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
}

/* --- Section 1: Hero --- */
.hero-content {
    margin-bottom: 48px;
}

.subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--gold-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.highlight {
    color: var(--gold-primary);
}

.description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.invite-card {
    background-color: var(--card-bg-dark);
    border-left: 3px solid var(--gold-primary);
    border: 1px solid var(--gold-primary);
    border-left-width: 4px;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold-primary);
    color: var(--btn-text);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 32px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Section 2: Prova de Mercado --- */
.section-2 {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-2 .section-title {
    color: var(--text-dark);
}

.market-description p {
    font-size: 18px;
    margin-bottom: 16px;
}

.market-description p:last-child {
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background-color: var(--metric-card-bg);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-card p {
    font-size: 18px;
    color: var(--text-dark);
}

.pme-explanation p {
    font-size: 18px;
    margin-bottom: 48px;
}

.invite-card-large {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid var(--gold-primary);
    border-left-width: 4px;
    border-radius: 8px;
    padding: 24px;
    font-size: 18px;
}

/* --- Section 3: Diferenciais --- */
.s3-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    font-size: 16px;
    background-color: var(--card-bg-dark);
    padding: 24px;
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
}

.s3-right-intro {
    font-size: 16px;
    margin-bottom: 24px;
}

.line-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.line-list li {
    font-size: 16px;
    font-style: italic;
    padding: 24px 0;
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
}

.s3-footer-title {
    font-size: 32px;
    font-style: italic;
    color: var(--gold-text);
    text-align: center;
    margin-top: 48px;
}

/* --- Section 4: Antes de Continuar --- */
.section-4 {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-4 .section-title {
    color: var(--text-dark);
}

.s4-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.s4-left {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.alert-card {
    background-color: var(--alert-bg);
    color: var(--text-dark);
    border: 1px solid var(--alert-text);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    font-size: 20px;
}

.alert-card strong {
    color: var(--alert-text);
}

.apply-title {
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}

.apply-card {
    background-color: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 32px;
}

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bullet-list li {
    font-size: 18px;
    font-style: italic;
    padding-left: 16px;
    position: relative;
}

.bullet-list li::before {
    content: '•';
    color: var(--text-dark);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.s4-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Section 5: Os 5 Pilares --- */
.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg-dark);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 24px;
    gap: 24px;
}

.pillar-number {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 500;
    color: var(--gold-primary);
}

.pillar-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pillar-content p {
    font-size: 18px;
}

/* --- Section 6: Estrutura --- */
.section-6 {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-6 .section-title {
    color: var(--text-dark);
}

.structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.structure-card {
    background-color: rgba(201, 168, 76, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.structure-card img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.structure-card h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.structure-content p {
    font-size: 18px;
    color: var(--text-dark);
}

/* --- Section 7: Dúvidas --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
    padding: 0 0 24px 0;
}

.faq-item h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    font-style: italic;
}

/* --- Section 8: CTA Final e Bio --- */
.section-8 {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-8 .section-title {
    color: var(--text-dark);
}

.s8-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.s8-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.bio-subtitle {
    font-size: 20px;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.bio-text p {
    font-size: 16px;
    margin-bottom: 16px;
}

.final-cta {
    text-align: center;
    padding: 0;
}

.section-cta {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-cta .section-title {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.cta-sub {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--gold-primary);
    margin-top: 32px;
    margin-bottom: 48px;
}

/* --- Footer --- */
.footer {
    background-color: var(--bg-dark);
    text-align: center;
    padding: 0 0 64px 0;
}

.footer p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--gold-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Desktop Styles --- */
@media (min-width: 1024px) {
    .container {
        padding-left: var(--container-padding-desktop);
        padding-right: var(--container-padding-desktop);
        max-width: 1366px;
        margin: 0 auto;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .main-menu {
        position: static;
        width: auto;
        background-color: transparent;
        padding: 0;
        max-height: none;
        overflow: visible;
        border: none;
    }
    
    .main-menu ul {
        flex-direction: row;
        align-items: center;
    }

    .section {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .section-1-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
    
    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }
    
    .hero-image {
        flex: 1;
        flex-shrink: 0;
    }

    .btn-primary {
        width: fit-content;
    }

    /* Animação especial do botão exigida apenas para Desktop */
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(201, 168, 76, 0.6);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .s3-grid {
        grid-template-columns: 1fr 1fr;
    }

    .s4-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .s4-left {
        width: 654px;
        flex-shrink: 0;
    }

    .s4-image {
        width: 544px;
        flex-shrink: 0;
    }
    
    .structure-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .structure-card-full {
        grid-column: span 2;
    }

    .s8-grid {
        grid-template-columns: 500px 1fr;
        align-items: flex-start;
    }
    
    .final-cta {
        padding: 64px;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
