/* --- RESET E CONFIGURAÇÕES GERAIS --- */
* { box-sizing:border-box; margin:0; padding:0; font-family:'Roboto', sans-serif;}
body { background:#0b031a; color:#fff; line-height:1.4; overflow-x: hidden; scroll-behavior: smooth;}
a { text-decoration:none; color:inherit; }

/* 1. OFERTA URGENTE - AGORA ALARANJADO VIBRANTE (MÁXIMO DESTAQUE) */
.urgent-offer { 
    background: linear-gradient(90deg, #ff8c00, #ff4500); /* Laranja Fogo */
    color: #000; /* Texto preto para contraste */
    text-align:center; padding:12px 0; 
    font-weight:900; font-size:1rem; position: sticky; top: 0; z-index: 1000; 
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5); 
    animation: urgentPulse 2s infinite;
}
@keyframes urgentPulse {
    0% { box-shadow: 0 4px 10px rgba(255, 140, 0, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(255, 140, 0, 0.8); }
    100% { box-shadow: 0 4px 10px rgba(255, 140, 0, 0.5); }
}

/* 2. NOTIFICAÇÃO DE VENDA */
#sale-notification {
    position: fixed; top: 20px; left: 20px; background: #069919; color: white;
    padding: 12px 20px; border-radius: 12px; display: flex; align-items: center;
    gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 10001;
    transform: translateY(-150%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#sale-notification.show { transform: translateY(0); }
.check-circle { 
    background: white; color: #9d4edd; width: 22px; height: 22px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-weight: bold; font-size: 12px; flex-shrink: 0; 
}

/* 3. HERO SECTION */
.hero { text-align: center; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; }
.top-badge { 
    background: rgba(255, 215, 0, 0.1); border: 1px solid #ffd700; color: #ffd700; 
    padding: 6px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: bold; 
    margin-bottom: 20px; display: inline-flex; align-items: center; gap: 5px; 
}
.hero h1 { font-size: 2.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 15px; max-width: 90%; }
.hero h1 .highlight { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.hero p.subtitle { font-size: 0.95rem; color: #b8b8ff; margin-bottom: 30px; max-width: 85%; }

.video-placeholder { 
    background: transparent; width: 100%; max-width: 320px; 
    border-radius: 20px; position: relative; margin-bottom: 30px; 
}

.hero-btns { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }

/* BOTÃO PRINCIPAL - AGORA GRADIENTE OURO/LARANJA 3D */
.btn-main { 
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%); 
    color: #000; 
    padding: 18px; 
    border-radius: 50px; 
    font-weight: 900; 
    font-size: 1.1rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    box-shadow: 0 6px 0 #b8860b, 0 8px 15px rgba(0,0,0,0.4); /* Efeito 3D da imagem */
    transition: all 0.2s ease;
    animation: pulseOro 2.5s infinite;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto; /* MARGEM ADICIONADA: 20px embaixo para afastar do próximo botão */
}

.btn-main:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #b8860b, 0 5px 10px rgba(0,0,0,0.4);
}
@keyframes pulseOro { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.btn-outline { 
    background: #160b2e; 
    border: 1px solid #3c096c; 
    color: #c8b6ff; 
    padding: 15px; 
    border-radius: 50px; 
    font-weight: bold; 
    font-size: 0.9rem; 
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto; /* Centralizado sem margem extra embaixo */
}

.hero-btns { 
    width: 100%; 
    max-width: 320px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; /* Garante um espaço mínimo de 10px entre eles caso a margem falhe */
    margin-bottom: 25px; 
}

.hero-checklist { font-size: 0.75rem; color: #b8b8ff; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.hero-checklist span::before { content: "✔"; color: #ffd700; margin-right: 4px; font-weight: bold; }

.subscriber-badge { 
    background: rgba(60, 9, 108, 0.4); border: 1px solid #5a189a; padding: 8px 15px; 
    border-radius: 50px; display: flex; align-items: center; gap: 10px; 
}
.avatar-group img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #9d4edd; margin-left: -8px; }

/* --- SEÇÃO DE BENEFÍCIOS - ANIMAÇÃO DE CARTUCHO --- */
.benefits-section { padding: 60px 20px; text-align: center; background: #0b031a; }
.benefits-section h2 { font-size: 2.2rem; color: #e0aaff; font-weight: 900; margin-bottom: 5px; }
.benefits-section .sub-title { color: #ffd700; margin-bottom: 40px; font-size: 0.9rem; font-weight: bold;}

.benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.benefit-card { 
    background: #160b2e; 
    padding: 25px 15px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid #3c096c; 
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animação suave */
    cursor: pointer;
}
/* Efeito Cartucho Selecionado */
.benefit-card:hover, .benefit-card:active {
    transform: scale(1.05) translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-card .icon-box { 
    background: rgba(255, 215, 0, 0.1); width: 45px; height: 45px; 
    border-radius: 12px; display: flex; align-items: center; 
    justify-content: center; margin-bottom: 15px; font-size: 1.3rem; 
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.benefit-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; line-height: 1.2; color: #e0aaff; }
.benefit-card p { font-size: 0.75rem; color: #b8b8ff; line-height: 1.4; }

/* 4. FEEDBACKS */
.feedback-carousel { padding: 60px 20px; background: #0f0524; text-align: center; overflow: hidden; }
.carousel-container { position: relative; max-width: 320px; margin: 0 auto; overflow: hidden; border-radius: 20px; cursor: grab; border: 4px solid #160b2e; }
.carousel-track { display: flex; transition: transform 0.4s ease-out; will-change: transform; }
.carousel-item { min-width: 100%; user-select: none; }
.carousel-item img { width: 100%; display: block; pointer-events: none; border-radius: 20px; object-fit: contain; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 8px; height: 8px; background: rgba(157, 78, 221, 0.3); border-radius: 50%; transition: 0.3s; }
.dot.active { background: #ffd700; width: 20px; border-radius: 10px; }

/* 5. PLANOS */
.pricing-section { padding: 60px 20px; text-align: center; background: #0b031a; }
.badge-2026 { background: #ffd700; color: #000; font-weight: bold; padding: 8px 20px; border-radius: 20px; display: inline-block; font-size: 0.8rem; margin-bottom: 15px; }
.pricing-section h2 { font-size: 2rem; color: #ffd700; margin-bottom: 40px; }
.plans-wrapper { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: flex-end; }
.plan-card { background: #080214; border-radius: 16px; padding: 40px 25px; width: 320px; text-align: center; box-shadow: 0 10px 25px rgba(0,0,0,0.5); border: 1px solid #3c096c; }
.plan-card .price { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.features-list { list-style: none; text-align: left; margin: 20px 0; }
.features-list li { margin: 12px 0; font-size: 0.85rem; display: flex; align-items: center; }
.features-list li::before { content: "✔"; color: #ffd700; margin-right: 10px; font-weight: bold; }
.locked-box { background: #2a2e45; border: 1px solid #444; border-radius: 10px; padding: 10px; color: #ffd700; font-size: 0.75rem; margin-bottom: 20px; }
.btn-gray { display: block; background: #6c757d; color: #fff; padding: 15px; border-radius: 10px; font-weight: bold; }

/* Plano VIP Destaque Ouro */
.plan-vip { background: linear-gradient(135deg, #3c096c, #160b2e); width: 340px; position: relative; z-index: 2; border: 2px solid #ffd700; box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
.vip-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #ffd700; color: #000; padding: 6px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; width: max-content; }
.btn-yellow { display: block; background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%); color: #000; padding: 18px; border-radius: 12px; font-weight: 900; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(255,197,36,0.4); border: none; cursor: pointer; }
.whatsapp-access { max-width: 450px; margin: 30px auto; border: 1px solid #00b050; border-radius: 15px; padding: 15px; display: flex; align-items: center; gap: 15px; background: rgba(0,176,80,0.05); text-align: left; }

/* 6. GARANTIA */
.garantia-section { padding: 60px 20px; text-align: center; }
.garantia-box { border: 2px dashed #3c096c; max-width: 600px; margin: 0 auto; padding: 30px; border-radius: 20px; background: rgba(60, 9, 108, 0.2); }

/* 7. FAQ Roxo com Amarelo */
.new-faq-section { background: #0b031a; padding: 60px 20px; text-align: center; }
.faq-title { font-size: 1.8rem; font-weight: 900; color: #e0aaff; margin-bottom: 40px; }
.faq-container { max-width: 600px; margin: 0 auto; text-align: left; }
.faq-row { border-bottom: 1px solid rgba(157, 78, 221, 0.2); }
.faq-row button { width: 100%; background: none; border: none; padding: 20px 0; color: #e0aaff; font-size: 0.95rem; font-weight: bold; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-row button:hover { color: #ffd700; } /* Destaque no hover */
.faq-row .answer { max-height: 0; overflow: hidden; transition: 0.3s ease; color: #b8b8ff; font-size: 0.9rem; }
.faq-row .answer p { padding-bottom: 20px; }
.faq-row .answer strong { color: #ffd700; } /* Destaque no texto */

/* SEÇÃO MARATONAR - Roxo */
.maratonar-cta { padding: 80px 20px; text-align: center; background: #0b031a; }
.maratonar-cta h2 { font-size: 2rem; font-weight: 900; margin-bottom: 30px; }
/* Reusando o estilo do botão principal ouro */
.btn-final { 
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%); color: #000; padding: 20px 40px; 
    border-radius: 50px; font-weight: 900; font-size: 1.1rem; display: inline-flex; 
    align-items: center; gap: 10px; box-shadow: 0 6px 0 #b8860b, 0 8px 15px rgba(0,0,0,0.4); text-decoration: none;
    animation: pulseOro 2.5s infinite;
}

/* --- MEDIA QUERIES (DESKTOP) --- */
@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr); 
    }
    .benefit-card {
        text-align: left;
        align-items: flex-start;
    }
    .benefit-card h3 { font-size: 1.1rem; }
    .benefit-card p { font-size: 0.85rem; }
}

@media(max-width: 768px) { 
    .plans-wrapper { flex-direction: column; align-items: center; } 
    .plan-card, .plan-vip { width: 95%; } 
}

/* MODAL PREMIUM ESTILO IMAGEM */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
    display: none; justify-content: center; align-items: center; z-index: 99999;
}

.modal-content-premium {
    background: #11081f; /* Roxo bem escuro */
    border: 1px solid #3d2b5e;
    border-radius: 20px;
    padding: 40px 20px 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(157, 78, 221, 0.2);
}

.modal-header .crown-icon {
    background: linear-gradient(135deg, #ff0055, #ff5e3a);
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.upgrade-text { color: #ff0055; font-size: 0.7rem; font-weight: 900; letter-spacing: 2px; }
.modal-header h2 { font-size: 1.8rem; color: #fff; margin-top: 5px; }

.price-box-premium {
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.old-price { color: #888; text-decoration: line-through; font-size: 0.8rem; }
.current-price { color: #fff; font-size: 2.5rem; font-weight: 900; margin: 5px 0; }
.access-info { color: #ccc; font-size: 0.75rem; }
.sparkle-icon { position: absolute; top: 10px; right: 15px; color: #ffd700; font-size: 1.2rem; }

.premium-features { list-style: none; text-align: left; margin-bottom: 25px; }
.premium-features li { 
    color: #eee; font-size: 0.85rem; margin-bottom: 10px; 
    display: flex; align-items: center; gap: 10px;
}
.premium-features li span { color: #ffd700; font-weight: bold; }

.special-condition {
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    color: #ffd700;
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn-upgrade {
    background: linear-gradient(to right, #e91e63, #f44336);
    color: #fff; padding: 18px; border-radius: 12px;
    display: block; font-weight: 900; font-size: 1rem;
    text-decoration: none; box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    margin-bottom: 12px;
}

.btn-skip {
    background: rgba(255,255,255,0.05);
    color: #888; padding: 12px; border-radius: 12px;
    display: block; font-size: 0.85rem; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.close-modal {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none; color: #555; font-size: 1.5rem; cursor: pointer;
}

.modal-badge {
    background: #ffd700;
    color: #000;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

.modal-content h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.modal-content p {
    color: #b8b8ff;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.modal-link-low {
    display: block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #555;
    text-decoration: underline;
}

/* --- AJUSTE DO VÍDEO E SOM (ADICIONADO) --- */
.video-placeholder { 
    width: 100%; 
    max-width: 320px; 
    margin: 0 auto 30px auto; 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    border: 2px solid #3c096c;
}

#unmute-overlay { 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    background: rgba(255, 140, 0, 0.9); 
    color: #000; 
    padding: 5px 12px; 
    border-radius: 50px; 
    font-size: 10px; 
    font-weight: 900; 
    z-index: 10; 
    pointer-events: none; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#vsl-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Animação para o aviso de som não passar batido */
@keyframes pulseUnmute {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

#unmute-overlay {
    animation: pulseUnmute 1.5s infinite;
}