/* * Estilos para a Página de Sugestão de Leitura (Tom Aconchegante/Intelectual)
 */

body {
    font-family: 'Times New Roman', serif; /* Fonte Clássica de livro */
    color: #444; 
    background-color: #fcf8f3; /* Cor de papel envelhecido suave */
    line-height: 1.7; 
    margin: 0;
    padding: 30px 20px;
    text-align: center; 
}

main, header, footer {
    max-width: 700px; 
    margin: 0 auto;
}

/* Títulos */
h1.titulo {
    font-size: 2.5em;
    color: #5d4037; /* Marrom escuro */
    margin-bottom: 5px;
}

.subtitulo {
    font-size: 1.2em;
    color: #795548; /* Marrom médio */
    font-style: italic;
    margin-bottom: 30px;
    border-bottom: 1px dashed #efebe9;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    color: #388e3c; /* Verde escuro (crescimento) */
    margin-top: 40px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.3em;
    color: #5d4037;
    margin-top: 25px;
}

/* Informações do Livro */
.titulo-livro {
    font-size: 2.2em;
    color: #1a237e; /* Azul Marinho Forte */
    margin-top: 20px;
    margin-bottom: 5px;
}

.autor {
    font-size: 1.1em;
    color: #795548;
    margin-bottom: 25px;
}

/* Parágrafos e Listas */
p {
    margin-bottom: 20px; 
    text-align: justify; 
    padding: 0 10px; 
}

.distincao-lista {
    list-style-type: none;
    text-align: left;
    margin: 20px auto;
    padding: 0;
    width: 90%;
}

.distincao-lista li {
    background-color: #fff8e1; /* Fundo amarelo muito claro para destaque */
    border-left: 4px solid #f9a825; /* Ouro/Laranja */
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Destaque (Inspiração) */
.inspiracao {
    background-color: #e8f5e9; /* Fundo verde claro */
    border-top: 2px solid #388e3c;
    border-bottom: 2px solid #388e3c;
    padding: 20px;
    margin: 35px auto;
    font-style: italic;
    font-weight: bold;
    width: 90%;
    text-align: center;
}

/* Rodapé */
footer {
    margin-top: 50px;
    padding-top: 10px;
    border-top: 1px solid #d7ccc8;
    color: #a1887f;
}