/* public_html/style.css - CSS da Página de Vendas */

/* Herda de global.css */

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(20, 20, 22, 0.88), rgba(20, 20, 22, 0.97)), url('imagens/Image_fx.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0 70px 0;
    text-align: center;
    border-bottom: 5px solid #007BFF;
    color: #ffffff;
}

.hero-image-wrapper { /* Se você decidir usar a imagem Image_fx.jpg como <img> em vez de background */
    max-width: 500px; /* Ajuste conforme o design final da imagem */
    margin: 0 auto 30px auto;
}
.hero-image { /* Para a <img src="imagens/Image_fx.jpg"> */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.hero-section h1 {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 0.6em;
    padding: 0 5px; /* Evitar que cole nas bordas em telas pequenas */
}

.hero-section .sub-headline {
    color: #d5d5d5;
    max-width: 750px;
    margin: 0 auto 2.5em auto;
    font-weight: 300;
    font-size: clamp(1em, 2.5vw, 1.2em);
    padding: 0 5px;
}

.hero-cta {
    font-size: clamp(1.1em, 3vw, 1.3em);
    padding: 16px 32px;
}

/* --- Seções Gerais --- */
section {
    padding: 50px 0;
    border-bottom: 1px solid #222222; /* Linha divisória mais sutil */
}
section:last-of-type { border-bottom: none; } /* Remove a borda da última seção */

section h2 { /* Título de cada seção */
    text-align: center;
    color: #3498db; /* Azul dos títulos */
    margin-bottom: 1.8em;
}

section h3 { /* Subtítulos dentro das seções */
    color: #E0E0E0; /* Cor mais clara para h3 */
    margin-top: 1.5em; /* Espaço acima se não for o primeiro elemento */
    margin-bottom: 1em;
}
section h3:first-child {
    margin-top: 0;
}


/* --- Seção de Conexão --- */
.connection-section p {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Seção de Apresentação do Produto --- */
.product-image-container {
    max-width: 300px;
    margin: 0 auto 30px auto;
}
.product-cover-image {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.product-cover-image:hover {
    transform: scale(1.03);
}

.audio-course-highlight {
    background-color: #1A1A1A; /* Fundo sutilmente diferente */
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #007BFF;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.audio-course-highlight h3 {
    color: #3498db;
    margin-top: 0;
    font-size: clamp(1.2em, 3vw, 1.4em);
}
.audio-course-highlight p {
    font-size: 1em;
    color: #b5b5b5;
}

.benefits-list {
    margin-top: 20px;
}
.benefits-list li {
    margin-bottom: 1em;
    padding-left: 35px;
    position: relative;
    font-size: 1em;
}
.benefits-list li::before {
    content: '✅';
    color: #00D1B2;
    position: absolute;
    left: 0;
    font-size: 1.3em;
    top: 1px;
}

/* --- Seção de Credibilidade --- */
.credibility-section ul.credibility-points {
    margin-bottom: 30px;
    padding-left: 0;
}
.credibility-section ul.credibility-points li {
    padding-left: 30px;
    margin-bottom: 0.8em;
    position: relative;
}
.credibility-section ul.credibility-points li::before {
    content: '⭐';
    color: #f1c40f;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.1em;
}
.credibility-section ul.credibility-points strong {
    color: #3498db;
}

/* Carrossel de Provas */
.credibility-section h3:nth-of-type(2) { /* "Conheça a Eficácia Comprovada:" */
    margin-top: 2.5em; /* Mais espaço antes do carrossel */
}
.proof-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto; /* Margem ajustada */
    overflow: hidden;
    border-radius: 10px;
    background-color: #1E1E1E;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.carousel-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}
.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 330px; /* Altura máxima para os prints */
    object-fit: contain; /* Para não cortar o texto importante */
    border-radius: 6px;
}
.carousel-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    color: white;
    font-weight: bold;
    font-size: 22px;
    background-color: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    user-select: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.05);
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.proof-caption {
    text-align: center;
    font-style: italic;
    font-size: 0.9em; /* Ajuste conforme necessário */
    color: #a0a0a0;  /* Cor mais sutil para a legenda */
    margin-top: 15px; /* Espaçamento acima da legenda */
    margin-bottom: 30px; /* Espaçamento abaixo, antes do próximo H3 */
    max-width: 600px; /* Para não ficar muito larga em telas grandes */
    margin-left: auto;
    margin-right: auto;
}

/* Lista de Módulos */
.credibility-section h3:last-of-type { /* "Como o Curso Funciona..." */
    margin-top: 2.5em;
}
.module-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr; /* Uma coluna em mobile */
    gap: 15px;
}
.module-list li {
    background-color: #252525; /* Fundo um pouco mais escuro */
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 4px solid #007BFF; /* Detalhe lateral */
}
.module-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.module-list li .module-emoji {
    font-size: 1.5em; /* Emoji maior */
    margin-right: 15px;
    line-height: 1.3;
    margin-top: 0; /* Ajuste para alinhar com o div de texto */
    color: #007BFF; /* Cor do emoji */
}
.module-list li .module-text { /* Div para o texto do módulo */
    flex: 1;
}
.module-list li strong {
    display: block;
    color: #EAEAEA;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 1.1em;
}
.module-list li .module-text > p { /* Descrição do módulo, se houver */
    font-size: 0.95em;
    color: #b0b0b0;
    margin-bottom: 0;
}

