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

:root {
    --cream: #F7F3EE;
    --warm-white: #FDFAF7;
    --dark: #1A1614;
    --brown: #6B4F3A;
    --taupe: #A8927C;
    --rose: #C4857A;
    --light-taupe: #E8DDD3;
    --text-muted: #7A6A60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── CLASSE CONTAINER (O SEGREDO DA LARGURA FIXA) ─── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
}

/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(168, 146, 124, 0.15);
    animation: fadeDown 0.8s ease both;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mobile-vagas-bar {
    display: none;
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 8px 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-vagas-bar strong {
    color: var(--rose);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown);
}

.nav-cta {
    background: var(--dark);
    color: var(--cream);
    border: none;
    padding: 10px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--brown);
    transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
    background: var(--warm-white);
}

.hero-container {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 40px 80px;
    overflow: hidden;
    animation: fadeUp 1s 0.3s ease both;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    height: 100%;
    animation: fadeIn 1.2s 0.1s ease both;
}

/* Degradê lateral para suavizar o corte da imagem na direita (Apenas Desktop) */
@media (min-width: 901px) {
    .hero-visual::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 15%;
        /* Largura do degradê */
        height: 100%;
        background: linear-gradient(to right, transparent, var(--warm-white));
        z-index: 1;
        pointer-events: none;
    }
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #D4C4B8 0%, #C4A898 40%, #B08070 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: clamp(16px, 2vh, 28px);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: clamp(20px, 3vh, 40px);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vh, 12px);
    margin-bottom: clamp(24px, 3.5vh, 48px);
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: clamp(14px, 2vh, 28px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--taupe);
}

.hero h1 em {
    font-style: italic;
    color: var(--brown);
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--dark);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--cream);
    border: none;
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--taupe);
    padding: 16px 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--brown);
    color: var(--brown);
    transform: translateY(-2px);
}

.hero-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(253, 250, 247, 0.92);
    backdrop-filter: blur(8px);
    padding: 20px 28px;
    z-index: 2;
}

.hero-overlay-text span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 4px;
}

.hero-overlay-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
}

/* ─── STATS BAR ─── */
.stats-bg {
    background: var(--dark);
    padding: 32px 0;
    animation: fadeUp 1s 0.5s ease both;
}

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

.stat-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
}

/* ─── EARNINGS SECTION ─── */
.earnings {
    background: var(--cream);
    padding: 100px 0;
}

.earnings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--taupe);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.earnings-calc {
    background: var(--warm-white);
    border: 1px solid var(--light-taupe);
    padding: 40px;
}

.calc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--dark);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-taupe);
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.calc-label small {
    display: block;
    font-size: 0.75rem;
    color: var(--taupe);
    margin-top: 2px;
}

.calc-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
}

.calc-value.big {
    font-size: 2.4rem;
    color: var(--dark);
}

.calc-highlight {
    background: var(--dark);
    margin: 20px -40px -40px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-highlight span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

.calc-highlight strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
}

/* ─── TRANSFORM SECTION ─── */
.transform {
    padding: 100px 0;
    background: var(--warm-white);
}

.transform-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.for-whom {
    background: var(--light-taupe);
    padding: 48px;
}

.for-whom-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--dark);
}

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

.for-whom-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--dark);
}

.check {
    width: 20px;
    height: 20px;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.outcomes {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.outcome-card {
    border-left: 2px solid var(--rose);
    padding: 0 0 0 24px;
}

.outcome-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--light-taupe);
    line-height: 1;
    margin-bottom: 8px;
}

.outcome-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.outcome-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── CURRICULUM ─── */
.curriculum {
    background: var(--dark);
    padding: 100px 0;
    color: var(--cream);
}

.curriculum .section-eyebrow {
    color: var(--taupe);
}

.curriculum .section-eyebrow::before {
    background: var(--taupe);
}

.curriculum .section-title {
    color: var(--cream);
}

.curriculum-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.curriculum-item {
    background: var(--dark);
    padding: 36px 32px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.curriculum-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--rose);
    transition: height 0.4s ease;
}

