@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   ESTILO NEOBRUTALISMO CARTOON & INFANTIL — POTINHO DA FÉ BÍBLICO
   ========================================================================== */

/* --- VARIÁVEIS DA PALETA PRIMÁRIA VIVA --- */
:root {
    --color-blue-hero: #2563EB;   /* Azul vibrante (fundo hero) */
    --color-blue-dark: #1E40AF;   /* Azul escuro (textos e bordas) */
    --color-red: #DC2626;         /* Vermelho (urgência e preço) */
    --color-yellow: #FBBF24;      /* Amarelo (CTAs e destaques) */
    --color-green: #16A34A;       /* Verde (bônus, checkmarks, card kit) */
    --color-green-light: #F0FDF4; /* Verde muito claro (fundo do card kit) */
    --color-pink: #EC4899;        /* Rosa (acentos e círculos) */
    --color-orange: #F97316;      /* Laranja (textos de bônus) */
    --color-cream: #FFFBEB;       /* Creme (fundo geral e FAQ) */
    --color-navy: #1E3A5F;        /* Navy (footer) */
    --color-black: #222222;       /* Preto (bordas e sombras neobrutalistas) */
    --color-white: #FFFFFF;       /* Branco */

    --font-cartoon: 'Fredoka', 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', cursive, sans-serif;
}

/* --- RESET & ESTRUTURA GERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-cartoon);
    background-color: var(--color-cream);
    color: var(--color-blue-dark);
    line-height: 1.5;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

body {
    position: relative;
    font-weight: bold;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    /* PROTEÇÃO ANTI-CÓPIA / ANTI-CLONAGEM */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img {
    /* PROTEÇÃO ANTI-ARRASTE DE IMAGENS */
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

/* --- ANIMAÇÕES DIVERTIDAS DO NEOBRUTALISMO --- */
@keyframes bounceHero {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes wobbleGreen {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

@keyframes floatX {
    0% {
        transform: translateX(-200px);
    }
    100% {
        transform: translateX(105vw);
    }
}

@keyframes spinBlink {
    0% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(180deg) scale(1.15); opacity: 0.6; }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

@keyframes blinkDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.85); }
}

@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- SEÇÃO 1 — FAIXA VERMELHA SUPERIOR LETREIRO RODANDO (MARQUEE FULL-WIDTH) --- */
.top-banner.marquee-banner {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: linear-gradient(135deg, var(--color-red) 0%, #991B1B 100%);
    color: var(--color-white);
    padding: 6px 0 !important;
    border-radius: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    border: none;
    border-bottom: 3px solid var(--color-black);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marqueeScroll 24s linear infinite;
}

.top-banner.marquee-banner:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 14px;
    flex-shrink: 0;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
}

.marquee-sep {
    color: var(--color-yellow);
    font-size: 0.95rem;
    margin-left: 4px;
    flex-shrink: 0;
}

.blink-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    border: 1px solid var(--color-black);
    animation: blinkDot 1s infinite ease-in-out;
    flex-shrink: 0;
}

.banner-txt {
    font-size: 0.82rem;
    white-space: nowrap;
    color: var(--color-white);
    line-height: 1;
    margin: 0;
}

.banner-timer {
    background: #FFFBEB;
    color: #1E40AF;
    padding: 2px 8px !important;
    border-radius: 20px;
    font-family: var(--font-cartoon);
    font-size: 0.80rem;
    font-weight: 900;
    border: 1.5px solid var(--color-black);
    box-shadow: 1px 1px 0 rgba(0,0,0,0.25);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    margin: 0;
}

.banner-cta-link {
    background-color: var(--color-yellow);
    color: var(--color-blue-dark);
    text-decoration: none;
    padding: 3px 10px !important;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 900;
    border: 1.5px solid var(--color-black);
    box-shadow: 1px 1px 0 var(--color-black);
    transition: transform 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    margin: 0;
}

.banner-cta-link:hover {
    transform: scale(1.05);
    background-color: #FDE047;
}

.banner-cta-link:active {
    transform: translate(1px, 1px);
    box-shadow: 0 0 0 var(--color-black);
}

/* --- MOCKUPS CARTOON DO PRODUTO --- */
.hero-mockup-container {
    max-width: 580px;
    width: 100%;
    margin: 0 auto 35px;
    border: 4px solid var(--color-black);
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--color-black);
    overflow: hidden;
    background-color: var(--color-white);
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.card-mini-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--color-black);
}

/* --- SEÇÃO 2 — HERO (TELA CHEIA COM NUVENS E ESTRELAS) --- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--color-blue-hero) 0%, #60A5FA 65%, var(--color-yellow) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ELEMENTOS DECORATIVOS ANIMADOS */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    border: 3px solid rgba(34, 34, 34, 0.2);
    pointer-events: none;
    z-index: 1;
}

