/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--brand-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; }

/* ============================================================
   CSS VARIABLES (Tema Escuro Premium - Abelvolks)
============================================================ */
:root {
    --brand-dark:    #000000;      /* Fundo escuro */
    --brand-cream:   #0A0A0A;      /* Superfície escura */
    --brand-beige:   #111111;      /* Superfície média */
    --brand-white:   #1A1A1A;      /* Cards escuros */
    --brand-green:   #39FF14;      /* Verde neon Abelvolks */
    --brand-green-h: #1FCC00;      /* Hover Verde */
    --brand-red:     #CC1E1E;      /* Vermelho urgência */
    --brand-gold:    #F5D000;      /* Dourado */
    --brand-yellow:  #F2A900;      /* Amarelo secundário */
    --text-dark:     #FFFFFF;      /* Texto principal */
    --text-muted:    #AAAAAA;      /* Texto secundário */
    --text-light:    rgba(255,255,255,0.85);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.8);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --max-w: 1100px;
    --max-w-slim: 760px;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-slim { width: 100%; max-width: var(--max-w-slim); margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }

/* ============================================================
   BOTÃO CTA
============================================================ */
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--brand-green); color: #000 !important;
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 800;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 18px 36px; border-radius: var(--radius-sm); border: none;
    cursor: pointer; width: 100%; max-width: 440px; text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4);
    animation: pulse-cta 2s infinite;
}
.btn-cta:hover { background: var(--brand-green-h); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(57, 255, 20, 0.5); }
@keyframes pulse-cta {
    0%,100% { box-shadow: 0 4px 15px rgba(57, 255, 20, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(57, 255, 20, 0.7); }
}
.btn-cta-wrap { display: flex; justify-content: center; }

/* Check badge */
.chk {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--brand-green); color: #000;
    font-size: 11px; font-weight: 800; flex-shrink: 0;
}

/* ============================================================
   1. BARRA TOPO
============================================================ */
.top-bar {
    background: var(--brand-red); color: #ffffff; text-align: center;
    padding: 10px 16px; font-size: 12.5px; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase; position: relative;
}
#dynamic-date-top { display: inline; }

/* ============================================================
   2. HERO
============================================================ */
.hero { background: var(--brand-dark); padding: 70px 0 60px; text-align: center; }
.hero-label {
    display: inline-block; background: rgba(245, 208, 0, 0.1); color: var(--brand-gold);
    font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
    border: 1px solid var(--brand-gold); box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.hero h1 {
    font-family: 'Poppins', sans-serif; font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 400; color: #fff; text-transform: uppercase;
    line-height: 1.15; max-width: 850px; margin: 0 auto 16px; letter-spacing: -0.5px;
}
.hero h1 strong { font-weight: 900; color: var(--brand-green); }
.hero-subtitle-sub {
    font-family: 'Poppins', sans-serif; font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 500; color: var(--text-muted); margin-bottom: 35px;
}
.hero-img-wrap {
    max-width: 480px; margin: 0 auto 35px; background: var(--brand-white);
    border-radius: 20px; padding: 16px; box-shadow: 0 15px 45px rgba(57, 255, 20, 0.15);
    position: relative; border: 1px solid rgba(57, 255, 20, 0.3);
}
.hero-img-wrap img { width: 100%; border-radius: 12px; display: block; }
.sticker-badge {
    position: absolute; top: -20px; right: -20px; width: 125px; height: 125px;
    background: var(--brand-red); border: 4px solid var(--brand-dark); border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5); display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 10; transform: rotate(8deg);
    animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(8deg) translateY(-5px); }
}
.sticker-badge .sb-title { color: #ffffff; font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 900; line-height: 1; margin-bottom: 2px; }
.sticker-badge .sb-mid { color: #ffffff; font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: 0.5px; line-height: 1; text-align: center; max-width: 90px; }
.sticker-badge .sb-banner {
    background: #000000; color: var(--brand-gold); font-family: 'Poppins', sans-serif;
    font-size: 7px; font-weight: 900; padding: 4px 8px; border-radius: 30px;
    text-transform: uppercase; margin-top: 6px; letter-spacing: 0.5px; white-space: nowrap; border: 1px solid var(--brand-gold);
}
.hero-desc-italic {
    font-size: clamp(14px, 2.2vw, 16px); color: rgba(255, 255, 255, 0.88);
    max-width: 680px; margin: 0 auto 30px; line-height: 1.6; font-style: italic;
}
.hero-desc-italic strong { color: var(--brand-gold); font-weight: 700; }
.hero-checklist {
    list-style: none; max-width: 580px; margin: 0 auto 35px; text-align: left;
    display: flex; flex-direction: column; gap: 12px;
}
.hero-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.9); line-height: 1.5; }
.hero-checklist li .chk { background: none; color: var(--brand-green); font-size: 18px; font-weight: 900; line-height: 1; margin-top: 2px; width: auto; height: auto; border-radius: 0; display: inline-block; flex-shrink: 0; }
.chk-desc { color: rgba(255, 255, 255, 0.65); }
.delivery-note { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 14px; text-align: center; }
.delivery-note strong { color: rgba(255,255,255,0.8); }

