/* --- RESET & VARS --- */
:root {
    --bg-deep: #020202;      /* Preto Quase Absoluto */
    --bg-surface: #0a0a0a;   /* Cinza Muito Escuro para contraste */
    
    --cyan: #00E0FF;
    --purple: #aa00ff;
    --purple-grad: linear-gradient(90deg, #aa00ff 0%, #ff00aa 100%);
    
    --text-main: #ffffff;
    --text-muted: #b0b0b0; 
    
    --spacing-section: 60px; /* Distância padrão entre blocos */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem lateral */
}

/* --- ESTRUTURA (A mágica da separação) --- */
section, header {
    width: 100%;
    padding: var(--spacing-section) 0;
    position: relative;
}

/* O container segura o conteúdo no centro e protege as margens laterais */
.container {
    width: 90%;          /* 5% de margem em cada lado automaticamente */
    max-width: 650px;    /* Trava a largura em telas grandes */
    margin: 0 auto;      /* Centraliza */
}

/* --- SEPARADORES VISUAIS (NEON LINES) --- */
.neon-line-purple {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    opacity: 0.6;
}

.neon-line-cyan {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    opacity: 0.6;
}

/* --- TYPOGRAPHY --- */
h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

h2 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: var(--text-main);
    margin-bottom: 10px; 
}

p { margin-bottom: 20px; }

.subheadline { 
    color: var(--text-muted); 
    font-size: 1rem; 
    margin-bottom: 35px; 
    font-weight: 400;
}

.highlight-text {
    background: var(--purple-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HERO SECTION --- */
.hero {
    background: radial-gradient(circle at top, #150020 0%, var(--bg-deep) 70%);
    padding-top: 50px;
    padding-bottom: 60px;
    text-align: center;
}

.tag {
    border: 1px solid var(--cyan);
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    letter-spacing: 1px;
}

/* Video Box */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 35px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(170, 0, 255, 0.15);
}

.video-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

.play-button { 
    font-size: 3.5rem; 
    background: var(--purple-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px; 
    transition: 0.3s;
    filter: drop-shadow(0 0 10px rgba(170, 0, 255, 0.4));
}
.video-placeholder:hover .play-button { transform: scale(1.1); }

/* Frase Universal */
.universal-appeal {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #e5e5e5;
    border-left: 4px solid var(--cyan);
    text-align: left;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- BOTÕES (Estilo PCO) --- */
.btn-cta {
    display: block;
    width: 100%;
    background: var(--purple-grad);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(170, 0, 255, 0.4);
    text-align: center;
    margin-bottom: 15px;
    transition: transform 0.2s;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; /* Importante para o Widget */
}
.btn-cta:active { transform: scale(0.98); }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(170, 0, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(170, 0, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(170, 0, 255, 0); }
}

/* --- SEÇÃO 2: MECANISMO (Fundo Diferente) --- */
.bg-alt {
    background-color: var(--bg-surface); 
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.alert-box { 
    text-align: left; 
    margin-bottom: 30px; 
    padding-bottom: 15px;
    border-bottom: 1px dashed #333;
}
.alert-title {
    color: #ff4757;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
}
.alert-text { font-size: 1rem; color: #d4d4d4; }

/* Cards Exemplo */
.example-card {
    background: var(--bg-deep);
    border: 1px solid #222;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
}
.example-card:hover { border-color: var(--cyan); box-shadow: 0 0 15px rgba(0, 224, 255, 0.1); }

.example-icon {
    min-width: 45px; height: 45px;
    background: rgba(0, 224, 255, 0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
}
.example-content h4 { font-size: 1rem; color: white; margin-bottom: 5px; }
.example-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 0;}

.mechanism-footer {
    margin-top: 30px;
    padding: 15px;
    background: rgba(0, 224, 255, 0.03);
    border-radius: 8px;
    color: var(--cyan);
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 224, 255, 0.15);
}

/* --- SEÇÃO 3: MÉTODO --- */
.section-title { text-align: center; margin-bottom: 40px; }

.step-card {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #222;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--purple-grad);
}
.step-icon { font-size: 2rem; color: var(--cyan); margin-bottom: 15px; }
.step-subtitle { 
    color: #666; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 2px; font-weight: 700; display: block;
}

/* --- SEÇÃO 4: OFERTA --- */
.offer-section {
    padding-bottom: 80px;
    background: radial-gradient(circle at center, #110515 0%, #000 70%);
}

.offer-wrapper {
    background: #080808;
    border: 1px solid var(--cyan);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 224, 255, 0.08);
}

.anchor-text { color: #ccc; font-size: 0.95rem; margin-bottom: 8px; }
.anchor-text strong { color: #ff4757; } 
.anchor-text:nth-child(2) strong { color: var(--cyan); } 

.price-box { margin: 30px 0; }
.amount { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: white; 
    letter-spacing: -2px; 
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
    line-height: 1;
}

.bonuses {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}
.bonuses h4 { color: var(--cyan); margin-bottom: 15px; text-transform: uppercase; font-size: 0.9rem; font-weight: 700;}
.bonuses li { 
    margin-bottom: 15px; 
    font-size: 1rem; 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
}
.bonuses i { color: var(--cyan); margin-top: 5px; }

.bonus-text { display: flex; flex-direction: column; }
.bonus-text strong { color: white; font-weight: 600; }
.bonus-text span { color: #888; font-size: 0.9rem; }

.guarantee {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex; justify-content: center; align-items: center; gap: 8px;
}

footer { 
    text-align: center; 
    padding: 40px 20px; 
    color: #444; 
    font-size: 0.8rem; 
    border-top: 1px solid #111; 
}

@media (min-width: 768px) {
    .container { max-width: 750px; }
    h1 { font-size: 3rem; }
    section { padding: 80px 0; }
}

/* --- FAQ SECTION --- */
.faq-section {
    background-color: var(--bg-deep); /* Fundo preto para separar da oferta */
    padding-top: 60px;
    padding-bottom: 80px;
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}
.faq-title h2 { color: white; margin-bottom: 10px; }
.faq-title p { color: var(--text-muted); font-size: 0.95rem; }

.faq-wrapper {
    max-width: 600px; /* Largura menor para facilitar leitura */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Estilo da Caixa (Fechada) */
details {
    background: var(--bg-surface);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito ao passar o mouse ou abrir */
details:hover, details[open] {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.02);
}

/* O título da pergunta */
summary {
    list-style: none; /* Remove seta padrão feia */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: white;
}
summary::-webkit-details-marker { display: none; } /* Remove seta no Chrome */

/* O ícone de "+" animado */
summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--cyan);
    font-weight: 400;
    transition: transform 0.2s;
}

/* Quando aberto, o "+" vira "x" girando */
details[open] summary::after {
    transform: rotate(45deg);
    color: #ff4757;
}

/* A resposta */
.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}