.cloud-1 {
    width: 160px;
    height: 55px;
    top: 15%;
    left: -200px;
    animation: floatX 18s linear infinite;
}

.cloud-2 {
    width: 220px;
    height: 70px;
    top: 35%;
    left: -250px;
    animation: floatX 22s linear infinite 5s;
}

.star-deco {
    position: absolute;
    font-size: 2.2rem;
    pointer-events: none;
    z-index: 1;
    animation: spinBlink 6s infinite linear;
}

.star-1 { top: 18%; left: 10%; animation-delay: 0s; }
.star-2 { top: 25%; right: 12%; animation-delay: 2s; }
.star-3 { top: 50%; left: 8%; animation-delay: 4s; }

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.scroll-parallax-container {
    display: inline-block;
    margin-bottom: 14px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.pot-bounce-wrapper {
    animation: bounceHero 3s infinite ease-in-out;
}

.pot-sticker-float {
    width: clamp(140px, 15vw, 170px);
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transform: rotate(-3deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.pot-bounce-wrapper:hover .pot-sticker-float {
    transform: rotate(6deg) scale(1.12);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.35));
}

.hero-headline {
    font-size: clamp(30px, 6vw, 56px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--color-white);
    text-shadow: 3px 3px 0 var(--color-blue-dark), -2px -2px 0 var(--color-black);
    margin-bottom: 16px;
}

.hero-headline .highlight-yellow {
    color: var(--color-yellow);
    text-shadow: 3px 3px 0 var(--color-orange), -2px -2px 0 var(--color-black);
}

.hero-subheadline {
    font-size: clamp(18px, 3.5vw, 24px);
    color: var(--color-white);
    text-shadow: 2px 2px 0 var(--color-blue-dark);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SEÇÃO 3 — DUAS OFERTAS (DENTRO DO HERO) --- */
.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.offer-card {
    background: var(--color-white);
    border: 4px solid var(--color-black);
    border-radius: 24px;
    box-shadow: 6px 6px 0 var(--color-black);
    padding: 30px 24px;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--color-blue-dark);
    text-align: left;
    position: relative;
}

.offer-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--color-black);
}

/* CARD DIREITO (DESTAQUE VERDE) */
.offer-card.card-kit {
    border: 4px solid var(--color-green);
    background: var(--color-green-light);
}

.offer-card.card-kit:hover {
    border-color: var(--color-black);
}

.flag-best-seller {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: var(--color-white);
    border: 3px solid var(--color-black);
    box-shadow: 3px 3px 0 var(--color-black);
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 900;
    white-space: nowrap;
    z-index: 5;
}

.mini-mockup {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    height: auto;
    border: 3px solid var(--color-black);
    border-radius: 18px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 4px 4px 0 var(--color-black);
}

.mini-mockup.mockup-kit {
    border-color: var(--color-black);
    background: var(--color-white);
}

.card-mini-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.18) !important;
    display: block !important;
}

.mini-mockup span.emoji-box {
    font-size: 2.5rem;
}

.card-title {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
    text-align: center;
}

.pricing-area {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--color-black);
}

.old-price {
    font-size: 1rem;
    color: #6B7280;
    text-decoration: line-through;
}

.new-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--color-red);
    line-height: 1.1;
    text-shadow: 1px 1px 0 var(--color-black);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    padding-bottom: 8px;
    border-bottom: 2px dashed #D1D5DB;
    color: var(--color-blue-dark);
}

.check-green {
    color: var(--color-green);
    font-size: 1.3rem;
    font-weight: 900;
    flex-shrink: 0;
}

.bonus-orange {
    color: var(--color-orange);
    font-weight: 900;
}

/* BOTÕES NEOBRUTALISTAS CARTOON */
.btn-cartoon {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    border-radius: 16px;
    font-family: var(--font-cartoon);
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
    border: 3px solid var(--color-black);
    box-shadow: 4px 4px 0 var(--color-black);
    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-yellow {
    background-color: var(--color-yellow);
    color: var(--color-blue-dark);
}

.btn-yellow:hover {
    transform: scale(1.03);
}

.btn-yellow:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--color-black);
}

.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
    animation: wobbleGreen 3s infinite ease-in-out;
}

.btn-green:hover {
    transform: scale(1.03);
}

.btn-green:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--color-black);
}

/* --- SEÇÃO 4 — COMO FUNCIONA (3 PASSOS) --- */
.steps-section {
    background-color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
    border-top: 4px solid var(--color-black);
    border-bottom: 4px solid var(--color-black);
}