.curriculum-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.curriculum-item:hover::before {
    height: 100%;
}

.curriculum-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.curriculum-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.4;
}

.curriculum-desc {
    font-size: 0.8rem;
    color: var(--taupe);
    line-height: 1.6;
}

.bonus-tag {
    display: inline-block;
    background: var(--rose);
    color: white;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 12px;
}

/* ─── TEACHER ─── */
.teacher {
    background: var(--cream);
    padding: 100px 0;
}

.teacher-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.teacher-img {
    position: relative;
}

.teacher-img-inner {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #C8B0A0, #A88070);
    position: relative;
    overflow: hidden;
}

.teacher-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teacher-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--rose);
    z-index: -1;
}

.teacher-accent2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--light-taupe);
    z-index: -1;
}

.teacher-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.teacher-stat {
    background: var(--warm-white);
    border: 1px solid var(--light-taupe);
    padding: 20px;
}

.teacher-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--brown);
    margin-bottom: 4px;
}

.teacher-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: var(--warm-white);
    padding: 100px 0;
}

.testimonials-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--light-taupe);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(107, 79, 58, 0.1);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 0.6;
    color: var(--rose);
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--dark);
    margin-bottom: 24px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.testimonial-author {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
}

.photos-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.photo-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-taupe), var(--taupe));
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.photo-placeholder:hover {
    transform: scale(1.02);
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 20, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.photo-placeholder:hover .photo-overlay {
    background: rgba(26, 22, 20, 0.3);
}

/* ─── PRICING ─── */
.pricing {
    background: var(--cream);
    padding: 100px 0;
    text-align: center;
}

.pricing-card {
    max-width: 600px;
    margin: 60px auto 0;
    background: var(--warm-white);
    border: 1px solid var(--light-taupe);
    padding: 60px;
    position: relative;
    text-align: left;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: white;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 20px;
    white-space: nowrap;
}

.pricing-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 12px;
    text-align: center;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1;
    text-align: center;
}

.pricing-amount sup {
    font-size: 1.8rem;
    vertical-align: top;
    margin-top: 12px;
}

.pricing-installment {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 8px;
    text-align: center;
}

.pricing-deposit {
    font-size: 0.82rem;
    color: var(--taupe);
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--light-taupe);
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--dark);
}

.urgency-strip {
    background: var(--dark);
    color: var(--cream);
    padding: 20px 40px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.urgency-strip strong {
    color: var(--rose);
}

/* ─── FAQ ─── */
.faq {
    background: var(--warm-white);
    padding: 100px 0;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--light-taupe);
    overflow: visible;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    user-select: none;
    gap: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--taupe);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding-bottom: 24px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* ─── FINAL CTA ─── */
