/* ===== RESET & VARIÁVEIS ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #120d0a;
    --bg-2: #1c130d;
    --surface: #241811;
    --surface-2: #2e2016;
    --wood: #6b3f1d;
    --wood-light: #8a5228;
    --gold: #e0a44b;
    --gold-light: #f4c97a;
    --cream: #f6ead6;
    --text: #f3e9db;
    --text-muted: #c3b3a0;
    --line: rgba(224, 164, 75, 0.18);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    --radius: 18px;
    --radius-sm: 12px;
    --max: 1180px;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

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

img {
    max-width: 100%;
    display: block;
}

.highlight {
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2b1a09;
    box-shadow: 0 12px 28px rgba(224, 164, 75, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(224, 164, 75, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    font-size: 1.15rem;
    padding: 18px 42px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding: 18px 0;
}

.header.scrolled {
    background: rgba(18, 13, 10, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text em {
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gold);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #2b1a09 !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: .3s ease;
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(224, 164, 75, 0.18), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(138, 82, 40, 0.25), transparent 50%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(224, 164, 75, 0.12);
    border: 1px solid var(--line);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--gold);
}

.hero-stats span {
    font-size: .85rem;
    color: var(--text-muted);
}

/* PRICE CARD */
.hero-card {
    display: flex;
    justify-content: center;
}

.price-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(224, 164, 75, 0.25), transparent 70%);
}

.price-tag {
    display: inline-block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 22px;
}

.price-currency {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-head);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--cream);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-list {
    list-style: none;
    margin-bottom: 26px;
}

.price-list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
    color: var(--text);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-note {
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ===== MARQUEE ===== */
.marquee {
    background: linear-gradient(90deg, var(--wood), var(--wood-light));
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: scroll 26s linear infinite;
}

.marquee-track span {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--cream);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== SECTIONS GERAL ===== */
.section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-head.sub-head {
    margin-top: 80px;
}

.eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow.light {
    color: var(--gold-light);
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.15;
}

.section-lead {
    margin-top: 16px;
    font-size: 1.08rem;
    color: var(--text-muted);
}

/* ===== SOBRE ===== */
.sobre {
    background: var(--bg-2);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

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

.sobre-text a {
    color: var(--gold);
    text-decoration: underline;
}

.sobre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sobre-tags span {
    background: rgba(224, 164, 75, 0.1);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .88rem;
    color: var(--gold-light);
}

.sobre-cards {
    display: grid;
    gap: 18px;
}

.feature-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
    transform: translateX(6px);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: .93rem;
    color: var(--text-muted);
}

/* ===== VÍDEO ===== */
.video-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(224, 164, 75, 0.12), transparent 55%),
        var(--bg);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== MENTORIA ===== */
.mentoria {
    background: var(--bg-2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 32px 24px;
    text-align: center;
    transition: transform .25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.info-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--gold-light);
}

.info-card p {
    color: var(--text-muted);
}

.info-card strong {
    color: var(--text);
    font-size: 1.1rem;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    position: relative;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 28px 30px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.benefit-num {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(224, 164, 75, 0.22);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-family: var(--font-head);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* ===== CONQUISTAS ===== */
.conquistas {
    background: var(--bg);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.award-card {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 30px 20px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(224, 164, 75, 0.18);
}

.award-medal {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 12px;
}

.award-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.award-card p {
    font-size: .88rem;
    color: var(--text-muted);
}

/* ===== CTA FINAL ===== */
.cta-final {
    background:
        radial-gradient(circle at 50% 100%, rgba(224, 164, 75, 0.18), transparent 60%),
        var(--bg-2);
}

.cta-box {
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-box > p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 28px;
}

.cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.cta-price span {
    font-size: .95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-price strong {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--gold);
}

.cta-price em {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: normal;
}

.cta-note {
    margin-top: 20px;
    font-size: .88rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 54px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-icon {
    font-size: 1.6rem;
}

.footer-brand .logo-text {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand .logo-text em {
    color: var(--gold);
    font-style: italic;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: .92rem;
    max-width: 320px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-social a {
    color: var(--text-muted);
    font-size: .95rem;
    transition: color .2s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ===== ANIMAÇÃO REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .info-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links,
    .footer-social {
        align-items: center;
    }

    /* MENU MOBILE */
    .nav-toggle {
        display: flex;
        z-index: 110;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78%, 320px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        background: linear-gradient(160deg, var(--surface-2), var(--bg));
        border-left: 1px solid var(--line);
        transform: translateX(100%);
        transition: transform .35s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 64px 0;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-stats {
        gap: 26px;
    }

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

    .cta-box {
        padding: 44px 24px;
    }

    .btn-lg {
        width: 100%;
    }
}