.section-title {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 900;
    color: var(--color-blue-dark);
    text-shadow: 3px 3px 0 #E2E8F0;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 230px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-cream);
    padding: 24px 18px;
    border-radius: 20px;
    border: 4px solid var(--color-black);
    box-shadow: 6px 6px 0 var(--color-black);
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-black);
    box-shadow: 4px 4px 0 var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.step-circle.yellow { background-color: var(--color-yellow); }
.step-circle.pink { background-color: var(--color-pink); }
.step-circle.blue { background-color: var(--color-blue-hero); }

.step-item h3 {
    font-size: 1.4rem;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.95rem;
    color: #334155;
}

/* ==========================================================================
   SEÇÕES 4.1, 4.2 e 4.3 — NEOBRUTALISMO CARTOON (A, B, D + GATILHO IMPULSO)
   ========================================================================== */
.section-cartoon {
    padding: 65px 20px;
    text-align: center;
}

.bg-cream { background-color: var(--color-cream); }
.bg-white { background-color: var(--color-white); }
.border-top-bot { border-top: 4px solid var(--color-black); border-bottom: 4px solid var(--color-black); }

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* OPÇÃO D — ANATOMIA DO PRODUTO POR TEMAS/RESOLUÇÕES */
.themes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
}

.theme-card {
    flex: 1 1 240px;
    max-width: 380px;
    background: var(--color-white);
    border: 4px solid var(--color-black);
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--color-black);
    padding: 24px 20px;
    text-align: left;
    transition: transform 0.2s ease;
}

.theme-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--color-black);
}

.theme-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.theme-card h4 {
    font-size: 1.25rem;
    color: var(--color-blue-dark);
    margin-bottom: 8px;
}

.theme-card p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.45;
}

/* OPÇÃO A — SIMULADOR INTERATIVO CARTOON */
.slips-interactive-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 30px;
}

.interactive-slip {
    padding: 12px 18px;
    border-radius: 16px;
    border: 3px solid var(--color-black);
    box-shadow: 4px 4px 0 var(--color-black);
    font-family: var(--font-cartoon);
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.15s ease;
    background-color: var(--color-white);
}

.interactive-slip.yellow { background-color: #FEF08A; }
.interactive-slip.green { background-color: #BBF7D0; }
.interactive-slip.blue { background-color: #BFDBFE; }
.interactive-slip.pink { background-color: #FBCFE8; }

.interactive-slip:hover {
    transform: scale(1.05);
}

.interactive-slip:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 var(--color-black);
}

.slip-display-box {
    background: #FEF9C3;
    border: 4px solid var(--color-black);
    border-radius: 24px;
    box-shadow: 8px 8px 0 var(--color-black);
    padding: 30px 24px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.slip-header {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-blue-dark);
    margin-bottom: 14px;
    border-bottom: 3px dashed var(--color-black);
    padding-bottom: 10px;
}

.slip-display-box p {
    font-size: 1.25rem;
    color: #1E293B;
    line-height: 1.5;
    margin-bottom: 24px;
    font-style: italic;
}

.slip-cta-footer {
    display: flex;
    justify-content: center;
}

.btn-compact {
    max-width: 480px;
    font-size: 1rem;
    padding: 14px 20px;
}

/* OPÇÃO B — PROVA SOCIAL WHATSAPP */
.whatsapp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-bottom: 45px;
}

.whatsapp-card {
    flex: 1 1 260px;
    max-width: 360px;
    background: #DCFCE7;
    border: 4px solid var(--color-black);
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--color-black);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 8px;
}

.wa-avatar {
    font-size: 1.8rem;
    background: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-header strong {
    display: block;
    font-size: 0.98rem;
    color: var(--color-blue-dark);
}

.wa-status {
    font-size: 0.78rem;
    color: var(--color-green);
    font-weight: 900;
}

.wa-body p {
    font-size: 0.96rem;
    color: #1E293B;
    line-height: 1.45;
    margin-bottom: 12px;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    color: #475569;
    font-weight: 900;
}

/* BOX GATILHO DE IMPULSO ("GATILHO DO LANCHE R$ 19,90") */
.impulse-trigger-box {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF08A 100%);
    border: 5px solid var(--color-black);
    border-radius: 28px;
    box-shadow: 10px 10px 0 var(--color-black);
    padding: 35px 28px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.impulse-badge {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-white);
    border: 3px solid var(--color-black);
    box-shadow: 3px 3px 0 var(--color-black);
    border-radius: 18px;
    padding: 6px 18px;
    font-size: 0.92rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.impulse-headline {
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    color: var(--color-blue-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.impulse-copy {
    font-size: 1.1rem;
    color: #334155;
    max-width: 650px;
    margin: 0 auto 22px;
}

.impulse-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 0.96rem;
    color: var(--color-blue-dark);
}

.btn-impulse-big {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    padding: 18px 24px;
    background-color: var(--color-green);
    color: var(--color-white);
}

/* --- SEÇÃO 5 — FAQ (ACCORDION) --- */
.faq-section {
    background-color: var(--color-cream);
    padding: 70px 20px;
}

.faq-container {
    max-width: 680px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border: 3px solid var(--color-black);
    border-radius: 16px;
    box-shadow: 3px 3px 0 var(--color-black);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-question {
    padding: 18px 22px;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-blue-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    color: #334155;
    font-size: 0.98rem;
}

.faq-item.open {
    background-color: #FEF9C3;
    border-color: var(--color-black);
    box-shadow: 5px 5px 0 var(--color-black);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    padding: 0 22px 18px;
    max-height: 250px;
}

/* --- SEÇÃO 6 — FOOTER --- */
footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    border-top: 4px solid var(--color-black);
}

footer p {
    margin: 6px 0;
}

/* --- POP-UP DE SAÍDA (EXIT INTENT) --- */
.exit-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 14px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: fadeIn 0.3s ease;
}

.exit-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-box {
    max-width: 440px;
    width: 100%;
    background: var(--color-white);
    border-radius: 24px;
    border: 5px solid var(--color-black);
    box-shadow: 8px 8px 0 var(--color-black);
    padding: 48px 24px 28px;
    text-align: center;
    position: relative;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto 0;
}

.btn-close-exit {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-cartoon);
    font-weight: 900;
}

.btn-close-exit:hover {
    color: var(--color-red);
}

.exit-emoji {
    font-size: 46px;
    display: inline-block;
    margin-bottom: 8px;
    animation: bounceHero 1.5s infinite ease-in-out;
}

.exit-box h3 {
    font-size: 1.6rem;
    color: var(--color-red);
    margin-bottom: 12px;
    text-shadow: 1px 1px 0 var(--color-black);
}

.exit-box p {
    font-size: 1.05rem;
    color: var(--color-blue-dark);
    margin-bottom: 18px;
}

.exit-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 26px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-blue-dark);
}

