/* Importação de fonte */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* =============================================
   VARIÁVEIS DE COR (TEMA ESCURO/VERMELHO)
   ============================================= */
:root {
    --primary-color: #dc3545; /* Vermelho principal */
    --primary-color-darken: #c82333; /* Vermelho mais escuro (hover) */
    --primary-color-shadow: rgba(220, 53, 69, 0.3);
    --primary-color-shadow-hover: rgba(220, 53, 69, 0.4);
    
    --bg-dark-primary: #222222; /* Fundo principal (bem escuro) */
    --bg-dark-secondary: #333333; /* Fundo das seções (um pouco mais claro) */
    
    --text-light: #f0f0f0; /* Texto principal (claro) */
    --text-medium: #bbbbbb; /* Texto secundário (cinza claro) */
    --text-dark: #333333; /* Texto para fundos claros */
    --text-gray: #6c757d; /* Cinza para meta-dados */
    
    --white-color: #ffffff;
    --border-radius: 8px;
    --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* =============================================
   CONFIGURAÇÕES GERAIS (BODY)
   ============================================= */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; 
}

/* Containers para centralizar conteúdo */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-small {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Estilo padrão das seções */
main section {
    background-color: var(--bg-dark-secondary);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 960px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}
h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 0;
    margin-bottom: 2rem;
}

/* =============================================
   1. CABEÇALHO (HERO) - (MODIFICADO)
   ============================================= */
.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    
    /* --- LINHAS ADICIONADAS --- */
    max-width: 960px; /* Define a largura máxima */
    margin: 3rem auto 2rem auto; /* Centraliza (topo, auto, fundo, auto) */
    border-radius: var(--border-radius); /* Arredonda as bordas */
    padding: 3rem 2rem; /* Mesmo padding das outras seções */
}

.hero-section h1 {
    font-size: 3rem;
    margin: 0 0 1rem 0;
}
.hero-section p {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* =============================================
   2. SEÇÃO DE VÍDEO - (MODIFICADO)
   ============================================= */
.video-section {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    /* margin-top: 3rem; <-- LINHA REMOVIDA */ 
    /* (O cabeçalho agora tem 'margin-bottom', cuidando do espaço) */
}
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   3. SEÇÃO DE BENEFÍCIOS
   ============================================= */
.benefits-section {
    text-align: center;
}
.benefits-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}
.benefits-section li {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.checkmark {
    color: #28a745; /* Verde para o checkmark */
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* =============================================
   5. SEÇÃO DE PREÇO E CTA
   ============================================= */
.price-section {
    text-align: center;
    background-color: var(--bg-dark-secondary);
}
.price-container {
    margin: 2rem auto 2.5rem auto;
    padding: 1.5rem;
    background-color: #fdfde2; /* Fundo amarelo claro (do original) */
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius);
    max-width: 350px;
}
.original-price {
    display: block; 
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-gray);
    text-decoration: line-through;
}
.sale-price-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-top: 0.5rem;
}
.sale-price-label-small {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.sale-price {
    display: block;
    font-size: 4rem; 
    font-weight: 700; 
    color: var(--primary-color);
    line-height: 1.1; 
    margin-top: 0.25rem;
}

.checkout-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px var(--primary-color-shadow);
    animation: pulse 2s infinite; /* Efeito de pulsar */
}
.checkout-button:hover {
    background-color: var(--primary-color-darken);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-color-shadow-hover);
    animation: none; /* Para de pulsar no hover */
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.security-badges {
    max-width: 400px;
    width: 100%;
    margin-top: 2rem;
}

/* =============================================
   6. SEÇÃO DE DEPOIMENTOS (NOVO DESIGN)
   ============================================= */
.testimonials-section {
    background-color: transparent; /* Seção sem fundo */
    box-shadow: none;
    padding: 0;
    max-width: 720px;
}
.testimonial-card {
    background-color: var(--white-color); /* <-- FUNDO BRANCO NO CARD */
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Sombra para destacar */
}
.testimonial-author {
    display: block;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark); /* <-- Texto escuro */
    margin-bottom: 0.5rem;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark); /* <-- Texto escuro */
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: normal; /* <-- Sem itálico */
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem; /* Espaço entre "Curtir" e "Responder" */
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}
.testimonial-footer .action-link {
    color: var(--text-gray);
    cursor: pointer;
    text-decoration: none;
}
.testimonial-footer .action-link:hover {
    text-decoration: underline;
}
.testimonial-footer .like-count {
    margin-left: auto; /* Joga o contador para a direita */
    color: var(--text-gray);
}


/* =============================================
   7. SEÇÃO DE GARANTIA
   ============================================= */
.guarantee-section {
    text-align: center;
}
.guarantee-seal {
    max-width: 200px;
    margin-bottom: 2rem;
}
.guarantee-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* =============================================
   8. SEÇÃO DE DÚVIDAS (FAQ)
   ============================================= */
.faq-section h2 {
    margin-bottom: 2.5rem;
}
.faq-item {
    background-color: var(--bg-dark-primary); /* Mais escuro */
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-color);
}
.faq-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-light);
    font-size: 1.3rem;
}
.faq-item p {
    margin: 0;
    color: var(--text-medium);
    font-weight: 300;
}

/* =============================================
   RODAPÉ
   ============================================= */
footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
    background-color: var(--bg-dark-primary);
    color: var(--text-medium);
}
footer a {
    color: var(--text-light);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* =============================================
   AJUSTES PARA CELULAR (RESPONSIVO)
   ============================================= */
@media (max-width: 768px) {
    main section {
        padding: 2rem 1.5rem;
    }
    .hero-section {
        /* Garante que o padding não fique excessivo no celular */
        padding: 2rem 1.5rem;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .sale-price {
        font-size: 3.2rem; 
    }
    .checkout-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
}