/**
 * ============================================================
 * BAR - Brazilian Administration Review
 * Tema 3 Colunas Responsivo - UNIFICADO
 * 
 * Desenvolvido por: SBM Tech
 * Data: Janeiro 2026
 * Versão: 3.0
 * 
 * Estrutura: Sidebar (20%) | Conteúdo (60%) | Menu (20%)
 * ============================================================
 */

/* ===========================================
   1. RESET E BASE
   =========================================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    background: #f5f5f5;
}

/* ===========================================
   2. HEADER - BANNER ÚNICO
   =========================================== */
.bar-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.bar-header-banner {
    width: 100%;
    text-align: center;
}

.bar-banner-link {
    display: block;
    width: 100%;
}

.bar-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ocultar elementos antigos do header */
.bar-top,
.navbar-default,
.navbar {
    display: none !important;
}

/* ===========================================
   3. ESTRUTURA DE 3 COLUNAS (20% | 60% | 20%)
   =========================================== */
.pkp_structure_page {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_structure_content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_structure_content > .container-fluid,
.pkp_structure_content > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container,
.container-fluid {
    max-width: 100% !important;
    width: 100% !important;
}

/* Row das 3 colunas */
.bar-three-col,
.pkp_structure_content .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    
    margin: 0 !important;
    padding: 0 !important;
    justify-content: flex-start !important;
}

/* Sidebar Esquerda - 20% */
#sidebar,
.pkp_structure_sidebar,
.bar-col-left {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    width: 20% !important;
    min-width: 200px !important;
    background: #fff;
    border-right: 1px solid #ddd;
    padding: 20px;
    order: 1 !important;
    box-sizing: border-box;
    margin: 0 !important;
}

/* Conteúdo Central - 60% */
.pkp_structure_main,
.bar-col-center {
    flex: 1 1 auto !important;
    background: #fff;
    padding: 20px !important;
    order: 2 !important;
    min-width: 0 !important;
    box-sizing: border-box;
    margin: 0 !important;
}

/* Menu Direito - 20% */
.bar-col-right {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    width: 20% !important;
    min-width: 200px !important;
    background: #fff !important;
    border-left: 1px solid #ddd !important;
    padding: 20px !important;
    order: 3 !important;
    text-align: right !important;
    box-sizing: border-box;
    margin: 0 !important;
}

/* ===========================================
   4. BLOCOS DA SIDEBAR ESQUERDA
   =========================================== */
.pkp_block {
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    margin-bottom: 15px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}

.pkp_block .title,
.panel-default > .panel-heading {
    color: #5d693b !important;
    background-color: #ecf0f1 !important;
    border-color: #ecf0f1 !important;
    padding: 10px 15px !important;
    border-bottom: 1px solid transparent !important;
    border-top-left-radius: 3px !important;
    border-top-right-radius: 3px !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
}

.pkp_block .content {
    padding: 15px !important;
}

