
/* ═══════════════════════════════════
   TOKENS DE DESIGN
═══════════════════════════════════ */
:root {
    --rose:         #D4856F;
    --rose-dark:    #B5614A;
    --rose-light:   #E8B0A0;
    --rose-pale:    #FCEAE4;
    --gold:         #B8832A;
    --gold-mid:     #D4A040;
    --gold-light:   #E8C070;
    --gold-pale:    #FDF5E0;
    --cream:        #FFF8F2;
    --cream-dark:   #F7EDE4;
    --beige:        #EEE0D4;
    --white:        #FFFFFF;
    --dark:         #1E120C;
    --text-dark:    #1E120C;
    --text-mid:     #5A3828;
    --text-light:   #9A7060;
    --border-rose:  rgba(212,133,111,0.28);
    --shadow-sm:    0 2px 14px rgba(180,90,60,0.07);
    --shadow-md:    0 6px 28px rgba(180,90,60,0.12);
    --shadow-lg:    0 14px 48px rgba(180,90,60,0.17);
}

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    max-width: 100vw;
}

/* Playfair Display para títulos principais */
h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 800;
    line-height: 1.15;
}
h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}
h3 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
}

strong {
    font-weight: 700;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ═══════════════════════════════════
   URGENCY BANNER
═══════════════════════════════════ */
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}


/* ═══════════════════════════════════
   HERO — COR SÓLIDA, SEM DECORAÇÃO
═══════════════════════════════════ */
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 6px 24px rgba(184,131,42,0.45); }
    50%       { box-shadow: 0 10px 36px rgba(184,131,42,0.65); }
}

.hero {
    padding: 56px 0 72px;
    background: #C97B6A;
    text-align: center;
    border-bottom: 4px solid var(--gold-mid);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 6vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.18;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.title-accent {
    color: var(--gold-light);
    font-style: italic;
}
.title-sub {
    display: block;
    font-size: 0.6em;
    font-weight: 700;
    font-style: italic;
    opacity: 0.88;
    margin-top: 8px;
    font-family: 'DM Serif Display', Georgia, serif;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 500px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,0.88);
    line-height: 1.65;
}

/* Hero image */
.hero-image-wrap {
    max-width: 340px;
    margin: 0 auto 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    border: 3px solid rgba(255,255,255,0.28);
    line-height: 0;
}
.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 17px;
}
.hero-img-placeholder {
    display: none;
    width: 100%;
    min-height: 200px;
    background: rgba(255,255,255,0.14);
    border-radius: 17px;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}
.hip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hip-emoji { font-size: 3.5rem; line-height: 1; }
.hip-label {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
}
.hip-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
}

/* ═══════════════════════════════════
   CTA BUTTON
═══════════════════════════════════ */
.cta-button {
    display: inline-block;
    background: var(--gold-mid);
    color: #fff;
    padding: 18px 46px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    animation: pulse-btn 2.5s ease-in-out infinite;
    will-change: box-shadow;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover {
    transform: translateY(-2px);
    background: #C49030;
    box-shadow: 0 14px 36px rgba(184,131,42,0.55);
}

/* ═══════════════════════════════════
   CAROUSEL — COR SÓLIDA
═══════════════════════════════════ */
.carousel-section {
    padding: 40px 0 36px;
    background: var(--beige);
    text-align: center;
}
.carousel-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rose-dark);
    margin-bottom: 18px;
}
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 20px;
}
.carousel-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}
.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 10px;
}
.carousel-img {
    width: 100%;
    height: 406px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: var(--shadow-sm);
}
.carousel-placeholder {
    background: var(--rose-pale);
    border-radius: 16px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1.5px solid var(--border-rose);
    box-shadow: var(--shadow-sm);
}
.carousel-emoji { font-size: 4rem; line-height: 1; }
.carousel-placeholder p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rose-dark);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1.5px solid var(--border-rose);
    border-radius: 50%;
    width: 42px; height: 42px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s;
    z-index: 5;
    line-height: 1;
}
.carousel-btn:hover { background: var(--rose-pale); }
.carousel-btn-prev { left: 8px; }
.carousel-btn-next { right: 8px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--rose-light);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
    background: var(--rose-dark);
    transform: scale(1.3);
}

