:root {
    --primary-color: #2563eb; /* Accessible Blue (4.56:1 on white) */
    --secondary-color: #fbbf24; /* Cheerful Yellow */
    --cta-color: #16a34a; /* Accessible Green (4.5:1 for white text) */
    --text-dark: #1e293b;
    --text-light: #475569;
    --bg-light: #ffffff;
    --bg-alt: #e0f2fe; /* Soft sky blue */
    --bg-gray: #fffdf2; /* Soft cream/yellowish paper */
    --font-main: 'Nunito', sans-serif;
    --font-titles: 'Fredoka One', cursive;
    --font-subs: 'Baloo 2', cursive;
    --radius-md: 24px;
    --shadow-sm: 4px 4px 0px rgba(30, 41, 59, 0.15);
    --shadow-hover: 6px 6px 0px rgba(30, 41, 59, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .headline, .section-title {
    font-family: var(--font-titles);
    font-weight: 400 !important;
}

.highlight {
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 38%;
    background-position: 0 90%;
    padding: 0 2px;
}

.headline-highlight {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 2px 16px;
    border-radius: 12px;
    border: 3px solid var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
    display: inline-block;
    line-height: 1.2;
    margin: 6px 2px;
    transform: rotate(-1.5deg);
}

.headline-highlight:nth-of-type(even) {
    background-color: #38bdf8; /* Vibrant light blue */
    transform: rotate(1.5deg);
}

img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0 90px; position: relative; }

/* Waves e Divisores */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 2px);
    height: 45px;
}
.fill-light { fill: var(--bg-light); }
.fill-gray { fill: var(--bg-gray); }
.fill-alt { fill: var(--bg-alt); }
.fill-primary { fill: var(--primary-color); }

.text-center { text-align: center; }
.text-blue { color: var(--primary-color) !important; }
.bg-light-gray { background-color: var(--bg-gray); }
.bg-light-blue { background-color: var(--bg-alt); }
.mt-30 { margin-top: 30px; }

/* Navbar */
.top-navbar {
    background-color: #c62828;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.timer { background: rgba(0,0,0,0.2); padding: 4px 8px; border-radius: 6px; font-family: monospace; font-size: 16px; }

/* Bloco 1 */
.bloco-1 { background-color: var(--bg-alt); text-align: center; padding: 40px 0 60px; }
.secure-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22, 101, 52, 0.15); color: #14532d; font-weight: 800; font-size: 13px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 0.5px; border: 1px solid rgba(22, 101, 52, 0.3); }
.headline { color: var(--text-dark); font-size: 28px; font-weight: 900; margin-bottom: 25px; line-height: 1.25; text-transform: uppercase; }
.hero-image { margin: 30px auto; max-width: 500px; border-radius: var(--radius-md); }
.subheadline { font-family: var(--font-subs); font-size: 20px; color: var(--text-dark); margin-bottom: 30px; font-weight: 700; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.35; letter-spacing: 0.5px; }

/* Lista de Features do Bloco 1 */
.hero-features-list {
    list-style: none;
    margin: 0 auto 35px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    padding: 0 10px;
}
.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    background: white;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.02);
}
.hero-features-list .icon {
    font-size: 22px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .hero-features-list {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 45px;
    }
    .hero-features-list li {
        font-size: 15px;
        padding: 12px 20px;
    }
}