.pkp_block a {
    color: #5d693b !important;
    display: block;
    padding: 5px 0;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pkp_block a:hover {
    color: #3d4728 !important;
}

.pkp_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkp_block li {
    margin-bottom: 3px;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
}

.pkp_block li:last-child {
    border-bottom: none;
}

/* ===========================================
   5. CONTEÚDO CENTRAL
   =========================================== */
.bar-col-center h1,
.pkp_structure_main h1 {
    color: #5d693b;
    font-size: 26px;
    margin-bottom: 20px;
}

.bar-col-center h2,
.pkp_structure_main h2 {
    color: #5d693b;
    font-size: 20px;
    margin-top: 25px;
}

.bar-col-center h3,
.pkp_structure_main h3 {
    color: #5d693b;
    font-size: 16px;
}

.bar-col-center a,
.pkp_structure_main a {
    color: #5d693b;
    transition: color 0.2s ease;
}

.bar-col-center a:hover,
.pkp_structure_main a:hover {
    color: #3d4728;
}

.bar-col-center p,
.pkp_structure_main p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===========================================
   6. BLOCOS PRINCIPAIS - COM ESTILO
   =========================================== */
.journal-description,
.current_issue,
.cmp_announcements {
    padding: 25px !important;
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
}

.current_issue .page-header {
    border-bottom: 2px solid #5d693b !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
}

.current_issue .page-header h2 {
    color: #5d693b !important;
    margin: 0 !important;
    font-size: 20px !important;
}

/* Remover margin-top da descrição */
.pkp_page_index .journal-description,
.pkp_page_index .additional_content {
    margin-top: 0 !important;
}

/* ===========================================
   7. MENU LATERAL DIREITO
   =========================================== */
.bar-menu-lateral {
    position: sticky;
    top: 20px;
    text-align: right;
}

.bar-menu-lateral h4 {
    color: #5d693b;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #5d693b;
    padding-bottom: 10px;
    margin-bottom: 0;
    margin-top: 0;
    text-align: right;
}

/* Menu Principal */
.bar-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.bar-nav-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.bar-nav-menu > li > a {
    display: block;
    padding: 12px 15px;
    color: #5d693b;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    text-align: right;
    transition: all 0.2s ease;
}

.bar-nav-menu > li > a:hover {
    background: #5d693b;
    color: #fff;
}

.bar-nav-menu > li.current > a {
    background: #5d693b;
    color: #fff;
}

/* Sub-menus */
.bar-nav-menu ul,
.bar-nav-menu .dropdown-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #f9f9f9 !important;
    text-align: right !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative !important;
    left: auto !important;
    right: 0 !important;
    float: none !important;
    min-width: 100% !important;
}

.bar-nav-menu ul li,
.bar-nav-menu .dropdown-menu li {
    border-bottom: 1px solid #eee !important;
    text-align: right !important;
}

.bar-nav-menu ul li:last-child,
.bar-nav-menu .dropdown-menu li:last-child {
    border-bottom: none !important;
}

.bar-nav-menu ul li a,
.bar-nav-menu .dropdown-menu li a {
    display: block !important;
    padding: 8px 15px 8px 10px !important;
    color: #5d693b !important;
    font-size: 11px !important;
    text-transform: none !important;
    text-decoration: none !important;
    text-align: right !important;
    transition: all 0.2s ease;
}

.bar-nav-menu ul li a:hover,
.bar-nav-menu .dropdown-menu li a:hover {
    background: #e8e8e8 !important;
    color: #3d4728 !important;
}

/* Sub-sub-menus (3º nível) */
.bar-nav-menu ul ul li a {
    padding-right: 25px !important;
    font-size: 10px !important;
}

/* ===========================================
   8. BLOCO KEYWORDS CLOUD
   =========================================== */
.block_Keywordcloud {
    margin-bottom: 25px;
}

.block_Keywordcloud .title {
    display: block;
    color: #5d693b !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ecf0f1 !important;
    padding: 10px 15px !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    margin-bottom: 0;
}

.block_Keywordcloud .content {
    background: #f9f9f9;
    border-radius: 0 0 4px 4px;
    padding: 10px;
}

.block_Keywordcloud svg {
    width: 100%;
    height: auto;
    min-height: 180px;
}

.block_Keywordcloud text {
    font-family: "Lato", serif !important;
    transition: opacity 0.2s ease;
}

.block_Keywordcloud text:hover {
    opacity: 1 !important;
}

/* ===========================================
   9. BOTÕES E BADGES
   =========================================== */