/* ═══════════════════════════════════
   SECTION EYEBROW / TITLE
═══════════════════════════════════ */
.section-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: var(--rose-pale);
    border-radius: 100px;
    padding: 5px 18px;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.22;
}

/* ═══════════════════════════════════
   RENDA SECTION — COR SÓLIDA
═══════════════════════════════════ */
.renda-section {
    padding: 72px 0;
    background: var(--cream);
}
.renda-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 44px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-rose);
    position: relative;
    overflow: hidden;
}
.renda-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rose);
    border-radius: 24px 24px 0 0;
}
.renda-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.75;
}
.renda-lugares {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}
.renda-lugar {
    background: var(--rose-pale);
    border: 1.5px solid var(--border-rose);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rose-dark);
}
.renda-exemplo {
    background: var(--gold-pale);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(184,131,42,0.2);
}
.renda-exemplo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}
.renda-exemplo-calc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.55;
}
.renda-impacto {
    background: var(--rose-dark);
    color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.renda-frase-espalhada {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
}

/* ═══════════════════════════════════
   RECEIVE SECTION — COR SÓLIDA
═══════════════════════════════════ */
.recv-section {
    padding: 80px 0 72px;
    background: var(--rose-pale);
    text-align: center;
}
.recv-section-header { margin-bottom: 48px; }
.recv-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-dark);
    background: rgba(255,255,255,0.7);
    border-radius: 100px;
    padding: 4px 16px;
    margin-bottom: 12px;
}
.recv-main-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.recv-title-bar {
    width: 48px; height: 4px;
    border-radius: 3px;
    background: var(--rose);
    margin: 0 auto;
}
.recv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}
@media (max-width: 720px) { .recv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .recv-grid { grid-template-columns: 1fr; } }

.recv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px 26px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-rose);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
    overflow: hidden;
}
.recv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rose);
    border-radius: 20px 20px 0 0;
}
.recv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.recv-icon-badge {
    font-size: 2.2rem;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 1.5px solid var(--border-rose);
}
.recv-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}
.recv-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.65;
}


/* ═══════════════════════════════════
   PRICING / OFERTA — COR SÓLIDA
═══════════════════════════════════ */
.pricing-section {
    padding: 80px 0 100px;
    background: var(--rose-pale);
    text-align: center;
}

.offer-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border-rose);
    position: relative;
    overflow: hidden;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rose);
    border-radius: 24px 24px 0 0;
}
.offer-badge-top {
    display: inline-block;
    background: var(--gold-pale);
    border: 1.5px solid rgba(184,131,42,0.25);
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.offer-product-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.15;
}
.offer-price-anchor {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2px;
}
.offer-price-anchor s { color: var(--text-light); }
.offer-price-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rose-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
    line-height: 1;
}
.offer-currency {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rose-dark);
    margin-top: 12px;
}
.offer-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--rose-dark);
    line-height: 1;
}
.offer-cents {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rose-dark);
    margin-top: 12px;
}
.offer-payment-info {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 24px;
}
.offer-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offer-checklist li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.45;
}
.offer-cta { width: 100%; margin-bottom: 14px; }
.offer-urgencia-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rose-dark);
    margin-bottom: 14px;
}
.offer-trust-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ═══════════════════════════════════
   PROVA VISUAL — abaixo da oferta
═══════════════════════════════════ */
.prova-section {
    padding: 72px 0;
    background: var(--cream-dark);
}
.prova-card {
    max-width: 660px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border-rose);
    position: relative;
    overflow: hidden;
}
.prova-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rose);
    border-radius: 24px 24px 0 0;
}
.prova-emoji-grande { font-size: 3.2rem; margin-bottom: 16px; display: block; }
.prova-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.28;
}
.prova-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}
.prova-visual-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.prova-item {
    background: var(--rose-pale);
    border: 1.5px solid var(--border-rose);
    border-radius: 14px;
    padding: 18px 20px;
    flex: 1;
    min-width: 115px;
    max-width: 170px;
    text-align: center;
}
.prova-item-emoji { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.prova-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rose-dark);
}

