/* RESET E GLOBAIS */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
body { background-color: #0a0a0a; color: #f0f0f0; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: #fff; text-align: center; }
img { max-width: 100%; display: block; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; border-bottom: 1px solid #222; }

/* CORES E BOTÕES */
:root {
    --primary: #25D366; /* Verde Venda/Zap */
    --primary-hover: #1da851;
    --accent: #FF4757; /* Vermelho Urgência */
    --dark-bg: #111;
    --card-bg: #1e1e1e;
}

/* HEADER FIXO */
.sticky-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.95); border-bottom: 1px solid #333;
    padding: 10px 0; z-index: 1000;
}
.bar-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; }
.btn-small {
    background: var(--primary); color: #000; padding: 8px 15px;
    border-radius: 5px; text-decoration: none; font-weight: bold; font-size: 0.9rem;
}
.hide-mobile { display: block; font-size: 0.9rem; }

/* HERO SECTION */
.hero { padding-top: 100px; text-align: center; background: radial-gradient(circle at center, #222 0%, #000 100%); }
.tag-red { background: var(--accent); color: #fff; padding: 5px 10px; font-size: 0.8rem; font-weight: bold; border-radius: 3px; text-transform: uppercase; }
.hero h1 { font-size: 2.5rem; margin: 20px 0 10px; line-height: 1.1; text-transform: uppercase; color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.subheadline { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* VÍDEO PLAYER */
.video-wrapper {
    position: relative; width: 100%; max-width: 800px; margin: 0 auto;
    border: 2px solid #333; border-radius: 10px; overflow: hidden;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.1);
}
video { width: 100%; display: block; }
.sound-notice { margin-top: 10px; font-size: 0.9rem; color: #888; }

/* CTA PULSANTE */
.cta-container { margin-top: 40px; }
.btn-pulse {
    display: inline-block; background: var(--primary); color: #000;
    font-size: 1.2rem; font-weight: 900; padding: 20px 40px;
    border-radius: 50px; text-decoration: none; text-transform: uppercase;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite; width: 100%; max-width: 400px;
}
.security-text { margin-top: 10px; font-size: 0.8rem; color: #666; }

/* DIAGNÓSTICO (COMPARATIVO) */
.comparison-grid { display: grid; grid-template-columns: 1fr 50px 1fr; align-items: center; gap: 20px; margin-top: 40px; }
.card { background: var(--card-bg); padding: 20px; border-radius: 10px; text-align: center; position: relative; }
.card img { border-radius: 5px; margin-bottom: 15px; height: 250px; object-fit: cover; width: 100%; }
.card.bad { border: 1px solid #555; opacity: 0.7; }
.card.good { border: 2px solid var(--primary); box-shadow: 0 0 15px rgba(37,211,102,0.2); }
.status-icon { font-size: 2rem; margin-bottom: 10px; }
.vs-text { font-weight: 900; font-size: 1.5rem; color: #555; }
.card ul { list-style: none; text-align: left; padding-left: 10px; font-size: 0.9rem; color: #ccc; }
.card ul li { margin-bottom: 5px; }

/* BENEFÍCIOS & MÓDULOS */
.benefits-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; text-align: center; }
.benefit-item .icon { font-size: 3rem; margin-bottom: 10px; display: block; }
.showcase-img { margin-top: 50px; text-align: center; }
.showcase-img img { max-width: 400px; margin: 0 auto; border-radius: 10px; border: 1px solid #444; }

.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.module-card { background: #161616; padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary); }
.module-card .num { font-size: 2rem; font-weight: 900; color: #333; display: block; margin-bottom: 5px; }

/* OFERTA */
.offer-box {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid var(--primary); border-radius: 15px; padding: 40px 20px;
    max-width: 600px; margin: 0 auto; text-align: center;
}
.timer { font-size: 2rem; font-weight: 900; color: var(--accent); margin-bottom: 20px; font-family: monospace; }
.old-price { text-decoration: line-through; color: #777; font-size: 1.2rem; display: block; }
.new-price { color: var(--primary); font-size: 3rem; font-weight: 900; line-height: 1; display: block; }
.bonus-list { list-style: none; margin: 20px 0; text-align: left; background: #222; padding: 15px; border-radius: 5px; }
.bonus-list li { margin-bottom: 8px; border-bottom: 1px solid #333; padding-bottom: 5px; }

/* FAQ */
.faq-item { margin-bottom: 10px; border-bottom: 1px solid #333; }
.faq-btn { width: 100%; background: none; border: none; color: #fff; text-align: left; padding: 15px; font-size: 1rem; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; }
.faq-btn::after { content: '+'; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 15px; color: #bbb; }
.faq-content.active { max-height: 200px; padding-bottom: 15px; }

/* ANIMAÇÕES */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .comparison-grid { grid-template-columns: 1fr; }
    .vs-text { margin: 10px 0; transform: rotate(90deg); }
    .btn-pulse { padding: 15px 20px; font-size: 1rem; }
}