/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #4caf50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 12px 30px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.cta-button:hover {
    background-color: #e5533d;
}

/* Main content */
main {
    padding: 40px 20px;
}

.intro {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.intro-text {
    width: 50%;
}

.intro-image {
    width: 50%;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.benefits ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefits li {
    width: 30%;
    margin-bottom: 20px;
    position: relative;
}

.benefits img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ebook {
    text-align: center;
    margin-bottom: 40px;
}

.ebook-images {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.ebook-cover, .ebook-bonus {
    width: 45%;
}

.ebook img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Estilo específico para as imagens "pagamentoebook.jpg" e "ebook-capalink.jpg" */
.pagebook img {
    width: auto;  /* Tamanho da imagem "pagamentoebook.jpg" */
    height: auto; /* Tamanho da imagem "pagamentoebook.jpg" */
    border-radius: 15px; /* Bordas arredondadas */
}

.capalink img {
  /*  width: 700px;  /* Tamanho da imagem "ebook-capalink.jpg" */
    width: auto;
    height: auto;
  /*  height: 1100px; /* Tamanho da imagem "ebook-capalink.jpg" */ 
    border-radius: 15px; /* Bordas arredondadas */
}

.testimonials {
    background-color: #e8f4e5;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.testimonials .testimonial {
    margin-bottom: 20px;
}

.testimonials span {
    display: block;
    font-style: italic;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #4caf50;
}

/* Responsividade */
@media (max-width: 768px) {
    .intro {
        flex-direction: column;
        text-align: center;
    }

    .intro-text, .intro-image {
        width: 100%;
    }

    .benefits ul {
        flex-direction: column;
        align-items: center;
    }

    .benefits li {
        width: 80%;
        text-align: center;
    }

    .ebook-images {
        flex-direction: column;
    }

    .ebook-cover, .ebook-bonus {
        width: 80%;
    }
}