.btn,
.btn-primary,
.pkp_button {
    background: #5d693b !important;
    border: 2px solid #5d693b !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn:hover,
.btn-primary:hover,
.pkp_button:hover {
    background: #4a5530 !important;
    border-color: #4a5530 !important;
    color: #fff !important;
}

.label,
.badge {
    background: #5d693b !important;
    color: #fff !important;
}

/* ===========================================
   10. FOOTER
   =========================================== */
.bar-footer {
    background: #ecf0f1;
    width: 100%;
    clear: both;
}

.bar-footer-content {
    padding: 20px !important;
}

.bar-footer-content table {
    width: 100%;
    border-collapse: collapse;
}

.bar-footer-content td {
    vertical-align: top;
    padding: 10px;
}

.bar-footer-content td:first-child {
    text-align: left;
}

.bar-footer-content td:last-child {
    text-align: right;
}

.bar-footer-content a {
    color: #5d693b;
    transition: color 0.2s ease;
}

.bar-footer-content a:hover {
    color: #3d4728;
}

/* Informações de contato */
.footer-contact {
    line-height: 1.8;
    color: #555;
}

.footer-contact a {
    color: #5d693b !important;
    font-weight: 600;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #3d4728 !important;
    text-decoration: underline;
}

/* Licença Creative Commons */
.footer-license {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.footer-license img {
    vertical-align: middle;
    margin-right: 8px;
}

/* Indexadores do footer */
.footer-indexadores {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-indexadores a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.footer-indexadores a:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.footer-indexadores img {
    height: 80px !important;
    width: auto !important;
    max-width: none !important;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-indexadores a:hover img {
    opacity: 1;
}

/* Créditos do desenvolvedor */
.bar-footer-credits {
    background: #5d693b;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

.bar-footer-credits a {
    color: #cde6a0;
}

.bar-footer-credits a:hover {
    color: #fff;
}

footer[role="contentinfo"] {
    padding: 0 !important;
    margin-top: 0 !important;
}

/* ===========================================
   11. RESPONSIVO - TABLET (768px - 1199px)
   =========================================== */
@media (max-width: 1199px) and (min-width: 768px) {
    #sidebar,
    .pkp_structure_sidebar,
    .bar-col-left {
        flex: 0 0 22% !important;
        max-width: 22% !important;
        width: 22% !important;
        min-width: 180px;
        padding: 15px 10px;
    }
    
    .pkp_structure_main,
    .bar-col-center {
        padding: 20px 15px !important;
    }
    
    .bar-col-right {
        flex: 0 0 22% !important;
        max-width: 22% !important;
        width: 22% !important;
        min-width: 180px;
        padding: 15px 10px !important;
    }
    
    .bar-col-center h1 {
        font-size: 24px;
    }
    
    .footer-indexadores img {
        height: 80px !important;
    }
}

/* ===========================================
   12. RESPONSIVO - MOBILE (<768px)
   =========================================== */
@media (max-width: 767px) {
    /* Layout empilhado */
    .bar-three-col,
    .pkp_structure_content .row {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
    
    #sidebar,
    .pkp_structure_sidebar,
    .bar-col-left,
    .pkp_structure_main,
    .bar-col-center,
    .bar-col-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        border: none !important;
        border-bottom: 1px solid #ddd !important;
    }
    
    /* Ordem: Conteúdo primeiro, depois sidebars */
    .pkp_structure_main,
    .bar-col-center {
        order: 1 !important;
        padding: 20px 15px !important;
    }
    
    #sidebar,
    .pkp_structure_sidebar,
    .bar-col-left {
        order: 2 !important;
        padding: 20px 15px !important;
    }
    
    .bar-col-right {
        order: 3 !important;
        padding: 20px 15px !important;
        text-align: left !important;
    }
    
    /* Menu lateral em mobile */
    .bar-menu-lateral {
        position: relative;
        top: 0;
        text-align: left;
    }
    
    .bar-menu-lateral h4 {
        text-align: left;
    }
    
    .bar-nav-menu,
    .bar-nav-menu > li > a,
    .bar-nav-menu ul li a {
        text-align: left !important;
    }
    
    /* Tipografia */
    .bar-col-center h1 {
        font-size: 22px;
    }
    
    .bar-col-center h2 {
        font-size: 18px;
    }
    
    /* Footer */
    .bar-footer-content {
        padding: 20px 15px !important;
    }
    
    .bar-footer-content table,
    .bar-footer-content tbody,
    .bar-footer-content tr,
    .bar-footer-content td {
        display: block;
        width: 100%;
    }
    
    .bar-footer-content td {
        text-align: center !important;
        padding: 15px 10px;
    }
    
    .footer-indexadores {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-indexadores img {
        height: 80px !important;
    }
}

/* ===========================================
   13. RESPONSIVO - MOBILE PEQUENO (<480px)
   =========================================== */
@media (max-width: 480px) {
    .bar-col-center h1 {
        font-size: 20px;
    }
    
    .pkp_block .title,
    .panel-default > .panel-heading {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    
    .btn,
    .btn-primary,
    .pkp_button {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .footer-indexadores img {
        height: 80px !important;
    }
    
    .footer-indexadores {
        gap: 10px;
    }
}

/* ===========================================
   14. PRINT
   =========================================== */
@media print {
    #sidebar,
    .pkp_structure_sidebar,
    .bar-col-right,
    .bar-footer,
    .bar-header {
        display: none !important;
    }
    
    .pkp_structure_main,
    .bar-col-center {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .bar-three-col {
        display: block !important;
    }
}

/* ===========================================
   FIM DO CSS - SBM Tech © Jan 2026
   =========================================== */


/* ===========================================
   17. PÁGINA DE INDEXAÇÃO
   =========================================== */
.indexing-page {
    font-family: "Lato", sans-serif;
    color: #333;
    line-height: 1.7;
}

.indexing-page h2 {
    color: #5d693b;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #5d693b;
    padding-bottom: 10px;
    margin: 30px 0 20px 0;
}

.indexing-page h2:first-child {
    margin-top: 0;
}

.indexing-page p {
    text-align: justify;
    margin-bottom: 15px;
    color: #555;
}

.indexing-page a {
    color: #5d693b;
    text-decoration: none;
    font-weight: 600;
}

.indexing-page a:hover {
    color: #3d4728;
    text-decoration: underline;
}

/* Grid de logos */
.indexing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.indexing-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    min-height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.indexing-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: #5d693b;
}

.indexing-item img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.indexing-item:hover img {
    opacity: 1;
}

/* Seção de descrição */
.indexing-description {
    background: #f9f9f9;
    border-left: 4px solid #5d693b;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Sponsors */
.sponsors-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ecf0f1 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
}

.sponsors-section p {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 20px;
}

.sponsors-section img {
    max-width: 100%;
    height: auto;
}

/* Update note */
.update-note {
    text-align: right;
    font-style: italic;
    color: #888;
    font-size: 13px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsivo - Indexing Page */
@media (max-width: 768px) {
    .indexing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .indexing-item {
        padding: 15px;
        min-height: 80px;
    }
    
    .indexing-item img {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .indexing-grid {
        grid-template-columns: 1fr;
    }
    
    .indexing-page h2 {
        font-size: 18px;
    }
}

/* ===========================================
   18. BLOCO FOLLOW US - REDES SOCIAIS
   =========================================== */
.block_social {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.block_social .title {
    color: #5d693b !important;
    background-color: #ecf0f1 !important;
    padding: 10px 15px !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: right;
}

.block_social .content {
    padding: 15px;
}

.social-follow {
    text-align: center;
}

.social-follow-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-follow-icons a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #5d693b !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 20px;
    padding: 0 !important;
}

.social-follow-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-follow-icons a.social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.social-follow-icons a.social-linkedin:hover {
    background: #0077b5 !important;
}

.social-follow-icons a.social-twitter:hover {
    background: #000 !important;
}

.social-follow-icons i {
    color: #fff !important;
    line-height: 1;
}

/* ===========================================
   18. BLOCO FOLLOW US - REDES SOCIAIS
   =========================================== */
.block_social {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.block_social .title {
    color: #5d693b !important;
    background-color: #ecf0f1 !important;
    padding: 10px 15px !important;
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: right !important;
    border-bottom: 1px solid #ddd;
}

.block_social .content {
    padding: 15px;
    background: #fff;
}

.social-follow-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-follow-icons a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 24px;
    padding: 0 !important;
}

.social-follow-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Instagram - Gradiente colorido */
.social-follow-icons a.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #fff !important;
}

.social-follow-icons a.social-instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433) !important;
}

/* LinkedIn - Azul */
.social-follow-icons a.social-linkedin {
    background: #0077b5 !important;
    color: #fff !important;
}

.social-follow-icons a.social-linkedin:hover {
    background: #005885 !important;
}

/* X/Twitter - Preto */
.social-follow-icons a.social-twitter {
    background: #000 !important;
    color: #fff !important;
}

.social-follow-icons a.social-twitter:hover {
    background: #333 !important;
}

.social-follow-icons i {
    color: #fff !important;
    line-height: 1;
}

/* Responsivo */
@media (max-width: 767px) {
    .social-follow-icons {
        gap: 12px;
    }
    
    .social-follow-icons a {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}


/* ===========================================
   19. CENTRALIZAÇÃO DOS BLOCOS
   =========================================== */

/* Títulos dos blocos - centralizados */
.pkp_block .title,
.panel-default > .panel-heading,
.block_social .title {
    text-align: center !important;
}

/* Conteúdo dos blocos da sidebar esquerda - centralizado */
#sidebar .pkp_block .content,
.pkp_structure_sidebar .pkp_block .content,
.bar-col-left .pkp_block .content {
    text-align: center !important;
}

#sidebar .pkp_block ul,
.pkp_structure_sidebar .pkp_block ul,
.bar-col-left .pkp_block ul {
    text-align: center !important;
}

#sidebar .pkp_block li,
.pkp_structure_sidebar .pkp_block li,
.bar-col-left .pkp_block li {
    text-align: center !important;
}

#sidebar .pkp_block a,
.pkp_structure_sidebar .pkp_block a,
.bar-col-left .pkp_block a {
    text-align: center !important;
    display: block !important;
}

/* Keywords cloud - centralizado */
.block_Keywordcloud .content {
    text-align: center !important;
}

/* Current Issue - centralizado */
.block_browse .content,
.block_information .content {
    text-align: center !important;
}

/* Menu direito - títulos centralizados, itens à direita */
.bar-col-right .bar-menu-lateral h4 {
    text-align: center !important;
}

/* Follow Us - já está centralizado, manter */
.block_social .content {
    text-align: center !important;
}

/* ===========================================
   20. MENU HAMBURGER - MOBILE
   =========================================== */

/* Botão hamburger - escondido em desktop */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: #5d693b;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animação do X quando ativo */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile - mostrar hamburger e esconder menu */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Menu lateral direito - escondido por padrão */
    .bar-col-right {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 80% !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 9998 !important;
        overflow-y: auto !important;
        transition: right 0.3s ease !important;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15) !important;
        padding-top: 70px !important;
        border-left: 3px solid #5d693b !important;
    }
    
    /* Menu aberto */
    .bar-col-right.mobile-menu-open {
        right: 0 !important;
    }
    
    /* Overlay quando menu aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9997;
    }
    
    /* Ajustes do menu em mobile */
    .bar-col-right .bar-menu-lateral {
        position: relative;
        top: 0;
    }
    
    .bar-col-right .bar-menu-lateral h4 {
        text-align: center !important;
        padding: 15px;
        margin: 0;
        background: #ecf0f1;
    }
    
    .bar-col-right .bar-nav-menu > li > a {
        text-align: left !important;
        padding: 15px 20px !important;
        font-size: 14px !important;
    }
    
    .bar-col-right .bar-nav-menu ul li a {
        text-align: left !important;
        padding: 12px 20px 12px 35px !important;
    }
    
    /* Follow Us em mobile */
    .bar-col-right .block_social {
        margin: 20px 15px;
    }
    
    .bar-col-right .block_social .title {
        text-align: center !important;
    }
}

/* Tablet - ajuste intermediário */
@media (max-width: 991px) and (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ===========================================
   21. ABSTRACT NO SUMÁRIO
   =========================================== */
.obj_article_summary {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.obj_article_summary:last-child {
    border-bottom: none;
}

.obj_article_summary .title {
    font-size: 16px;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.obj_article_summary .title a {
    color: #5d693b !important;
    text-decoration: none;
}

.obj_article_summary .title a:hover {
    color: #3d4728 !important;
    text-decoration: underline;
}

.obj_article_summary .authors {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.obj_article_summary .pages {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.obj_article_summary .galleys {
    margin: 10px 0;
}

.obj_article_summary .galley-link {
    font-size: 12px;
    padding: 6px 15px;
}

/* Abstract styling */
.obj_article_summary .article-abstract {
    margin-top: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #5d693b;
    border-radius: 0 4px 4px 0;
}

.obj_article_summary .abstract-label {
    font-weight: 700;
    color: #5d693b;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.obj_article_summary .abstract-text {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 10px 0;
    text-align: justify;
}

.obj_article_summary .read-more {
    font-size: 12px;
    color: #5d693b !important;
    font-weight: 600;
    text-decoration: none;
}

.obj_article_summary .read-more:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 767px) {
    .obj_article_summary .article-abstract {
        padding: 12px;
    }
    
    .obj_article_summary .abstract-text {
        font-size: 12px;
    }
}
