}

}

} } } } /* Reset Básico */ * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 2.0; /* Linhas bem separadas para leitura leve */
    color: #333;
    background-color: #fdfaf6;
    letter-spacing: 0.03em; /* Letras levemente separadas */
}

/* Header Fixo e Transparente ao fundo se necessário */ .main-header {
    background-color: #1a252f;
    color: #d4af37;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* Fixa no topo sem flutuar "solto" */
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-area h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 5px; /* Espaço entre letras no título */
    color: #d4af37;
    line-height: 1.2;
}

.logo-area p {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #bdc3c7;
}

/* Navegação */ .main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 3px;
    transition: 0.3s;
}

.main-nav ul li a:hover {
    color: #d4af37;
}

/* Container de Conteúdo - Ajustado para não ser tampado */ .content-container {
    max-width: 800px;
    margin: 40px auto; /* Espaço após o header */
    padding: 20px;
}

section {
    margin-bottom: 100px; /* Grande separação entre seções */
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 20px;
    margin-bottom: 40px; /* Mais espaço abaixo do título */
    color: #2c3e50;
    text-align: center;
}

/* Estilização de Citação */ .quote-box {
    background: #fff;
    border-left: 5px solid #d4af37;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}

.quote-box p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 2.2; /* Linha ainda mais solta na citação */
    margin-bottom: 15px;
}

.quote-box span {
    display: block;
    font-weight: bold;
    text-align: right;
    letter-spacing: 1px;
}

/* Grid das Vertentes */ .grid-vertentes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 4px;
    border-top: 3px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

/* Rodapé */ .main-footer {
    text-align: center;
    padding: 60px;
    background: #1a252f;
    color: #bdc3c7;
    letter-spacing: 6px;
    font-size: 0.7rem;
}

/* Responsividade */ @media (max-width: 600px) {
    .main-header {
    flex-direction: column;
    padding: 15px;
}

.main-nav {
    margin-top: 20px;
}

.main-nav ul li {
    margin: 0 10px;
}

/* Reset e Base */ * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Ajustado */ .main-header {
    background-color: #1a252f;
    color: #d4af37;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Conteúdo Principal */ .content-container {
    max-width: 800px;
    margin: 80px auto; /* Aumentei a distância do topo */
    padding: 0 25px;
}

p {
    margin-bottom: 35px; /* Grande separação entre parágrafos */
}

/* Citação */ .quote-box {
    background: #fff;
    border-left: 4px solid #d4af37;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.03);
}

/* Grid de Vertentes */ .grid-vertentes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #1a252f;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Mobile */ @media (max-width: 768px) {
    .main-header {
    flex-direction: column;
    padding: 20px;
}

/* Header */ .main-header {
    background-color: #1a252f;
    color: #d4af37;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Listas */ .tradicao-list li {
    margin-bottom: 20px;
    list-style-position: inside;
}