/* --- Seção da Oferta --- */
.offer-section {
    background-color: #181818; /* Fundo destacado */
    padding-top: 50px;
    padding-bottom: 60px;
}
.offer-includes-list {
    margin-bottom: 30px; /* Espaço antes da caixa de preço */
    text-align: center;
}
.offer-includes-list li {
    font-size: 1.2em;
    margin-bottom: 0.8em; /* Ajuste este valor conforme desejado (ex: 0.6em para menos espaço) */
}
.offer-includes-list strong {
    color: #EAEAEA;
}
.offer-includes-list .incalculable {
    color: #00D1B2;
    font-weight: 500;
    font-style: italic;
}

.price-box {
    background: linear-gradient(145deg, #232323, #1a1a1a);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px auto;
    max-width: 450px; /* Largura ajustada */
    border: 2px solid #007BFF;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}
.price-box .old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 1.2em;
    font-weight: 400;
}
.price-box .current-price {
    font-size: clamp(2.2em, 7vw, 3em);
    color: #00D1B2;
    font-weight: 700;
    margin: 0.1em 0 0.2em 0;
}
.price-box .current-price .price-tag {
    font-size: 0.5em;
    font-weight: 400;
    color: #c0c0c0;
    display: block;
    margin-top: -0.3em;
}
.price-box .installments {
    font-size: 1.15em;
    color: #E0E0E0;
    margin-bottom: 1.8em;
    font-weight: 500;
    background-color: rgba(0, 209, 178, 0.15);
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
}
.price-box .installments strong {
    color: #00D1B2;
    font-weight: 700;
}
.offer-cta { /* Botão dentro do price-box */
    width: 100%;
    font-size: clamp(1.2em, 3.5vw, 1.4em);
    padding: 18px;
    margin-bottom: 15px;
}
.secure-purchase-note {
    font-size: 0.9em;
    color: #b0b0b0;
    margin-bottom: 20px;
}
.payment-methods-image-container {
    max-width: 280px;
    margin: 0 auto;
}
.payment-methods-image {
    display: block; /* Para permitir margem automática e remover espaços extras */
    max-width: 100%; /* Garante que não ultrapasse o container */
    height: auto;   /* Mantém a proporção */
    margin-top: 10px; /* Um pequeno espaço acima, se necessário */
    /* Se a imagem dos cartões não for naturalmente larga, você pode definir uma largura aqui também */
    /* Exemplo: width: 280px; e remover o max-width: 100% se quiser um tamanho fixo menor que o container */
    /* A classe .payment-methods-image-container já limita a largura a 320px e centraliza, */
    /* então a imagem dentro dela com max-width: 100% deve se comportar bem. */
}

/* Seção de Garantia */
.guarantee-section {
    text-align: center;
    margin-top: 50px;
}
.guarantee-image-container {
    max-width: 150px; /* Tamanho ajustado */
    margin: 0 auto 20px auto;
}
.guarantee-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
    color: #c0c0c0;
}

/* --- Seção FAQ --- */
.faq-section {
    padding-bottom: 60px;
}
.faq-item {
    margin-bottom: 12px;
    border: 1px solid #282828; /* Borda mais sutil */
    border-radius: 8px;
    overflow: hidden;
    background-color: #1E1E1E; /* Fundo do item */
}
.faq-question {
    background-color: transparent; /* O fundo já está no .faq-item */
    color: #EAEAEA;
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover {
    background-color: #252525; /* Leve destaque no hover */
}
.faq-question::after {
    content: '▼';
    font-size: 0.9em;
    transition: transform 0.3s ease-in-out;
    color: #007BFF;
}
.faq-question.active::after {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    background-color: #1A1A1A; /* Fundo da resposta um pouco diferente */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding-top 0.35s ease-out, padding-bottom 0.35s ease-out;
}
.faq-answer p {
    padding: 0 0 18px 0;
    margin: 0;
    font-size: 0.95em;
    font-weight: 300;
    color: #b5b5b5;
}
.faq-question.active + .faq-answer {
    padding-top: 15px;
}

/* --- Rodapé --- */
.site-footer {
    background-color: #0a0a0a;
    color: #7f8c8d;
    text-align: center;
    padding: 35px 20px;
    font-size: 0.9em;
    border-top: 1px solid #222222;
}
.site-footer p {
    margin-bottom: 0.8em;
}
.site-footer a {
    color: #a0a0a0;
    margin: 0 8px;
}
.footer-cta {
    margin-bottom: 40px;
    font-size: 1.1em;
}
.site-footer .footer-cta + p { /* Seleciona o <p> que vem IMEDIATAMENTE APÓS o .footer-cta */
    margin-top: 40px; /* <<< AJUSTE ESTE VALOR para o espaçamento desejado */
    margin-bottom: 0.8em; /* Mantém a margem inferior que ele já tinha */
}
.footer-nav {
    margin-top: 10px;
}

/* Media Queries para Layouts Maiores */
@media (min-width: 769px) {
    .module-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste para desktop */
        gap: 20px;
    }
    .price-box {
        max-width: 480px;
    }
}
