/* --- Estilos Gerais --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Fundo escuro */
    color: #ffffff; /* Texto claro */
    line-height: 1.6;
}

/* --- Botão de Chamada para Ação (CTA) --- */
.cta-button {
    background-color: #27ae60; /* Verde vibrante para destaque */
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2ecc71;
}

h1, h2, h3 {
    text-align: center;
    font-weight: bold;
}

/* --- Seção 1: Primeira Dobra --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* --- Seção 2: Especialista --- */
.specialist-section {
    padding: 60px 20px;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
}

.specialist-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    gap: 40px;
}

.specialist-image-container {
    flex: 1;
    text-align: center;
}

.specialist-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.specialist-text {
    flex: 2;
}

.specialist-text h2 {
    font-size: 2.5em;
    text-align: left;
}

/* --- Seção 3: Benefícios --- */
.benefits-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1000px;
    gap: 40px;
}

.benefits-image-container {
    flex: 1;
    text-align: center;
}

.ebook-cover {
    max-width: 80%;
    height: auto;
}

.benefits-text {
    flex: 2;
}

.benefits-text h2 {
    font-size: 2.5em;
    text-align: left;
}

.benefits-text ul {
    list-style: none;
    padding: 0;
}

.benefits-text li {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.benefits-text .cta-button {
    margin-top: 20px;
}

.icon {
    margin-right: 10px;
}

/* --- Seção 4: Depoimentos --- */
.testimonials-section {
    padding: 80px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adicione esta linha */
}

.testimonial-card:hover {
    transform: translateY(-10px); /* Move o cartão 10px para cima */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Adiciona uma sombra para destaque */
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.testimonial-card span {
    font-weight: bold;
    color: #cccccc;
}

/* --- Seção 5: CTA Final --- */
.final-cta-section {
    background-color: #0d0d0d;
    padding: 60px 20px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2em;
    margin-bottom: 30px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 1em;
    color: #cccccc;
}

/* --- Seção 6: FAQ --- */
.faq-section {
    padding: 80px 20px;
    background-color: #121212;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-bottom: 10px;
    border-radius: 8px;
}

summary {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

details p {
    padding: 0 20px 20px;
}

/* --- Seção 7: Rodapé --- */
footer {
    background-color: #0d0d0d;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #cccccc;
}

/* --- Media Queries (Responsividade) --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2em;
    }
    .specialist-content, .benefits-content {
        flex-direction: column;
        text-align: center;
    }
    .specialist-text, .benefits-text, .specialist-image-container, .benefits-image-container {
        flex: auto;
        width: 100%;
        text-align: center;
    }
    .specialist-text h2, .benefits-text h2 {
        text-align: center;
    }
}