/* ============================================================
   3. SHOWCASE (Grid visual)
============================================================ */
.showcase { background: var(--brand-cream); }
.showcase h2 { font-family: 'Poppins', sans-serif; font-size: clamp(20px, 3.5vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 10px; color: var(--text-dark); }
.showcase-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.marquee { overflow: hidden; width: 100%; margin-bottom: 14px; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: scroll-left 22s linear infinite; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gif-card { width: 175px; height: 230px; border-radius: var(--radius-md); overflow: hidden; background: var(--brand-white); box-shadow: var(--shadow-sm); flex-shrink: 0; border: 1px solid rgba(255,255,255,0.1); }
.gif-card img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 576px) { .gif-card { width: 210px; height: 270px; } }

/* ============================================================
   4. FEATURES GRID
============================================================ */
.features-section { background: var(--brand-dark); }
.features-section h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 720px; margin: 40px auto 0; }
@media (min-width: 576px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-card { display: flex; align-items: flex-start; gap: 14px; background: var(--brand-cream); border-radius: var(--radius-md); padding: 22px; border: 1px solid rgba(255,255,255,0.05); }
.feature-icon { width: 44px; height: 44px; background: rgba(57, 255, 20, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand-green); border: 1px solid var(--brand-green); }
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--brand-green); }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   5. BENEFITS BOX
============================================================ */
.benefits-section { background: var(--brand-dark); }
.benefits-box { background: var(--brand-beige); border-radius: var(--radius-lg); padding: 40px 24px; text-align: center; max-width: 720px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.benefits-box h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; line-height: 1.25; margin-bottom: 28px; color: var(--text-dark); }
.benefits-list { list-style: none; text-align: left; max-width: 540px; margin: 0 auto 28px; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--text-muted); }
.benefits-list li span:last-child { color: var(--text-light); }
@media (min-width: 768px) { .benefits-box { padding: 60px 50px; } .benefits-box h2 { font-size: 28px; } }