/* ==========================================================================
   SIMULADOR DOS BILHETINHOS (HERO TOP PREVIEW)
   ========================================================================== */
.slips-preview-top {
    background: var(--color-white);
    border: 4px solid var(--color-black);
    border-radius: 24px;
    box-shadow: 8px 8px 0 var(--color-black);
    padding: 30px 20px;
    max-width: 820px;
    width: 100%;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
    color: var(--color-blue-dark);
}

.demo-badge-wrap {
    text-align: center;
    margin-bottom: 12px;
}

.demo-badge {
    display: inline-block;
    background: #1E40AF;
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 5px 16px;
    border-radius: 20px;
    border: 2px solid var(--color-black);
    box-shadow: 2px 2px 0 var(--color-black);
    letter-spacing: 0.5px;
}

.slips-top-title {
    font-size: clamp(1.4rem, 4vw, 1.95rem);
    color: var(--color-blue-dark);
    margin-bottom: 10px;
}

.slips-top-sub {
    font-size: 1.05rem;
    color: #334155;
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.45;
}

.slips-real-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 6px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slips-real-carousel::-webkit-scrollbar {
    display: none;
}

.real-slip-paper {
    flex: 0 0 280px;
    scroll-snap-align: center;
    border: 3px solid var(--color-black);
    border-radius: 18px;
    padding: 24px 18px 16px;
    box-shadow: 5px 5px 0 var(--color-black);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.2s ease;
}

.real-slip-paper:hover {
    transform: translateY(-4px);
}

.paper-pin {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 1px rgba(0,0,0,0.3));
}

.paper-title {
    font-size: 1.08rem;
    font-weight: 900;
    color: #1E293B;
    margin-bottom: 12px;
    border-bottom: 2px dashed #94A3B8;
    padding-bottom: 8px;
}

.paper-text {
    font-size: 0.96rem;
    line-height: 1.45;
    color: #334155;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 600;
}

