body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    font-size: 1rem; /* Ajustando o tamanho base da fonte */
}

h1, h2, h3 {
    font-size: 1.2rem; /* Menor em telas pequenas */
}

header {
    background-color: #BEAF88;
    text-align: center;
    padding: 20px;
}

header h1 {
    color: #fff;
    font-size: 2rem;
}

.ebooks-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap; /* Permite que os itens se movam para a linha seguinte em telas pequenas */
}

.ebook {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 45%; /* Isso vai deixar os eBooks lado a lado */
    box-sizing: border-box;
}

.btn-large {
    display:    block;
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: #BEAF88; /* Cor do botão */
    color: #fff; /* Cor do texto */
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin: 10px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content; /* O botão vai ter a largura do seu conteúdo */
}

.btn-large:hover {
    background-color: #A5956B; /* Cor ao passar o mouse */
    transform: scale(1.05); /* Aumenta ligeiramente o botão */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.ebook .btn-large {
    display: block;
    margin: 10px auto;
    width: fit-content;
    max-width: 100%; /* Garante que o botão não ultrapasse a largura da tela */
}

.ebook-summary {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.ebook h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #BEAF88;
}

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

.ebook ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.ebook h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #555;
}

.ebook p {
    font-size: 1rem;
    color: #333;
}

blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.divider {
    background-color: #BEAF88;
    width: 2px;
    height: auto;
    margin: 0 20px;
}

.guarantee {
    text-align: center;
    margin-top: 30px;
    padding: 0 15px;
}

.guarantee h3, .guarantee p {
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .ebook {
        width: 100%; /* Em telas menores, cada eBook ocupa 100% da largura */
    }

    body {
        font-size: 0.9rem; /* Fonte menor em telas pequenas */
    }
    
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .guarantee h3, .guarantee p {
        font-size: 0.9rem; /* Ajuste da fonte em telas pequenas */
    }
}