/* ============================================================
   6. SCARCITY
============================================================ */
.scarcity { background: var(--brand-red); color: #fff; text-align: center; }
.scarcity h2 { font-size: clamp(18px, 3vw, 26px); font-weight: 800; color: #fff; line-height: 1.25; max-width: 680px; margin: 0 auto 14px; }
.scarcity-label { font-size: 12px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; opacity: 0.9; margin-bottom: 18px; }
.countdown { display: inline-flex; align-items: center; gap: 8px; font-size: 32px; font-weight: 800; margin-bottom: 24px; font-variant-numeric: tabular-nums; }
.cd-digit { background: rgba(0,0,0,0.4); border-radius: 6px; padding: 8px 14px; min-width: 54px; text-align: center; border: 1px solid rgba(255,255,255,0.2); }

/* ============================================================
   7. PERSONA
============================================================ */
.persona-section { background: var(--brand-cream); }
.persona-section h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.persona-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 780px; margin: 40px auto 0; }
@media (min-width: 640px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
.persona-card { display: flex; align-items: flex-start; gap: 14px; background: var(--brand-white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.05); }
.persona-icon { width: 28px; height: 28px; background: var(--brand-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.persona-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 0.3px; color: var(--text-dark); }
.persona-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   8. OFERTA / RECAP
============================================================ */
.offer-section { background: var(--brand-beige); }
.offer-eyebrow { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand-green); margin-bottom: 8px; }
.offer-section h2 { font-size: clamp(22px, 4vw, 34px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.offer-sub { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 50px; }
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 500px; margin: 0 auto; }
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; } }
.main-deliver-card { background: var(--brand-white); border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; flex-direction: column; box-shadow: 0 10px 40px rgba(0,0,0,0.8); border: 1px solid rgba(57, 255, 20, 0.2); }
.main-deliver-card .dc-badge { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); background: var(--brand-green); color: #000; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 18px; border-radius: 50px; white-space: nowrap; z-index: 5; box-shadow: 0 3px 12px rgba(0,0,0,0.5); }
.main-deliver-card .dc-img { max-width: 280px; margin: 55px auto 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
.main-deliver-card .dc-body { padding: 26px 24px 32px; }
.main-deliver-card .dc-title { font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--brand-gold); text-align: center; margin-bottom: 18px; letter-spacing: 0.5px; }
.main-deliver-card .dc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.main-deliver-card .dc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.4; }

/* ============================================================
   9. DEPOIMENTOS
============================================================ */
.testimonials { background: var(--brand-dark); }
.testimonials h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.testi-screenshots { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 900px; margin: 30px auto 0; }
.testi-screenshots img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); width: 100%; max-width: 300px; border: 1px solid rgba(255,255,255,0.1); }

/* ============================================================
   10. PRICING
============================================================ */
.pricing { background: var(--brand-cream); }
.pricing h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 6px; color: var(--text-dark); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 480px; margin: 40px auto 0; }
.price-card { background: var(--brand-white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; position: relative; box-shadow: var(--shadow-md); border: 2.5px solid var(--brand-green); display: flex; flex-direction: column; align-items: center; }
.price-card h3 { font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; color: var(--brand-gold); }
.price-top-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand-green); color: #000; font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; white-space: nowrap; box-shadow: 0 4px 12px rgba(57, 255, 20, 0.3); display: inline-flex; align-items: center; gap: 4px; }
.price-card-img { position: relative; max-width: 280px; margin: 0 auto 20px; width: 100%; }
.price-card-img img { border-radius: var(--radius-md); width: 100%; display: block; box-shadow: 0 5px 15px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.price-sticker { position: absolute; width: 75px; height: 75px; background: var(--brand-red); border: 2.5px solid #000; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; }
.price-sticker .ps-num { color: #ffffff; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 900; line-height: 1; }
.price-sticker .ps-text { color: #ffffff; font-family: 'Poppins', sans-serif; font-size: 6px; font-weight: 800; letter-spacing: 0.2px; line-height: 1; text-align: center; max-width: 65px; margin-top: 1px; }
.price-sticker--top-right { top: -8px; right: -8px; transform: rotate(6deg); }
.pf-list { list-style: none; text-align: left; width: 100%; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pf-list li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.85); line-height: 1.45; }
.pf-list li .chk-tick { color: var(--brand-green); font-size: 15px; font-weight: 900; flex-shrink: 0; }
.price-old { font-size: 12px; color: var(--brand-red); text-decoration: line-through; font-weight: 600; display: block; margin-bottom: 4px; text-transform: lowercase; }
.price-new { font-size: 48px; font-weight: 900; color: var(--text-dark); line-height: 1; margin: 2px 0 8px; letter-spacing: -1px; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.price-installment { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: block; font-weight: 600; }
.price-economy { font-size: 12px; font-weight: 600; margin-bottom: 20px; display: block; color: rgba(255,255,255,0.85); }
.price-economy strong { font-weight: 800; color: var(--brand-green); }
.payment-logos { margin-top: 18px; max-width: 220px; width: 100%; filter: brightness(0) invert(1); opacity: 0.9; }

/* ============================================================
   11. GARANTIA
============================================================ */
.guarantee { background: var(--brand-beige); }
.guarantee-box { display: flex; flex-direction: column; align-items: center; gap: 24px; background: var(--brand-white); border-radius: var(--radius-lg); padding: 36px 24px; max-width: 720px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
@media (min-width: 576px) { .guarantee-box { flex-direction: row; text-align: left; padding: 44px; } }
.guarantee-badge { width: 110px; flex-shrink: 0; }
.guarantee-info h2 { font-size: clamp(17px, 2.5vw, 22px); font-weight: 800; text-transform: uppercase; margin-bottom: 12px; color: var(--brand-red); }
.guarantee-info p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.guarantee-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-light); }
.guarantee-list li span:first-child { color: var(--brand-red); font-size: 18px; }

/* ============================================================
   12. COMO FUNCIONA
============================================================ */
.how-it-works { background: var(--brand-dark); }
.how-it-works h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 40px auto 0; }
@media (min-width: 576px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { background: var(--brand-cream); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; position: relative; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,0.05); }
.step-num { position: absolute; top: -12px; left: 18px; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-green); color: #000; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.step-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(57, 255, 20, 0.1); color: var(--brand-green); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; fill: currentColor; }
.step-icon svg { width: 26px; height: 26px; fill: currentColor; }
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--brand-green); }
.step-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   13. FAQ
============================================================ */
.faq { background: var(--brand-cream); }
.faq h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; gap: 12px; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--brand-green); }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; padding-bottom: 18px; }
.faq-body.open { max-height: 300px; }

