/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f19; /* Fundo escuro premium */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Container Principal para centralizar o conteúdo */
.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

/* Estilos da Headline */
header {
    text-align: center;
    margin-bottom: 2rem;
}

header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Destaque na headline */
header h1 span {
    color: #00ff88; /* Verde chamativo */
}

header p {
    font-size: 1.1rem;
    color: #a0aec0;
}

/* Container do Vídeo Responsivo (Para o VTurb) */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    background: #1a202c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2d3748;
}

/* Estilo do Placeholder (Remover quando colocar o vídeo) */
.vturb-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #718096;
}

/* Seção do Botão de Compra */
.cta-section {
    display: none; /* Começa escondido. Aparece via JavaScript ou VTurb */
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out; /* Animação suave ao aparecer */
}

/* Botão de Alta Conversão */
.btn-buy {
    background: linear-gradient(135deg, #00C853, #64DD17);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite; /* Efeito de pulsar para chamar atenção */
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.6);
}

.secure-icons {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Rodapé */
footer {
    width: 100%;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    background-color: #05070b;
    border-top: 1px solid #1a202c;
    color: #4a5568;
    font-size: 0.85rem;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
}

.footer-links a:hover {
    color: #a0aec0;
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