.paper-footer {
    font-size: 0.78rem;
    font-weight: 900;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paper-yellow { background: #FEF9C3; }
.paper-green { background: #DCFCE7; }
.paper-blue { background: #E0F2FE; }
.paper-pink { background: #FCE7F3; }

/* ==========================================================================
   CARROSSEL DE PRINTS WHATSAPP (HUMANIZADOS / EMPILHADOS)
   ========================================================================== */
.wa-carousel-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
}

.wa-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding: 10px 8px 26px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start !important;
}

.wa-carousel-track::-webkit-scrollbar {
    display: none;
}

.wa-print-card {
    flex: 0 0 350px !important;
    max-width: 350px !important;
    width: 350px !important;
    scroll-snap-align: center !important;
    display: block !important;
    background: #EFEAE2;
    border: 4px solid var(--color-black);
    border-radius: 28px;
    box-shadow: 8px 8px 0 var(--color-black);
    overflow: hidden;
    text-align: left;
    margin: 0 !important;
    opacity: 1 !important;
}

.wa-phone-header {
    background-color: #075E54;
    color: var(--color-white);
    padding: 10px 16px;
    border-bottom: 3px solid var(--color-black);
}

.wa-phone-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.wa-profile-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-profile-img,
.wa-profile-photo {
    background: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    flex-shrink: 0;
}

.wa-profile-info strong {
    display: block;
    font-size: 0.98rem;
    color: var(--color-white);
}

.wa-profile-info span {
    font-size: 0.78rem;
    color: #A7F3D0;
}

.wa-chat-body {
    padding: 20px 16px;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wa-bubble-in {
    background: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 16px 16px 16px 4px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
    padding: 10px 14px;
    max-width: 88%;
    align-self: flex-start;
}

.wa-sender {
    display: block;
    font-size: 0.82rem;
    color: #D97706;
    font-weight: 900;
    margin-bottom: 4px;
}

.wa-bubble-in p, .wa-bubble-out p {
    font-size: 0.96rem;
    color: #1E293B;
    line-height: 1.45;
    margin-bottom: 6px;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: bold;
}

.wa-bubble-out {
    background: #DCFCE7;
    border: 2px solid var(--color-black);
    border-radius: 16px 16px 4px 16px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
    padding: 10px 14px;
    max-width: 88%;
    align-self: flex-end;
}

.wa-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    gap: 12px;
}

.btn-wa-nav {
    background: var(--color-yellow);
    color: var(--color-blue-dark);
    border: 3px solid var(--color-black);
    box-shadow: 4px 4px 0 var(--color-black);
    border-radius: 14px;
    padding: 8px 16px;
    font-family: var(--font-cartoon);
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-wa-nav:hover {
    transform: scale(1.05);
    background: #FDE047;
}

.btn-wa-nav:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--color-black);
}

.wa-indicator {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--color-blue-dark);
    background: var(--color-white);
    border: 3px solid var(--color-black);
    padding: 6px 16px;
    border-radius: 14px;
    box-shadow: 3px 3px 0 var(--color-black);
}

/* ==========================================================================
   POP-UP DE UPSELL / FOMO (DISPARA NO BOTÃO DE R$ 10)
   ========================================================================== */
.upsell-box-inner {
    max-width: 580px;
    background: #FEF9C3;
    border: 5px solid var(--color-black);
    border-radius: 30px;
}

.upsell-fomo-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: #991B1B;
    line-height: 1.25;
    margin-bottom: 10px;
}

.upsell-fomo-sub {
    font-size: 1rem;
    color: #1E293B;
    margin-bottom: 16px;
    line-height: 1.4;
}

.fomo-loss-box {
    background: #FEE2E2;
    border: 3px solid #991B1B;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.fomo-loss-header {
    font-weight: 900;
    color: #991B1B;
    margin-bottom: 10px;
    font-size: 0.98rem;
}

.fomo-loss-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
    color: #7F1D1D;
}

.btn-upsell-main {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    font-size: 1.1rem;
    padding: 16px 14px;
}

.upsell-skip-link {
    display: block;
    font-size: 0.85rem;
    color: #64748B;
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.15s ease;
    padding: 12px 0 4px;
    line-height: 1.4;
}

.upsell-skip-link:hover {
    color: #1E293B;
}

.upsell-mockup-wrapper {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 14px;
    border: 3px solid var(--color-black);
    border-radius: 18px;
    box-shadow: 4px 4px 0 var(--color-black);
    overflow: hidden !important;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.upsell-mini-img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.18) !important;
}

/* --- TABELA COMPARATIVA NEOBRUTALISTA --- */
.comparison-table-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 40px auto 30px;
    background: var(--color-white);
    border: 4px solid var(--color-black);
    border-radius: 24px;
    box-shadow: 6px 6px 0 var(--color-black);
    padding: 25px;
    text-align: center;
}

.comparison-title-wrap {
    margin-bottom: 12px;
}

.comp-badge {
    background: var(--color-blue-hero);
    color: var(--color-white);
    border: 2px solid var(--color-black);
    box-shadow: 2px 2px 0 var(--color-black);
    border-radius: 12px;
    padding: 4px 14px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
}

.comp-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-blue-dark);
    margin-bottom: 20px;
}

.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
    padding: 14px 12px;
    border-bottom: 3px solid var(--color-black);
}

.comparison-table th {
    background-color: #F3F4F6;
    color: var(--color-blue-dark);
    font-weight: 900;
    font-size: 1rem;
    border-bottom: 4px solid var(--color-black);
}

