/* Reset básico e estilos globais */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

body {
    background-color: #000000;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px; /* Aumentado padding vertical geral */
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #81ff5b;
}

/* Cabeçalho com Vídeo de Fundo */
header {
    padding: 0; /* Removido padding para o container do vídeo ocupar tudo */
    text-align: left;
    position: relative;
    min-height: 80vh; /* Altura mínima aumentada */
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizar conteúdo horizontalmente também */
    overflow: hidden; /* Para conter o vídeo */
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Atrás do conteúdo e da sobreposição */
    pointer-events: none; /* Para não interferir com cliques */
}

.video-background-container iframe {
    width: 100vw; /* Cobrir toda a largura da viewport */
    height: 100vh; /* Cobrir toda a altura da viewport */
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Para cobrir a área */
}

header::before { /* Sobreposição escura */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75); /* Sobreposição um pouco mais escura */
    z-index: 1;
}

header .header-content {
    position: relative;
    z-index: 2;
    max-width: 700px; /* Aumentar largura máxima do conteúdo do header */
    text-align: center; /* Centralizar texto do header */
    padding: 40px 20px;
}

header .logo {
    max-width: 280px;
    margin: 0 auto 30px auto; /* Centralizar logo */
}

header h1 {
    font-size: 2.8em; /* Ajuste fino no tamanho */
    color: #81ff5b;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

header ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

header ul li {
    font-size: 1.15em;
    margin-bottom: 12px;
    color: #f0f0f0;
}

.cta-button {
    display: inline-block;
    background-color: #81ff5b;
    color: #000000;
    padding: 20px 40px;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 8px; /* Bordas mais arredondadas */
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 20px rgba(129, 255, 91, 0.4);
    border: none;
}

.cta-button:hover {
    background-color: #6ccf4a;
    transform: translateY(-3px) scale(1.02);
}

.microcopy-cta {
    font-size: 0.9em;
    color: #cccccc;
    margin-top: 15px;
}

/* Secções Principais */
main section {
    padding: 70px 0;
    text-align: center;
    background-color: #000000;
}

main section:nth-child(even) { /* Invertido para #testimonials ter fundo mais escuro */
    background-color: #0a0a0a;
}

main section h2 {
    font-size: 2.6em;
    color: #81ff5b;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Secção Features */
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

#features .feature-item {
    background-color: #1c1c1c;
    padding: 35px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

#features .feature-item img {
    margin-bottom: 20px;
    border-radius: 8px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

#features .feature-item h3 {
    font-size: 1.7em;
    color: #81ff5b;
    margin-bottom: 15px;
}

#features .feature-item p {
    font-size: 1.05em;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Secção Testimonials */
#testimonials {
    background-color: #000000; /* Fundo mais escuro para depoimentos */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.testimonial-item {
    background-color: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    text-align: center; /* Centralizar conteúdo do depoimento */
}

.testimonial-item img {
    max-width: 100%; /* Imagem do print ocupa a largura */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 3px solid #81ff5b; /* Borda verde na imagem do depoimento */
}

.testimonial-text {
    font-size: 1.1em;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1em;
    color: #81ff5b;
    font-weight: bold;
}

/* Secção Introduction */
#introduction h2 {
    font-size: 2.3em;
    color: #ffffff;
}
#introduction p {
    font-size: 1.25em;
    color: #b0b0b0;
    max-width: 850px;
    margin: 0 auto 25px;
    text-align: center;
    line-height: 1.7;
}

/* Secção Ebook Contents */
#ebook-contents .ebook-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    text-align: left;
}

#ebook-contents .ebook-image {
    flex: 1;
    min-width: 300px;
}

#ebook-contents .ebook-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#ebook-contents .ebook-list {
    flex: 1.5;
    min-width: 300px;
}

#ebook-contents .ebook-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

#ebook-contents .ebook-list ul li {
    font-size: 1.2em;
    margin-bottom: 18px;
    color: #b0b0b0;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

#ebook-contents .ebook-list ul li::before {
    content: "\2705";
    color: #81ff5b;
    margin-right: 12px;
    font-size: 1.3em;
    line-height: 1; /* Alinhar melhor o checkmark */
}

/* Secção Offer & Guarantee */
#offer-guarantee {
    background-color: #0a0a0a; /* Fundo ligeiramente diferente para destaque */
    padding: 70px 0;
}

.offer-guarantee-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch; /* MODIFICADO: Alinhar itens para mesma altura */
}

.offer-details, .guarantee-details {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #1c1c1c; /* Cor de fundo dos cards internos */
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    text-align: left;
    display: flex; /* ADICIONADO: Para controle interno do conteúdo */
    flex-direction: column; /* ADICIONADO: Para controle interno do conteúdo */
}

.offer-details {
    background-color: #0f2905; /* Verde escuro para a oferta, como no print */
    color: #ffffff;
}

.offer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.offer-details h3 {
    font-size: 1.8em;
    color: #ffffff; /* Cor do título da oferta */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.offer-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* ADICIONADO: Para empurrar o preço para baixo se necessário */
}

.offer-details ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #f0f0f0;
    display: flex;
    align-items: center;
}

.offer-details ul li .checkmark {
    color: #81ff5b;
    margin-right: 10px;
    font-size: 1.2em;
}