/* ═══════════════════════════════════
   TESTIMONIALS — COR SÓLIDA
═══════════════════════════════════ */
.testimonials-section {
    padding: 72px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rose);
}
.testimonials-title {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark) !important;
    font-size: clamp(1.5rem, 4vw, 2.1rem) !important;
}
.testimonials-carousel {
    overflow: hidden;
    cursor: default;
    touch-action: pan-y;
    user-select: none;
}
.testimonials-track {
    display: flex;
    gap: 16px;
    padding: 6px 4px 14px;
    will-change: transform;
}
.text-test-slide {
    flex-shrink: 0;
    width: 268px;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-rose);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-test-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rose);
    border-radius: 20px 20px 0 0;
}
.text-test-slide:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.text-testimonial-stars { color: #D4900A; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.text-test-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.text-test-author { font-family: 'Poppins', sans-serif; font-size: 0.82rem; }
.text-test-author strong { color: var(--rose-dark); font-weight: 700; display: block; }
.text-test-author span { color: #bbb; font-weight: 400; font-size: 0.74rem; }

/* ═══════════════════════════════════
   AUTORIDADE — COR SÓLIDA
═══════════════════════════════════ */
.autoridade-section {
    padding: 72px 0;
    background: var(--cream-dark);
}
.autoridade-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 22px;
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-rose);
    position: relative;
    overflow: hidden;
}
.autoridade-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rose);
    border-radius: 22px 22px 0 0;
}
.autoridade-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0 auto 18px;
    border: 3px solid var(--border-rose);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.autoridade-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.autoridade-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ═══════════════════════════════════
   FAQ — COR SÓLIDA
═══════════════════════════════════ */
.faq-section {
    padding: 72px 0;
    background: var(--cream);
}
.faq-title { margin-bottom: 32px; }
.faq-accordion {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--border-rose);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.faq-item.active { box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: background 0.2s;
    line-height: 1.4;
}
.faq-question:hover { background: var(--rose-pale); }
.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--rose-dark);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}
.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ═══════════════════════════════════
   CLOSING — COR SÓLIDA
═══════════════════════════════════ */
.closing-section {
    padding: 72px 0;
    background: #C97B6A;
}
.closing-card {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 52px 40px;
    background: rgba(255,255,255,0.14);
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.closing-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.55rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
}
.closing-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin-bottom: 20px;
}
.closing-frase {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 28px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.8;
}

/* ═══════════════════════════════════
   REDIRECT OVERLAY
═══════════════════════════════════ */
#redirect-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,18,12,0.65);
    backdrop-filter: blur(6px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
#redirect-overlay.active { display: flex; }
#redirect-box {
    background: white;
    border-radius: 24px;
    padding: 40px 32px 28px;
    max-width: 310px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
    border: 2px solid var(--gold-mid);
    animation: rdo-in 0.35s ease-out;
}
@keyframes rdo-in {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
#redirect-lock { font-size: 2.5rem; margin-bottom: 12px; }
#redirect-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
#redirect-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.55;
}
#redirect-bar {
    background: #eee;
    height: 5px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}
#redirect-progress {
    height: 100%;
    width: 0%;
    background: var(--rose);
    border-radius: 10px;
}
#redirect-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #888;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 480px) {
    .renda-card, .offer-card, .closing-card,
    .autoridade-card, .prova-card { padding: 32px 20px; }
    .hero { padding: 40px 0 56px; }
    .hero-trust-row { gap: 12px; font-size: 0.74rem; }
    .cta-button { padding: 16px 28px; font-size: 0.88rem; letter-spacing: 1.2px; }
    .offer-amount { font-size: 3.8rem; }
}