.comparison-table th.col-basic, .comparison-table th.col-complete {
    text-align: center;
    width: 120px;
}

.comp-price {
    display: block;
    font-size: 0.8rem;
    color: var(--color-red);
    margin-top: 2px;
}

.feature-name {
    color: var(--color-blue-dark);
}

.feat-desc {
    font-size: 0.8rem;
    font-weight: normal;
    color: #4B5563;
    display: block;
    margin-top: 2px;
}

.col-check, .col-cross {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 900;
}

.col-check {
    color: var(--color-green);
}

.col-cross {
    color: var(--color-red);
    opacity: 0.7;
}

.font-bold-green {
    font-weight: 900;
    color: var(--color-green);
}

/* --- ESTILOS DE ANCORAGEM & MUTED DESIGN (OPÇÃO E & A) --- */
.offer-card.card-muted {
    border: 3px solid #9CA3AF !important;
    background: #F9FAFB !important;
    box-shadow: 4px 4px 0 #9CA3AF !important;
    opacity: 0.82;
    transform: none !important;
}

.offer-card.card-muted:hover {
    box-shadow: 4px 4px 0 #9CA3AF !important;
    transform: none !important;
}

.offer-card.card-muted .pricing-area {
    border-bottom-color: #E5E7EB !important;
}

.offer-card.card-muted .new-price {
    color: #4B5563 !important;
    text-shadow: none !important;
}

.offer-card.card-muted .card-title {
    color: #4B5563 !important;
}

.card-sub-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: #6B7280;
    display: block;
    margin-top: 2px;
}

/* BOTÃO MUTED E DESBOTADO */
.btn-muted {
    background-color: #E5E7EB !important;
    color: #4B5563 !important;
    border: 3px solid #9CA3AF !important;
    box-shadow: 3px 3px 0 #9CA3AF !important;
}

.btn-muted:hover {
    background-color: #D1D5DB !important;
    transform: scale(1.02) !important;
}

.btn-muted:active {
    transform: translate(2px, 2px) !important;
    box-shadow: 1px 1px 0 #9CA3AF !important;
}

/* AVERSÃO À PERDA (ITENS INDISPONÍVEIS) */
.item-unavailable {
    opacity: 0.45;
    color: #9CA3AF !important;
    border-bottom: 2px dashed #E5E7EB !important;
}

.strike-text {
    text-decoration: line-through;
}

.cross-red {
    color: var(--color-red);
    font-size: 1.1rem;
    font-weight: 900;
}