.price-section {
    margin-bottom: 30px;
    text-align: center;
    margin-top: auto; /* ADICIONADO: Para empurrar para baixo */
}

.original-price {
    font-size: 1.2em;
    color: #ff6b6b; /* Vermelho para preço original */
    text-decoration: line-through;
    margin-bottom: 5px;
}

.main-price-text {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.promo-price {
    font-size: 3.5em; /* Preço promocional bem destacado */
    color: #81ff5b;
    font-weight: bold;
    margin-bottom: 5px;
}

.promo-limited {
    font-size: 1em;
    color: #f0f0f0;
}

.offer-cta {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.security-icons-offer {
    display: flex;
    justify-content: space-around; /* Espaçar ícones */
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.security-icons-offer span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #b0b0b0;
}

.security-icons-offer img {
    width: auto;
    height: 24px;
    filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(80deg) brightness(150%) contrast(100%);
}

.guarantee-details {
    text-align: center; /* Centralizar conteúdo da garantia */
    background-color: #0f2905; /* Verde escuro para a garantia, como no print */
    justify-content: center; /* ADICIONADO: Centralizar conteúdo verticalmente */
}

.guarantee-seal {
    max-width: 250px; /* AUMENTADO: Tamanho do selo de garantia */
    margin: 0 auto 25px auto;
}

.guarantee-details h3 {
    font-size: 2em;
    color: #ffffff; /* Cor do título da garantia */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.guarantee-details p {
    font-size: 1.1em;
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* Secção FAQ */
#faq .faq-grid {
    display: grid;
    grid-template-columns: 1fr; /* Uma coluna para FAQ, mais focado */
    gap: 20px;
    max-width: 800px; /* Limitar largura da FAQ */
    margin: 0 auto;
}

#faq .faq-item {
    background-color: #1c1c1c;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #2a2a2a;
}

#faq .faq-item h3 {
    font-size: 1.5em;
    color: #81ff5b;
    margin-bottom: 12px;
}

#faq .faq-item p {
    font-size: 1.05em;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Secção Final CTA */
#final-cta h2 {
    font-size: 2.8em;
    line-height: 1.3;
}

#final-cta p {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-cta-final {
    padding: 22px 45px;
    font-size: 1.5em;
}

#final-cta .security-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

#final-cta .security-icons span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    color: #b0b0b0;
}

#final-cta .security-icons img {
    width: auto;
    height: 30px;
    filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(80deg) brightness(150%) contrast(100%);
}

/* Rodapé */
footer {
    background-color: #000000;
    color: #777777;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
}

footer .logo-footer {
    max-width: 180px;
    margin: 0 auto 20px;
    opacity: 0.6;
}

footer p {
    font-size: 0.9em;
    margin-bottom: 10px;
}

footer a {
    color: #aaaaaa;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #81ff5b;
}

/* Responsividade */
@media (max-width: 992px) {
    header h1 {
        font-size: 2.4em;
    }
    main section h2 {
        font-size: 2.3em;
    }
    #final-cta h2 {
        font-size: 2.4em;
    }
    .offer-details h3, .guarantee-details h3 {
        font-size: 1.6em;
    }
    .promo-price {
        font-size: 3em;
    }
    .guarantee-seal {
        max-width: 220px; /* Ajuste responsivo do selo */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    header {
        min-height: 70vh;
    }
    header .header-content {
        padding: 30px 15px;
    }
    header .logo {
        max-width: 220px;
    }
    header h1 {
        font-size: 2em;
    }
    header ul li {
        font-size: 1.05em;
    }
    .cta-button {
        font-size: 1.2em;
        padding: 18px 30px;
    }
    .main-cta-final {
        font-size: 1.3em;
        padding: 20px 35px;
    }
    main section {
        padding: 50px 0;
    }
    main section h2 {
        font-size: 2em;
        margin-bottom: 35px;
    }
    #features .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    #features .feature-item, .testimonial-item, #faq .faq-item, .offer-details, .guarantee-details {
        padding: 25px;
    }
    #ebook-contents .ebook-layout {
        flex-direction: column;
        gap: 30px;
    }
    #final-cta h2 {
        font-size: 2.2em;
    }
    #final-cta p {
        font-size: 1.2em;
    }
    .offer-guarantee-container {
        flex-direction: column; /* Empilhar oferta e garantia em mobile */
    }
    .promo-price {
        font-size: 2.8em;
    }
    .guarantee-seal {
        max-width: 200px; /* Ajuste responsivo do selo */
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.7em;
    }
    header ul li {
        font-size: 1em;
    }
    main section h2 {
        font-size: 1.8em;
    }
    #features .feature-item h3, .testimonial-author, .offer-details h3, .guarantee-details h3 {
        font-size: 1.4em;
    }
    #faq .faq-item h3 {
        font-size: 1.3em;
    }
    .cta-button {
        width: 100%; /* Botões ocupam largura total */
        font-size: 1.1em;
        padding: 15px 20px;
    }
    #final-cta .security-icons {
        gap: 15px;
        flex-direction: column; /* Ícones empilhados */
    }
    #final-cta .security-icons span {
        font-size: 0.9em;
    }
    #final-cta h2 {
        font-size: 1.9em;
    }
    .promo-price {
        font-size: 2.5em;
    }
    .guarantee-seal {
        max-width: 180px; /* Ajuste responsivo do selo */
    }
}