/* ============================================================
   14. FOOTER
============================================================ */
.footer { background: #050505; color: rgba(255,255,255,0.5); padding: 32px 20px; text-align: center; font-size: 11.5px; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.05); }
.footer p { max-width: 720px; margin: 0 auto; }
.footer strong { color: rgba(255,255,255,0.7); }

/* ============================================================
   15. EXIT INTENT POPUP
=========================================================== */
.exit-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    backdrop-filter: blur(5px); padding: 20px;
}
.exit-popup-overlay.show { opacity: 1; visibility: visible; }
.exit-popup-content {
    background: var(--brand-beige); border-radius: var(--radius-lg);
    width: 100%; max-width: 450px; position: relative;
    border: 2px solid var(--brand-red); box-shadow: 0 10px 40px rgba(204, 30, 30, 0.3);
    transform: translateY(-20px) scale(0.95); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center; overflow: hidden;
}
.exit-popup-overlay.show .exit-popup-content { transform: translateY(0) scale(1); }
.exit-popup-close {
    position: absolute; top: 10px; right: 15px; background: none; border: none;
    color: #fff; font-size: 28px; cursor: pointer; line-height: 1; z-index: 10;
}
.ep-header {
    background: var(--brand-red); color: #fff; padding: 15px;
    font-size: 18px; font-weight: 900; letter-spacing: 1px;
}
.ep-body { padding: 30px 25px; }
.ep-body h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 12px; }
.ep-body h3 strong { color: var(--brand-gold); font-size: 24px; }
.ep-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.ep-price { margin-bottom: 20px; }
.ep-price span { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: line-through; }
.ep-price strong { display: block; font-size: 42px; font-weight: 900; color: var(--brand-green); line-height: 1; }
.ep-decline {
    display: block; margin-top: 15px; font-size: 12px; color: rgba(255,255,255,0.4);
    text-decoration: underline; transition: color 0.2s;
}
.ep-decline:hover { color: rgba(255,255,255,0.8); }