/* --- ANIMAÇÕES ON-SCROLL --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE-FIRST ULTRA-COMPACTA (OTIMIZAÇÃO 100% MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    /* 0. Faixa superior letreiro rodando (Marquee full-width no celular) */
    .top-banner.marquee-banner {
        top: 0 !important;
        padding: 5px 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .marquee-content {
        gap: 8px !important;
        padding-right: 12px !important;
        font-size: 0.78rem !important;
    }
    .banner-txt {
        font-size: 0.76rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    .banner-timer {
        padding: 1px 6px !important;
        font-size: 0.76rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    .banner-cta-link {
        padding: 2px 8px !important;
        font-size: 0.72rem !important;
        line-height: 1 !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 1. Redução geral de paddings nas seções para evitar rolagem excessiva */
    .hero-section,
    .section-cartoon,
    .steps-section,
    .faq-section {
        padding: 30px 14px !important;
    }

    .hero-headline {
        font-size: 1.6rem !important;
        line-height: 1.18 !important;
        margin-bottom: 12px !important;
    }

    .hero-subheadline {
        font-size: 1.02rem !important;
        margin-bottom: 18px !important;
    }

    .pot-3d-float {
        width: 120px !important;
        height: 120px !important;
    }

    .hero-mockup-container {
        margin-bottom: 22px !important;
    }

    .hero-main-img {
        max-height: 230px !important;
        object-fit: contain;
    }

    /* 2. Simulador dos Bilhetinhos — Em 1 linha com rolagem lateral (scroll horizontal) */
    .slips-preview-top {
        padding: 20px 12px !important;
        margin-bottom: 30px !important;
    }

    .slips-top-title {
        font-size: 1.35rem !important;
    }

    .slips-top-sub {
        font-size: 0.92rem !important;
        margin-bottom: 14px !important;
    }

    .slips-real-carousel {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding: 8px 4px 18px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .real-slip-paper {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        scroll-snap-align: center !important;
        padding: 18px 14px 14px !important;
    }

    /* 3. Ofertas no Celular — Super Kit R$ 19,90 aparece PRIMEIRO (order: -1) e cards compactos */
    .offers-container {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
    }

    .offer-card {
        max-width: 100% !important;
        padding: 20px 14px !important;
        border-radius: 20px !important;
    }

    /* Coloca o Super Kit de R$ 19,90 acima do plano básico de R$ 10 na rolagem do celular */
    .offer-card.card-kit {
        order: -1;
    }

    .mini-mockup, .upsell-mockup-wrapper {
        width: 100% !important;
        max-width: 240px !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        margin: 0 auto 14px !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .card-mini-img, .upsell-mini-img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1.18) !important;
        display: block !important;
    }

    .card-title {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }

    .new-price {
        font-size: 2.1rem !important;
    }

    .features-list {
        margin-bottom: 18px !important;
    }

    .features-list li {
        font-size: 0.92rem !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
    }

    .btn-cartoon {
        padding: 14px 16px !important;
        font-size: 1rem !important;
    }

    /* 4. "Como Funciona" — Carrossel horizontal deslizante no celular (100% compacto, zero overflow) */
    .steps-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding-top: 8px !important;
        padding-bottom: 16px !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch;
    }

    .step-item {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        width: 82% !important;
        padding: 16px 12px !important;
        border-radius: 18px !important;
        border-width: 3px !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

    .step-circle {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
    }

    .step-item h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .step-item p {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
    }

    /* 5. "Anatomia do Problema" — Carrossel horizontal deslizante no celular (compacto, direto ao ponto) */
    .themes-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding-top: 8px !important;
        padding-bottom: 16px !important;
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .themes-grid::-webkit-scrollbar, .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .theme-card {
        flex: 0 0 82% !important;
        max-width: 82% !important;
        width: 82% !important;
        padding: 16px 14px !important;
        border-radius: 18px !important;
        border-width: 3px !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

    .theme-icon {
        font-size: 1.9rem !important;
        margin-bottom: 8px !important;
    }

    .theme-card h4 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .theme-card p {
        font-size: 0.84rem !important;
        line-height: 1.35 !important;
    }

    /* 6. Box Gatilho do Lanche (R$ 19,90) enxuto */
    .impulse-trigger-box {
        padding: 24px 14px !important;
        border-radius: 20px !important;
    }

    .impulse-headline {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }

    .impulse-copy {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }

    .impulse-bullets {
        gap: 10px !important;
        margin-bottom: 20px !important;
        font-size: 0.88rem !important;
    }

    .btn-impulse-big {
        font-size: 1.02rem !important;
        padding: 15px 12px !important;
    }

    .wa-print-card {
        flex: 0 0 86% !important;
        max-width: 86% !important;
        width: 86% !important;
        scroll-snap-align: center !important;
    }

    /* Ajustes na tabela comparativa no celular */
    .comparison-table-wrapper {
        padding: 16px 12px !important;
        margin: 25px auto 20px !important;
        border-radius: 18px !important;
        border-width: 3px !important;
    }
    .comp-title {
        font-size: 1.18rem !important;
        margin-bottom: 14px !important;
    }
    .comparison-table th, .comparison-table td {
        padding: 10px 8px !important;
        font-size: 0.82rem !important;
    }
    .feat-desc {
        font-size: 0.72rem !important;
    }
    .comparison-table th.col-basic, .comparison-table th.col-complete {
        width: 75px !important;
    }
}

/* ========================================================
   NOVOS ESTILOS — GATILHOS DE URGÊNCIA / FOMO
   ======================================================== */

/* Tag de bônus válido "somente hoje" no card básico */
.fomo-tag-card {
    background: #FEF3C7;
    border: 2.5px solid #F59E0B;
    border-radius: 10px;
    color: #92400E;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 12px;
    margin: 8px 0 4px;
    text-align: center;
    animation: pulse-fomo 1.4s ease-in-out infinite;
}

/* Badge de urgência/timer no card do kit */
.urgency-badge-kit {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 7px 16px;
    border-radius: 10px;
    border: 2.5px solid #7f1d1d;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
    box-shadow: 2px 2px 0 #7f1d1d;
    animation: shake-mild 2.5s ease-in-out infinite;
}

/* Aviso de vagas restantes */
.stock-warning {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #FFF7ED;
    border: 2.5px solid #F97316;
    border-radius: 10px;
    padding: 7px 12px;
    font-size: 0.87rem;
    color: #9A3412;
    margin: 8px 0 4px;
}

.stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dc2626;
    display: inline-block;
    flex-shrink: 0;
    animation: blink-stock 1s step-start infinite;
}

@keyframes blink-stock {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

/* Nota de urgência abaixo dos botões dos cards */
.card-fomo-note {
    text-align: center;
    font-size: 0.79rem;
    font-weight: 700;
    color: #dc2626;
    margin-top: 6px;
    animation: pulse-fomo 1.6s ease-in-out infinite;
}

/* Faixa de urgência abaixo da tabela comparativa */
.table-urgency-strip {
    background: linear-gradient(90deg, #FEF3C7, #FFF7ED);
    border: 2.5px solid #F59E0B;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 0.87rem;
    color: #78350F;
    text-align: center;
    line-height: 1.6;
}

/* Caixa de alerta de bônus no box de impulso */
.impulse-bonus-alert {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border: 2.5px solid #16A34A;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 0.92rem;
    color: #064E3B;
    text-align: center;
    line-height: 1.6;
}

/* Linha de urgência/timer no modal upsell */
.modal-urgency-row {
    background: #FEF2F2;
    border: 2px solid #dc2626;
    border-radius: 10px;
    padding: 9px 16px;
    margin: 12px 0;
    text-align: center;
    font-size: 0.93rem;
    color: #7f1d1d;
    font-weight: 700;
}

/* Animação pulso FOMO */
@keyframes pulse-fomo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}

/* Animação tremida suave */
@keyframes shake-mild {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-2px); }
    94% { transform: translateX(2px); }
    96% { transform: translateX(-1px); }
    98% { transform: translateX(1px); }
}

/* Responsivo mobile — urgência */
@media (max-width: 480px) {
    .urgency-badge-kit {
        font-size: 0.78rem;
        padding: 6px 10px;
    }
    .table-urgency-strip {
        font-size: 0.80rem;
        padding: 10px 12px;
    }
    .impulse-bonus-alert {
        font-size: 0.84rem;
        padding: 10px 12px;
    }
}

/* ========================================================
   SEÇÃO POLÍTICA DE PRIVACIDADE & TERMOS
   ======================================================== */

.privacy-section {
    background: #F8FAFC;
    border-top: 3px solid #E2E8F0;
    padding: 48px 20px 40px;
}

.privacy-container {
    max-width: 820px;
    margin: 0 auto;
}

.privacy-main-title {
    font-family: var(--font-cartoon);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    text-align: center;
    margin-bottom: 6px;
}

.privacy-updated {
    text-align: center;
    font-size: 0.82rem;
    color: #64748B;
    margin-bottom: 28px;
}

.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Blocos da política */
.priv-block {
    border: 2px solid #CBD5E1;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
}

.priv-block:hover {
    border-color: var(--color-blue-hero);
}

.priv-block-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    cursor: pointer;
    user-select: none;
    gap: 10px;
}

.priv-block-title:hover {
    background: #EFF6FF;
}

.priv-arrow {
    font-size: 0.75rem;
    transition: transform 0.25s;
    flex-shrink: 0;
    color: var(--color-blue-hero);
}

.priv-block-body {
    display: none;
    padding: 0 18px 16px;
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.75;
    font-weight: 400;
}

.priv-block-body p {
    margin-bottom: 10px;
}

.priv-block-body ul {
    margin: 8px 0 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.priv-block-body ul li {
    font-size: 0.86rem;
}

/* Estado aberto */
.priv-block.priv-open .priv-block-body {
    display: block;
}

.priv-block.priv-open .priv-arrow {
    transform: rotate(180deg);
}

.priv-block.priv-open {
    border-color: var(--color-blue-hero);
}

/* ========================================================
   FOOTER ATUALIZADO
   ======================================================== */

footer {
    background: var(--color-navy);
    color: #CBD5E1;
    text-align: center;
    padding: 32px 20px 24px;
    border-top: 4px solid var(--color-yellow);
}

footer p {
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: #E2E8F0;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 12px;
}

.footer-legal-links a {
    color: var(--color-yellow);
    text-decoration: underline;
    font-size: 0.86rem;
    font-weight: 700;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: #FDE68A;
}

.footer-legal-links span {
    color: #64748B;
    font-size: 0.8rem;
}

.footer-disclaimer {
    font-size: 0.74rem !important;
    color: #64748B !important;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .privacy-main-title {
        font-size: 1.2rem;
    }
    .priv-block-title {
        font-size: 0.88rem;
        padding: 12px 14px;
    }
    .footer-legal-links {
        gap: 8px;
    }
}

/* ========================================================
   SISTEMA DE ÍCONES (SVG SPRITES)
   ======================================================== */

.icon {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.2em; /* Alinha o ícone visualmente com o texto */
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s, stroke 0.2s;
}

/* Ajustes específicos para ícones dentro de certos contextos */
.fomo-tag-card .icon,
.urgency-badge-kit .icon,
.table-urgency-strip .icon,
.impulse-bonus-alert .icon,
.impulse-bullets .icon {
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.15em;
}

.faq-question .icon {
    margin-right: 6px;
    color: var(--color-blue-hero); /* Dá um toque de cor nos ícones do FAQ */
}
