/* ============================================================
   FOLHA DE ESTILO PERSONALIZADA — ÚNICA Cadernos Acadêmicos
   Paleta: roxo e lilás frios | Tipografia: Georgia (serifada)
   ============================================================ */

/* ----- CORES PRINCIPAIS (variáveis de referência) -----------
   Roxo escuro:  #2e1a45
   Roxo médio:   #4a2c7a
   Roxo vibrante: #6b3fa0
   Lilás:         #8b5fc0
   Lilás claro:   #b499d4
   Lavanda:       #c9adde
   Cinza lilás:   #e1d4f0
   Fundo suave:   #f5f0fa
------------------------------------------------------------ */

/* =========================
   CORPO E TIPOGRAFIA
   ========================= */
body {
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    background: #f5f0fa;
    color: #2e1f3a;
}

/* Links */
a {
    color: #6b3fa0;
}
a:hover,
a:focus {
    color: #4a2c7a;
    text-decoration: underline;
}

/* =========================
   BARRA SUPERIOR (NAVBAR)
   ========================= */
.navbar {
    background: linear-gradient(135deg, #2e1a45 0%, #4a2c7a 100%);
    border-bottom: 2px solid #b499d4;
}
.navbar a,
.navbar .navbar-brand {
    color: #ffffff !important;
    font-family: 'Georgia', serif;
}
.navbar a:hover {
    color: #e1d4f0 !important;
}

/* =========================
   CABEÇALHO DA REVISTA
   ========================= */
.page-header {
    background: #ffffff;
    border-bottom: 3px solid #e1d4f0;
    padding: 2rem 0 1rem;
}
.page-header h1,
.page-header .journal-name {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2e1a45;
    font-family: 'Georgia', serif;
}
.page-header .issn {
    font-size: 0.85rem;
    color: #7b5ea7;
}

/* Logo */
.journal-logo img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(74, 30, 105, 0.15);
}

/* =========================
   BOTÕES
   ========================= */
.btn-primary {
    background: #6b3fa0;
    border-color: #4a2c7a;
}
.btn-primary:hover {
    background: #4a2c7a;
    border-color: #2e1a45;
}
.btn-default {
    border-color: #c9adde;
    color: #4a2c7a;
}
.btn-default:hover {
    background: #f5f0fa;
    border-color: #8b5fc0;
}

/* =========================
   TABELAS E LISTAS
   ========================= */
table th {
    background: #f5f0fa;
    color: #2e1a45;
    border-bottom: 2px solid #8b5fc0;
}
table td {
    border-color: #e1d4f0;
}

/* =========================
   RODAPÉ
   ========================= */
.footer {
    background: #2e1a45;
    color: #ffffff;
    padding: 2rem 0;
    font-size: 0.85rem;
    border-top: 4px solid #b499d4;
}
.footer a {
    color: #c9adde;
}
.footer a:hover {
    color: #ffffff;
}
.footer .license-text {
    font-style: italic;
    color: #e1d4f0;
}
.footer .indexers img {
    height: 28px;
    margin: 0 10px;
    filter: brightness(1.2);
}

/* =========================
   ARTIGOS (LISTAGEM)
   ========================= */
.article-summary {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(106, 44, 138, 0.08);
    border-left: 4px solid #b499d4;
}
.article-summary .title {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #2e1a45;
}
.article-summary .authors {
    color: #6b3fa0;
    font-size: 0.9rem;
}

/* =========================
   DETALHES DECORATIVOS
   ========================= */
/* Linha fina lilás para seções */
.section-title {
    border-left: 3px solid #b499d4;
    padding-left: 1rem;
    color: #3a1c5c;
    font-weight: bold;
}

/* Citação em destaque (para carta editorial) */
.highlight-quote {
    background: #f9f5fc;
    border: 1px solid #e1d4f0;
    border-radius: 12px;
    padding: 1.2rem;
    font-style: italic;
    color: #4a2c7a;
}

/* Badge de ISSN */
.issn-badge {
    background: #f9f5fc;
    border: 1px solid #e9ddf5;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    color: #4a2c7a;
    display: inline-block;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
}