@charset "UTF-8";

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

@font-face {
    font-family: 'Crimsom Pro';
    src: url(fontes/Crimson_Pro/static/CrimsonPro-Regular.ttf);
}
@font-face {
    font-family: 'Lora';
    src: url(fontes/Lora/static/Lora-Regular.ttf);
}
@font-face {
    font-family: 'Merriweather';
    src: url(fontes/Merriweather/static/Merriweather_24pt-Regular.ttf);
}
@font-face {
    font-family: 'Playfair Display';
    src: url(fontes/PlayfairDisplay/static/PlayfairDisplay-Regular.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
}


body {
    font-family: Georgia, "Times New Roman", serif;
    background-color: #0F1C26;
    color: #EAEAEA;
    line-height: 1.7;
}

.show{
    display: flex !important;
}

/* Fontes para títulos */
section h2, section h3, header h1 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    text-shadow: 1px 1px 20px rgba(255, 255, 255, 0.399);

}

/* Fontes para textos corridos */
body, section p, section li, .nota {
    font-family: Arial, Helvetica, sans-serif;
}


/* Header */
header {
    background-color: #142B3B;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #0A141B;
    font-family: Arial, Helvetica, sans-serif;
}

header h1 {
    color: #C9A44C;
    font-size: 2.6rem;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.399);

}

.subtitulo {
    margin-top: 12px;
    color: #C6D1D8;
    font-style: italic;
    text-align: center;
}

/* Navegação */
nav {
    background-color: #1E3A4C;
    padding: 15px;
    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
}

nav a {
    color: #7FAFCF;
    text-decoration: none;
    margin: 0 14px;
    font-weight: bold;
}

a#hamburguer {
    font-size: 25px;
    display: none;
}

nav a:hover {
    color: #C9A44C;
    
     
}

div#menu {
    justify-content: center;
    align-items: center;
}

.navlinks {
    position: relative;
    display: inline-block;
}

.navlinks::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;

    width: 100%;
    height: 2px;
    background: currentColor;

    transform: scaleX(0);
    transition: transform .2s;
}

.navlinks:hover::after {
    transform: scaleX(1);
}


.navlinks.page-active::after {
    transform: scaleX(1);
}

.navlinks.page-active::after, .page-active {
    color: #C9A44C;
}
/* Conteúdo */
main {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}



/* ===== Seções padrão ===== */
section {
    background-color: #1E3A4C; /* mesma cor do seu conteúdo */
    margin-bottom: 35px;
    border-left: 4px solid #C9A44C;
    padding: 50px;

    border-radius: 0px 10px 10px 0px;
}

/* Títulos principais de seção */
section h2 {
    color: #C9A44C;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Subtítulos dentro de seções */
section h3 {
    color: #C9A44C;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

/* Parágrafos */
section p {
    color: #EAEAEA;
    font-size: 1rem;
    line-height: 2em;
    text-align: justify;
    margin: 5px 0;
}


/* Listas dentro de seções */
section ul {
    margin: 15px 0 20px 20px;
}

section li {
    margin-bottom: 8px;
}

/* Nota ou observações */
section .nota {
    font-size: 0.9rem;
    color: #B0BCC2;
    font-style: italic;
    margin-top: 10px;
}
.nota {
    font-size: 0.9rem;
    color: #B0BCC2;
    font-style: italic;
}

/* Rodapé */
footer {
    display: block;
    background-color: #142B3B;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #C6D1D8;
    border-top: 1px solid #0A141B;
}

header, nav ,section, footer {
    box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.095);
}

/* Seção de abas do menu */
ul.abas-lista{
    list-style-type: none;

}
.aba-lista h3 {
    margin-bottom: 8px; /* deixa título e texto mais separados */
}
.aba-lista p{
    margin-bottom: 10px;
}

/* Artigos em Destaque */
.artigos-destaque {
    background-color: #1E3A4C;
    padding: 35px 20px;
    margin-bottom: 35px;
    border-left: 4px solid #C9A44C;
    border-radius: 8px; /* borda arredondada da seção */
}

.artigos-destaque h2 {
    color: #C9A44C;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.artigos-lista article {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid rgba(201, 164, 76, 0.3); /* borda dourada suave */
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;

    cursor: pointer;
}

/* Hover: leve destaque */
.artigos-lista article:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201, 164, 76, 0.25);
}

.artigos-lista article img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    height: 100%;
    
}

.artigo-conteudo h3 {
    color: #C9A44C;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.artigo-conteudo p {
    color: #EAEAEA;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.autor-artigo {
    color: #6f6f6f;        /* cinza discreto e elegante */
    font-size: 0.9rem;    /* um pouco menor que o texto normal */
    font-style: normal;  /* mantém leitura limpa */
}


ul li a {
    text-decoration: none;
    color: #C9A44C;
}