/* Botões Estilo Brinquedo/Cartoon */
.cta-button {
    display: inline-flex; justify-content: center; align-items: center;
    background-color: var(--cta-color); color: white; font-size: 20px; font-weight: 800;
    text-transform: uppercase; padding: 16px 30px; border-radius: 50px; text-decoration: none;
    border: 3px solid #0f3d1e; box-shadow: 0 6px 0px #0f3d1e;
    animation: pulse 2s infinite; transition: all 0.15s ease-out;
    width: 100%; max-width: 380px; letter-spacing: 0.5px;
}
.cta-button:hover { transform: translateY(2px); box-shadow: 0 4px 0px #0f3d1e; }
.cta-button:active { transform: translateY(6px); box-shadow: 0 0 0px #0f3d1e; animation: none; }
.cta-blue { background-color: var(--primary-color); border-color: #1e3a8a; box-shadow: 0 6px 0px #1e3a8a; animation: none; }
.cta-yellow { background-color: var(--secondary-color); color: var(--text-dark); border-color: #b45309; box-shadow: 0 6px 0px #b45309; }
.cta-button.outline { background: white; border: 3px solid var(--cta-color); color: var(--cta-color); box-shadow: 0 6px 0px var(--cta-color); animation: none; }
.cta-button.outline:hover { background: var(--bg-gray); color: var(--cta-color); transform: translateY(2px); box-shadow: 0 4px 0px var(--cta-color); }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 6px 0px #0f3d1e; }
    50% { transform: scale(1.02); box-shadow: 0 8px 0px #0f3d1e; }
    100% { transform: scale(1); box-shadow: 0 6px 0px #0f3d1e; }
}

.whatsapp-delivery { margin-top: 20px; display: inline-flex; justify-content: center; align-items: center; gap: 6px; font-size: 13px; color: var(--text-dark); background: white; font-weight: 800; padding: 6px 16px; border-radius: 50px; border: 2px solid #1e293b; box-shadow: 2px 2px 0px rgba(30,41,59,0.1); text-transform: uppercase; letter-spacing: 0.5px; }
.whatsapp-delivery svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: -2px; }

/* Tipografia Geral de Seção */
.section-title { font-size: 26px; color: var(--text-dark); margin-bottom: 15px; font-weight: 800; text-align: center; text-transform: uppercase; }
.section-subtitle { font-family: var(--font-subs); text-align: center; font-size: 20px; color: var(--text-dark); font-weight: 700; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.35; letter-spacing: 0.5px; }

/* Bloco 2: Demo (Marquee — JS Driven) */
.marquee-container { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; padding: 20px 0; margin-top: 25px; }
.marquee-track { display: inline-flex; gap: 15px; padding-right: 15px; will-change: transform; white-space: nowrap; }
.marquee-track img { flex-shrink: 0; height: 300px; border-radius: 12px; border: 3px solid #1e293b; box-shadow: 4px 4px 0px rgba(30,41,59,0.15); object-fit: contain; pointer-events: none; }

/* Bloco 12: Acesso Fluxo */
.acesso-flex { display: flex; flex-direction: column; gap: 20px; align-items: center; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.acesso-card {
    position: relative;
    background: white; padding: 25px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); text-align: center; max-width: 280px; width: 100%; border: 3px solid #1e293b;
}
.step-num {
    background: var(--primary-color);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #1e293b;
    box-shadow: 2px 2px 0px rgba(30,41,59,0.2);
}
.acesso-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--primary-color); line-height: 1.3; }
.acesso-card .icon { font-size: 40px; margin-bottom: 10px; }

/* Bloco 3: Lista de Benefícios */
.benefit-list { list-style: none; margin: 0 auto; max-width: 700px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 18px; margin-bottom: 15px; font-weight: 600; padding: 10px; border-radius: 8px; transition: background 0.2s;}
.benefit-list li:hover { background: var(--bg-gray); }
.benefit-list .check { font-size: 20px; }
.list-centered { display: flex; flex-direction: column; align-items: flex-start; max-width: fit-content; margin: 0 auto; }
.list-centered li { justify-content: flex-start; text-align: left; }
.subtitle-centered { font-weight: 800; color: var(--primary-color); margin-bottom: 20px; }

/* Grid de Benefícios Visual em Caixas */
.change-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 35px; }
.change-card { background: white; border-radius: var(--radius-md); padding: 30px 20px; max-width: 320px; width: 100%; box-shadow: var(--shadow-sm); border: 3px solid #1e293b; text-align: center; transition: transform 0.3s; }
.change-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.change-card .icon-box { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: var(--bg-alt); border-radius: 50%; margin-bottom: 15px; border: 3px solid #1e293b; }
.change-card p { font-size: 17px; font-weight: 750; color: var(--text-dark); margin: 0; line-height: 1.3; }

/* Grid Ideal Para (Bloco 5) */
.ideal-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.ideal-card { background: white; border-radius: var(--radius-md); padding: 25px 20px; width: calc(50% - 20px); min-width: 260px; box-shadow: var(--shadow-sm); border: 3px solid #1e293b; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.2s; }
.ideal-card:hover { transform: translateY(-4px); }
.styled-check { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: var(--cta-color); color: white; border-radius: 50%; margin-bottom: 15px; }
.ideal-card p { font-size: 16px; font-weight: 750; color: var(--text-dark); margin: 0; line-height: 1.3; }
.ideal-closing { margin-top: 90px; font-size: 18px; color: var(--text-dark); line-height: 1.4; }
.ideal-closing p { margin-bottom: 8px; }
.ideal-closing strong { color: var(--primary-color); font-weight: 850; font-size: 22px; }

/* Bloco 13: Comparativo (Neo-Cartoon) */
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
.compare-card { padding: 30px 20px; border-radius: var(--radius-md); border: 3px solid #1e293b; }
.compare-card.bad { background: #fff5f5; box-shadow: 6px 6px 0px #ef4444; }
.compare-card.good { background: #ecfdf5; box-shadow: 6px 6px 0px #10b981; transform: scale(1.02); }

.compare-card h3 { font-size: 22px; margin-bottom: 25px; padding: 12px; border-radius: 16px; border: 3px solid #1e293b; text-align: center; }
.compare-card.bad h3 { background: #fecaca; color: #991b1b; box-shadow: 3px 3px 0px rgba(0,0,0,0.15); }
.compare-card.good h3 { background: #a7f3d0; color: #065f46; box-shadow: 3px 3px 0px rgba(0,0,0,0.15); }

.compare-card ul { list-style: none; padding-left: 0; }
.compare-card ul li { margin-bottom: 12px; font-weight: 800; font-size: 16px; position: relative; background: white; padding: 14px 14px 14px 45px; border-radius: 16px; border: 2px solid #1e293b; box-shadow: 2px 2px 0px rgba(30,41,59,0.1); line-height: 1.35; }
.compare-card.bad ul li { color: #7f1d1d; }
.compare-card.good ul li { color: #064e3b; }

.compare-card.bad ul li::before { content: "❌"; position: absolute; left: 14px; font-size: 16px; top: 14px; }
.compare-card.good ul li::before { content: "✅"; position: absolute; left: 14px; font-size: 16px; top: 14px; }

/* Bloco 5: Tags */
.tags-container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.tag { background: white; padding: 12px 20px; border-radius: 50px; font-weight: 800; color: var(--primary-color); border: 3px solid #1e293b; box-shadow: 2px 2px 0px rgba(30,41,59,0.2); }

/* Bloco 6: O que vai receber */
.product-reveal { display: flex; flex-direction: column; align-items: center; gap: 30px; margin: 40px 0; background: white; padding: 40px; border-radius: var(--radius-md); border: 3px solid #1e293b; box-shadow: 6px 6px 0px rgba(30,41,59,0.15); }
.product-reveal img { max-width: 350px; }
.product-info h3 { color: var(--primary-color); font-size: 22px; margin-top: 20px; margin-bottom: 5px; }
.product-reveal .benefit-list li { background: var(--bg-alt); padding: 15px 20px; border-radius: 16px; border: 2px solid #1e293b; box-shadow: 2px 2px 0px rgba(30,41,59,0.1); margin-bottom: 12px; font-weight: 800; font-size: 16px; }
.product-reveal .benefit-list li:hover { transform: translateX(5px); box-shadow: 4px 4px 0px rgba(30,41,59,0.15); background: white; }

/* Bloco 7: Bônus */
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
.bonus-card { background: white; border-radius: var(--radius-md); padding: 25px; box-shadow: var(--shadow-sm); border: 3px solid #1e293b; text-align: center; transition: transform 0.3s; }
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.bonus-card h3 { color: var(--primary-color); font-family: var(--font-main); font-weight: 900; font-size: 22px; margin-bottom: 15px; line-height: 1.2; }
.bonus-card p { color: var(--text-light); line-height: 1.5; font-size: 15px; margin-bottom: 0;}
.b-top-id { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #1e293b; background: var(--secondary-color); padding: 6px 18px; border-radius: 50px; border: 3px solid #1e293b; box-shadow: 2px 2px 0px rgba(30,41,59,0.15); font-weight: 900; font-size: 14px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-img { width: 100%; max-width: 300px; margin: 0 auto 15px; border-radius: var(--radius-md); }
.bonus-meta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; font-size: 14px; font-weight: 800; }
.b-price { color: #b91c1c; }
.b-free { color: #15803d; text-transform: uppercase; }

/* Bloco 8: Planos */
.pricing-flex { display: flex; flex-direction: column; gap: 30px; margin-top: 40px; align-items: center; }
.pricing-card { background: white; border-radius: var(--radius-md); padding: 30px; width: 100%; max-width: 400px; text-align: center; box-shadow: var(--shadow-sm); position: relative; border: 3px solid #1e293b; }
.pricing-card.premium { border: 4px solid var(--cta-color); transform: scale(1.02); box-shadow: var(--shadow-hover); }
.best-value { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 6px; background: var(--cta-color); color: white; padding: 6px 18px; border-radius: 20px; border: 3px solid #0f3d1e; font-size: 13px; font-weight: 900; white-space: nowrap; box-shadow: 2px 2px 0px rgba(30,41,59,0.2); }
.pricing-card h3 { font-size: 26px; margin-top: 15px; margin-bottom: 5px; color: var(--primary-color); }
.plan-image { width: 100%; max-width: 320px; margin: 15px auto 5px; border-radius: var(--radius-md); display: block; }
.price { margin: 20px 0; color: var(--text-dark); }
.price span { display: block; font-size: 14px; color: var(--text-light); }
.price span strike { color: #b91c1c; }
.price strong { font-size: 45px; font-weight: 900; line-height: 1; color: var(--cta-color); }
.plan-includes { list-style: none; text-align: center; margin: 25px 0 30px; border-top: 3px dashed #e2e8f0; padding-top: 25px; display: flex; flex-direction: column; gap: 10px; }
.plan-includes li { text-align: center; background: #f8fafc; border: 2px solid #1e293b; border-radius: 12px; padding: 12px 15px; font-size: 14px; font-weight: 800; color: var(--text-dark); box-shadow: 2px 2px 0px rgba(30,41,59,0.1); transition: transform 0.2s; }
.plan-includes li.bonus-label { background: transparent; border: none; box-shadow: none; color: var(--primary-color); font-size: 16px; font-weight: 900; text-transform: uppercase; margin-top: 15px; margin-bottom: 5px; padding: 0 0 15px 0; border-bottom: 3px dashed #10b981; border-radius: 0; }
.plan-includes li.bonus-label:hover { transform: none; background: transparent; cursor: default; }
.plan-includes li:hover:not(.bonus-label) { transform: translateX(5px); background: white; }
.pricing-card.premium .plan-includes li { background: #ecfdf5; box-shadow: 2px 2px 0px #10b981; }
.pricing-card.premium .plan-includes li:hover { background: #d1fae5; }
.plan-includes li.disabled { background: #f1f5f9; border: 2px solid #cbd5e1; color: #94a3b8; box-shadow: none; text-decoration: line-through; opacity: 0.6; }

.upsell-nudge { margin-top: 25px; padding-top: 20px; border-top: 3px dashed #e2e8f0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.upsell-nudge span { font-size: 15px; font-weight: 800; color: #b91c1c; line-height: 1.3; }
.bounce-down { animation: bounceDown 1.5s infinite; }
@keyframes bounceDown { 
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
    40% { transform: translateY(8px); } 
    60% { transform: translateY(4px); } 
}

/* Bloco 11: Garantia Box */
.garantia-box { display: flex; flex-direction: column; align-items: center; background: white; padding: 30px; border-radius: var(--radius-md); margin-top: 50px; gap: 20px; text-align: center; border: 4px dashed var(--secondary-color); box-shadow: var(--shadow-sm); }

/* Bloco 9: FAQ */
.faq-container { max-width: 700px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: white; border-radius: var(--radius-md); border: 3px solid #1e293b; box-shadow: 3px 3px 0px rgba(30,41,59,0.15); overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 700; color: var(--primary-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question .icon { font-size: 20px; color: var(--text-light); }
.faq-answer { padding: 0 20px 20px; color: var(--text-light); display: none; }
.faq-item.active .faq-answer { display: block; }

/* Footer */
.footer { background: var(--primary-color); color: white; padding: 40px 0 20px; }
.footer p { margin-bottom: 10px; }
.footer .small { font-size: 12px; max-width: 600px; margin: 0 auto; opacity: 0.85; }
.footer-links { margin-top: 20px; }

/* Modal Upsell Intercept */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(5px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; animation: fadeIn 0.3s forwards; }
.modal-box { background: white; border: 4px solid var(--cta-color); border-radius: 16px; padding: 25px 20px; width: 92%; max-width: 420px; text-align: center; position: relative; box-shadow: 6px 6px 0px rgba(30,41,59,0.3); animation: slideUpModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-sizing: border-box; }
.close-modal { position: absolute; top: 5px; right: 15px; font-size: 26px; font-weight: bold; color: #94a3b8; cursor: pointer; transition: 0.2s; }
.close-modal:hover { color: #e74c3c; transform: scale(1.1); }
.modal-header { font-family: var(--font-main); font-size: 26px; font-weight: 900; color: #e74c3c; line-height: 1; margin-bottom: 5px; margin-top: 5px; }
.modal-alert { font-size: 12px; font-weight: 800; color: #64748b; margin-bottom: 15px; text-transform: uppercase; letter-spacing: -0.5px; }
.modal-text { font-size: 14px; line-height: 1.35; color: var(--text-dark); margin-bottom: 10px; }
.modal-text strong { color: var(--primary-color); font-weight: 900; }
.modal-highlight { background: #ecfdf5; border: 2px dashed #10b981; border-radius: 8px; padding: 12px 15px; font-size: 14px; line-height: 1.3; color: var(--text-dark); margin: 15px 0; }
.modal-highlight strong { color: var(--cta-color); font-size: 16px; font-weight: 900; }
.modal-price-strike { font-family: var(--font-main); font-weight: 900; font-size: 16px; color: #475569; margin: 10px 0 15px; text-decoration: line-through; text-decoration-color: #e74c3c; text-decoration-thickness: 2px;}
.modal-reject { display: inline-block; margin-top: 15px; background: transparent; border: 2px solid #cbd5e1; color: #64748b; padding: 12px 15px; font-size: 13px; font-weight: 800; border-radius: 12px; cursor: pointer; text-decoration: none; width: 100%; box-sizing: border-box; transition: 0.2s; }
.modal-reject:hover { border-color: #94a3b8; color: #475569; background: #f8fafc; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUpModal { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Desktop Media Queries */
@media (min-width: 768px) {
    .headline { font-size: 40px; }
    .subheadline { font-size: 20px; }
    .section-title { font-size: 34px; }
    .demo-grid { grid-template-columns: repeat(4, 1fr); }
    .acesso-flex { flex-direction: row; justify-content: center; }
    .comparison-grid { grid-template-columns: 1fr 1fr; }
    .product-reveal { flex-direction: row; align-items: center; text-align: left; }
    .product-info h3 { margin-top: 0; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-flex { flex-direction: row; justify-content: center; align-items: stretch; }
    .garantia-box { flex-direction: row; text-align: left; padding: 40px; }
}
