:root {
    --blue:       #0A58CA;
    --blue-dark:  #00378b;
    --yellow:     #FFC107;
    --green:      #1E9A4B;
    --green-dark: #157347;
    --bg:         #F8F9FA;
    --text:       #212529;
    --muted:      #6C757D;
    --white:      #FFFFFF;
    --radius:     12px;
    --font-title: 'Baloo 2', cursive;
    --font-body:  'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    padding-bottom: 72px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

h1, h2, h3 { font-family: var(--font-title); line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }

/* ===========================
   HELPERS
   =========================== */
.container   { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-2        { margin-top: 2rem; }
.highlight-yellow { color: var(--yellow); }
.highlight-blue   { color: var(--blue); }

/* ===========================
   ANIMAÇÕES
   =========================== */

/* CTA buttons (inline-block) — escala + glow */
@keyframes pulseCta {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(30,154,75,.7); }
    70%  { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(30,154,75,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(30,154,75,0); }
}

/* Botão verde do plano (display:block) — glow expandindo sem scale */
@keyframes pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(30,154,75,.75); }
    70%  { box-shadow: 0 0 0 12px rgba(30,154,75,0); }
    100% { box-shadow: 0 0 0 0 rgba(30,154,75,0); }
}

/* Botão azul do plano (display:block) — glow expandindo sem scale */
@keyframes pulseBlue {
    0%   { box-shadow: 0 0 0 0 rgba(10,88,202,.75); }
    70%  { box-shadow: 0 0 0 12px rgba(10,88,202,0); }
    100% { box-shadow: 0 0 0 0 rgba(10,88,202,0); }
}

/* WhatsApp */
@keyframes wppPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Aplicação das animações */
.pulse-button           { animation: pulseCta 2s infinite; }
.btn-green.pulse-button { animation: pulseGreen 2s infinite; }
.btn-blue.pulse-button  { animation: pulseBlue  2s infinite; }

/* ===========================
   BANNER TOPO
   =========================== */
.top-banner {
    background: var(--yellow);
    color: #000;
    text-align: center;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    padding: .6rem 1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
@media (min-width: 768px) { .top-banner { font-size: 1.1rem; } }

/* ===========================
   HERO
   =========================== */
.hero {
    background: var(--blue) center/cover no-repeat;
    color: var(--white);
    padding: 3rem 0 5rem;
    text-align: center;
}
.hero-content { display: flex; flex-direction: column; align-items: center; }

.hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,.3);
    max-width: 820px;
}
@media (min-width: 768px) { .hero-title { font-size: 3.2rem; } }

.sales-badge {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(4px);
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
}

.video-container {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    border: 4px solid var(--white);
}

/* ===========================
   BOTÕES PRINCIPAIS (CTA)
   =========================== */
.cta-button {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    box-shadow: 0 8px 15px rgba(0,0,0,.2);
    transition: background .2s, transform .2s;
}
.cta-button:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===========================
   BOTÕES DOS PLANOS
   =========================== */
.btn-blue, .btn-green {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.15rem;
    /* sem transition aqui para não conflitar com a animação de glow */
}
.btn-blue         { background: var(--blue);       color: var(--white); }
.btn-blue:hover   { background: var(--blue-dark);  color: var(--white); }
.btn-green        { background: var(--green);      color: var(--white); }
.btn-green:hover  { background: var(--green-dark); color: var(--white); }

/* ===========================
   IMPRIMA EM CASA
   =========================== */
.imprima-em-casa { overflow: hidden; }
.imprima-bg {
    background: linear-gradient(#ebeff3, #f7f6f3);
    padding: 2rem 1.5rem 3rem;
    text-align: center;
}
.imprima-icons {
    display: flex; justify-content: center; gap: .5rem;
    font-size: 1.5rem; margin-bottom: 1rem;
}
.imprima-title { font-size: 1.9rem; font-weight: 800; max-width: 780px; margin: 0 auto; }
.imprima-image { width: 100%; }

/* ===========================
   DETALHES
   =========================== */
.details { padding: 4rem 0; background: var(--white); text-align: center; }

.section-title       { font-size: 1.9rem; color: var(--blue); margin-bottom: 1.5rem; font-weight: 800; }
.section-title.white { color: var(--white); }

.details-image    { max-width: 700px; margin: 0 auto 1.5rem; border-radius: var(--radius); }
.details-subtitle { font-size: 1.15rem; max-width: 580px; margin: 0 auto 3rem; color: var(--muted); }

.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius);
    border-bottom: 4px solid transparent;
    box-shadow: 0 4px 8px rgba(0,0,0,.06);
    transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.feature-card img   { max-height: 220px; margin: 0 auto 1rem; object-fit: contain; }
.feature-card h3    { font-size: 1.4rem; color: var(--blue); margin-bottom: .5rem; }

.bonus-title { font-size: 2.1rem; margin-bottom: 2rem; }
.bonus-image-wrapper { max-width: 860px; margin: 0 auto; }
.bonus-image { width: 100%; border-radius: var(--radius); }

/* ===========================
   O QUE VOCÊ VAI RECEBER
   =========================== */
.includes { background: var(--blue); padding: 4rem 0; text-align: center; color: var(--white); }

.check-list { list-style: none; max-width: 680px; margin: 2rem auto; text-align: left; }
.check-list li {
    font-size: 1.05rem; margin-bottom: 1rem;
    display: flex; align-items: center;
    background: rgba(255,255,255,.1);
    padding: 1rem; border-radius: 8px;
}
.check-list svg { width: 26px; height: 26px; color: var(--yellow); margin-right: 12px; flex-shrink: 0; }

/* ===========================
   DEPOIMENTOS
   =========================== */