.final-cta {
    background: var(--dark);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 133, 122, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .section-eyebrow {
    justify-content: center;
    color: var(--taupe);
}

.final-cta .section-eyebrow::before {
    display: none;
}

.final-cta .section-title {
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 20px;
}

.final-cta .section-body {
    max-width: 500px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-light {
    background: var(--cream);
    color: var(--dark);
    border: none;
    padding: 18px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-light:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 18px 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-whatsapp:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
    background: #111;
    padding: 40px 0;
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE MOBILE E TABLET ─── */
/* ─── RESPONSIVE MOBILE E TABLET ─── */
@media (max-width: 900px) {

    /* Container com menos padding lateral */
    .container {
        padding: 0 24px;
    }

    /* Menu adaptado */
    nav {
        padding: 0;
        /* Removido padding para a barra ocupar a largura toda */
    }

    .nav-container {
        padding: 12px 24px;
    }

    .nav-logo {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.65rem;
    }

    .mobile-vagas-bar {
        display: block;
        /* Mostra a barra no mobile */
    }

    /* ==========================================
       HERO MOBILE (IMAGEM NO FUNDO E TEXTO EMBAIXO)
       ========================================== */

    /* O container passa a ocupar a tela toda e empurra o conteúdo para baixo */
    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Força tudo para o rodapé */
        min-height: 100vh;
        padding: 0;
        position: relative;
    }

    /* A foto se desprende e vira um papel de parede cobrindo tudo */
    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        animation: none;
    }

    /* Degradê mais alto para garantir leitura e não subir tanto o texto */
    .hero-img-placeholder::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(20, 15, 12, 1) 0%, rgba(20, 15, 12, 0.8) 40%, transparent 75%);
    }

    /* Caixa de texto mais compacta e mais para baixo */
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        height: auto;
        padding: 60px 24px 32px 24px;
        /* Reduzido padding para o texto descer */
        animation: fadeIn 1s ease both;
    }

    /* Ajuste de fontes e espaçamentos */
    .hero-eyebrow {
        color: var(--taupe);
        font-size: 0.65rem;
        margin-bottom: 16px;
    }

    .hero-eyebrow::before {
        background: var(--taupe);
        width: 24px;
    }

    .hero h1 {
        color: #ffffff;
        font-size: 2.1rem;
        /* Reduzido de 2.6rem */
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero h1 em {
        color: var(--light-taupe);
    }

    .hero-sub {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.88rem;
        /* Reduzido de 0.95rem */
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-badges {
        margin-bottom: 32px;
        gap: 8px;
    }

    .badge {
        color: #ffffff;
        font-size: 0.8rem;
    }

    /* Botões mais compactos */
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-group a {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        /* Reduzido de 16px 36px */
        font-size: 0.75rem;
    }

    /* INVERSÃO DO BOTÃO PRIMÁRIO */
    .hero-content .btn-primary {
        background: var(--cream);
        color: var(--dark);
    }

    /* Botão secundário */
    .hero-content .btn-secondary {
        color: var(--cream);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Esconde a tag original na Hero no mobile */
    .hero-overlay-text {
        display: none;
    }

    /* ==========================================
       RESTANTE DO SITE (EMPILHAMENTO PADRÃO)
       ========================================== */

    /* Grids de 2 colunas viram 1 coluna */
    .earnings-container,
    .transform-container,
    .teacher-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Ajuste de Stats */
    .stats-bg {
        padding: 40px 0;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 24px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Ajuste geral de paddings nas seções */
    .earnings,
    .transform,
    .curriculum,
    .teacher,
    .testimonials,
    .pricing,
    .faq {
        padding: 60px 0;
    }

    /* Calc Box na seção de ganhos */
    .earnings-calc {
        padding: 32px 24px;
    }

    .calc-highlight {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 24px;
        margin: 20px -24px -24px;
    }

    /* Teacher Imagem centralizada */
    .teacher-img {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Grids de 3 colunas viram 1 coluna */
    .curriculum-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Fotos de 4 para 2 colunas */
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Ajuste fino no cartão de preços */
    .pricing-card {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .pricing-amount {
        font-size: 3.5rem;
    }

    .urgency-strip {
        padding: 20px 24px;
        font-size: 0.8rem;
    }

    /* Final CTA e Footer */
    .final-cta {
        padding: 80px 0;
    }

    .cta-group {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ─── CHECKOUT & OBRIGADO ─── */
.checkout-section,
.obrigado-section {
    padding: 160px 0 100px;
    background: var(--warm-white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.checkout-container,
.obrigado-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.checkout-content,
.obrigado-content {
    background: var(--cream);
    padding: 60px;
    border: 1px solid var(--light-taupe);
}

.checkout-form-wrapper {
    margin-top: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    background: var(--warm-white);
    border: 1px solid var(--light-taupe);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brown);
}

.form-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
}

/* OBRIGADO SPECIFIC */
.check-icon {
    width: 60px;
    height: 60px;
    background: var(--rose);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
}

.obrigado-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 900px) {

    .checkout-section,
    .obrigado-section {
        padding: 120px 0 60px;
    }

    .checkout-content,
    .obrigado-content {
        padding: 40px 24px;
    }

    .obrigado-actions {
        flex-direction: column;
    }

    .obrigado-actions a {
        width: 100%;
    }
}