.testimonials { padding: 4rem 0; background: var(--blue-dark, #00378b); text-align: center; }

.carousel-container {
    display: flex; align-items: center;
    max-width: 1000px; margin: 2rem auto 0;
    padding: 0 .5rem; gap: .5rem;
}
.testimonials-scroll {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem; scrollbar-width: none;
    scroll-behavior: smooth; flex: 1;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonials-scroll img {
    scroll-snap-align: center;
    flex: 0 0 85%; max-width: 340px;
    border-radius: var(--radius);
    box-shadow: 0 8px 15px rgba(0,0,0,.25);
}

.carousel-btn {
    background: rgba(255,255,255,.2); color: white;
    border: none; font-size: 1.4rem; cursor: pointer;
    border-radius: 50%; width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .2s;
}
.carousel-btn:hover { background: rgba(255,255,255,.4); }
@media (max-width: 767px) { .carousel-btn { display: none; } }

/* ===========================
   OFERTA / PREÇOS
   =========================== */
.pricing {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #00378b, var(--blue));
    color: var(--white);
    text-align: center;
}
.countdown-wrapper {
    display: inline-block;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: .8rem 2rem; margin-bottom: 2rem;
}
.countdown-wrapper p  { font-weight: 600; font-size: 1.05rem; margin-bottom: .2rem; }
.countdown-timer      { font-size: 2.4rem; font-weight: 800; font-family: var(--font-title); color: var(--yellow); line-height: 1; }

.pricing-title { font-size: 1.9rem; margin-bottom: 3rem; }

.pricing-cards { display: flex; flex-direction: column; gap: 2rem; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .pricing-cards { flex-direction: row; align-items: center; } }

.price-box {
    background: var(--white); color: var(--text);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    display: flex; flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    flex: 1; text-align: left;
    overflow: visible; /* garante que o glow dos botões não seja cortado */
}
.price-box.highlight { border: 4px solid var(--yellow); transform: scale(1.02); z-index: 2; }
@media (min-width: 768px) { .price-box.highlight { transform: scale(1.05); } }

.tag-special {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    background: var(--yellow); color: #000;
    font-weight: 800; padding: .35rem 1.5rem;
    border-radius: 50px; font-size: .9rem; white-space: nowrap;
}

.plan-name   { color: var(--blue); font-size: 1.35rem; font-weight: 800; text-align: center; margin-bottom: .5rem; }
.price-stack { text-align: center; margin-bottom: 1.5rem; }
.price-old   { font-size: 1rem; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.price       { font-size: 2.8rem; font-weight: 800; color: var(--green); line-height: 1; font-family: var(--font-title); }

.plan-features         { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.plan-features li      { font-size: .97rem; margin-bottom: .7rem; font-weight: 600; display: flex; align-items: flex-start; gap: .3rem; }
.plan-features li.disabled { color: var(--muted); text-decoration: line-through; opacity: .7; }

.safe-checkout { margin-top: 2rem; font-weight: 700; color: rgba(255,255,255,.9); font-size: 1.05rem; }

/* ===========================
   GARANTIA
   =========================== */
.trust-seal-section { padding: 3rem 0; background: var(--bg); }
.trust-seal  { max-width: 380px; display: inline-block; }
.guarantee-text {
    margin: 1.5rem auto 0; max-width: 580px;
    font-size: 1.05rem; line-height: 1.7;
    padding: 1.2rem 1.5rem;
    background: #e8f5e9;
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    text-align: left;
}

/* ===========================
   FAQ
   =========================== */
.faq { padding: 4rem 0; background: var(--white); }
.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item { border: 1px solid #ddd; border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }

.accordion-header {
    width: 100%; text-align: left;
    padding: 1.3rem 1.5rem;
    background: var(--bg); border: none; cursor: pointer;
    font-family: var(--font-title); font-size: 1.15rem; font-weight: 700; color: var(--blue);
    display: flex; justify-content: space-between; align-items: center;
    transition: background .2s;
    pointer-events: auto;
}
.accordion-header:hover { background: #e8ecf2; }

.acc-icon { font-size: 1.5rem; line-height: 1; transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.accordion-header.open .acc-icon { transform: rotate(45deg); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--white); }
.accordion-body p { padding: 1rem 1.5rem 1.5rem; color: var(--text); font-size: 1rem; }

.faq-cta { text-align: center; margin-top: 3rem; }

/* ===========================
   RODAPÉ
   =========================== */
.footer { background: #111; color: #fff; text-align: center; padding: 2.5rem 0; }
.footer-social { margin-top: 1rem; }
.instagram-link {
    display: inline-flex; align-items: center; gap: .5rem;
    color: white; text-decoration: none; font-weight: 700;
    opacity: .85; transition: opacity .2s, transform .2s;
}
.instagram-link:hover { opacity: 1; transform: scale(1.06); }

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
    position: fixed; right: 20px; bottom: 85px;
    width: 56px; height: 56px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 999; text-decoration: none;
    animation: wppPulse 2.5s infinite; transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@media (min-width: 768px) { .whatsapp-float { bottom: 30px; right: 30px; width: 60px; height: 60px; } }

/* ===========================
   BARRA CTA MOBILE FIXA
   =========================== */
.sticky-cta-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--green); z-index: 998;
    padding: .8rem 1rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,.2);
    transform: translateY(100%); transition: transform .3s ease;
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-btn {
    display: block; text-align: center;
    color: var(--white); font-family: var(--font-title);
    font-weight: 800; font-size: 1.1rem;
    text-decoration: none; text-transform: uppercase;
}
@media (min-width: 768px) { .sticky-cta-bar { display: none; } }

/* ===========================
   PROTEÇÃO DE CONTEÚDO
   =========================== */
body { -webkit-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; }
img  { -webkit-user-drag: none; }
