/*
Theme Name: O Quarto Poder 
Author: Joceilton Gomes
Description: Tema personalizado baseado no layout do portal O Quarto Poder.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: o4poder
*/
/*
 * =================================================================
 * DEFINIÇÃO DA FAMÍLIA DE FONTES "INTER" COM TODOS OS PESOS
 * =================================================================
 */

/* Inter Thin - Peso 100 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Thin.ttf') format('truetype');
}

/* Inter ExtraLight - Peso 200 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-ExtraLight.ttf') format('truetype');
}

/* Inter Light - Peso 300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Light.ttf') format('truetype');
}

/* Inter Regular - Peso 400 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Regular.ttf') format('truetype');
}

/* Inter Medium - Peso 500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Medium.ttf') format('truetype');
}

/* Inter SemiBold - Peso 600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-SemiBold.ttf') format('truetype');
}

/* Inter Bold - Peso 700 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Bold.ttf') format('truetype');
}

/* Inter ExtraBold - Peso 800 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-ExtraBold.ttf') format('truetype');
}

/* Inter Black - Peso 900 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/static/Inter_18pt-Black.ttf') format('truetype');
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Definindo a fonte padrão para o corpo do texto */
        body {
        font-family: 'Inter', sans-serif;
        font-weight: 400; /* Usa o 'Inter-Regular' */
        }

        /* Um título principal bem pesado */
        h1 {
        font-weight: 900; /* Usa o 'Inter-Black' */
        }

        /* Um subtítulo mais leve */
        .subtitulo {
        font-weight: 300; /* Usa o 'Inter-Light' */
        }

        /* Um texto em negrito normal */
        strong, b {
        font-weight: 700; /* Usa o 'Inter-Bold' */
        }


        /* Barra Superior Branca */
        .top-header {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            padding: 8px 0;
            position: relative;
            z-index: 1001;
        }

        /* Remover completamente no mobile - sem espaço */
        @media (max-width: 991px) {
            .top-header {
                display: none !important;
                height: 0 !important;
                padding: 0 !important;
                margin: 0 !important;
                overflow: hidden;
            }
        }

        /* Header Principal Vermelho - Sticky apenas no scroll */
        .main-header {
            background-color: #dc2626;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        /* Adicionar sombra quando sticky está ativo */
        .main-header.scrolled {
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        /* Garantir que não há espaço extra no mobile */
        @media (max-width: 991px) {
            body {
                padding-top: 0 !important;
                margin-top: 0 !important;
            }
            
            .main-header {
                margin-top: 0 !important;
            }
        }

        .main-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .logo-image {
            height: 60px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .logo-text {
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 200;
            margin-right: 8px;
        }

        .logo-brasil {
            color: #ffffff;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            font-size: 30px;
        }

        .top-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .top-links a {
            color: #374151;
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
        }

        .top-links a:hover {
            color: #1e3a8a;
        }

        .top-links .separator {
            color: #d1d5db;
            font-weight: 300;
        }

        .anniversary-badge {
            background-color: #fbbf24;
            color: #dc2626;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            margin-left: 10px;
            text-align: center;
            line-height: 1.1;
        }

        .accessibility-controls {
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 15px;
            color: white;
            font-size: 13px;
        }

        .font-controls {
            display: flex;
            gap: 5px;
        }

        .font-controls button {
            background: none;
            border: none;
            color: white;
            font-size: 14px;
            cursor: pointer;
            font-weight: 600;
        }

        .lang-selector {
            position: relative;
        }

        .lang-btn {
            background: none;
            border: none;
            color: white;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        /* Menu de Navegação Desktop - Tornar responsivo */
        /* Menu de Navegação - Responsivo para Desktop e Mobile */
        .nav-menu {
            background-color: #d3110a;
            padding: 0;
            border-top: 2px solid #fbbf24;
        }

        .nav-menu .navbar-nav {
            justify-content: space-between;
            width: 100%;
        }

        .nav-menu .nav-link {
            color: #ffffff !important;
            padding: 15px 12px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-right: 1px solid #374151;
            text-align: center;
        }

        .nav-menu .nav-link:last-child {
            border-right: none;
        }

        .nav-menu .nav-link:hover {
            background-color: #fbbf24;
            color: #1f2937 !important;
        }

        /* Responsividade do Menu */
        @media (max-width: 1200px) {
            .nav-menu .nav-link {
                font-size: 11px;
                padding: 15px 8px;
            }
        }

        @media (max-width: 991px) {
            .nav-menu {
                display: block !important;
            }
            
            .nav-menu .navbar-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-menu .nav-item {
                flex: 1;
                min-width: calc(33.333% - 2px);
            }
            
            .nav-menu .nav-link {
                font-size: 10px;
                padding: 12px 6px;
                border-right: 1px solid #374151;
                border-bottom: 1px solid #374151;
            }
        }

        @media (max-width: 768px) {
            .nav-menu .nav-item {
                min-width: calc(50% - 1px);
            }
            
            .nav-menu .nav-link {
                font-size: 9px;
                padding: 10px 4px;
            }
        }

        @media (max-width: 576px) {
            .nav-menu {
                background-color: #d3110a;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }
            
            .nav-menu .navbar-nav {
                flex-wrap: nowrap;
                justify-content: flex-start;
                width: max-content;
            }
            
            .nav-menu .nav-item {
                flex: none;
                min-width: auto;
            }
            
            .nav-menu .nav-link {
                font-size: 10px;
                padding: 12px 15px;
                white-space: nowrap;
                border-right: 1px solid #374151;
                border-bottom: none;
            }
        }

        /* Responsividade aprimorada */
        @media (max-width: 991px) {
            .nav-menu {
                display: block !important;
                background-color: #d3110a;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
            }
            
            .nav-menu .navbar-nav {
                flex-wrap: nowrap;
                justify-content: flex-start;
                width: max-content;
            }
            
            .nav-menu .nav-item {
                flex: none;
                min-width: auto;
            }
            
            .nav-menu .nav-link {
                font-size: 11px;
                padding: 12px 15px;
                white-space: nowrap;
                border-right: 1px solid #374151;
                border-bottom: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: block !important;
            }
            
            .nav-menu .nav-link {
                font-size: 10px;
                padding: 10px 12px;
            }
            
            .offcanvas {
                width: 85% !important;
                max-width: 300px;
            }
            
            .offcanvas-body .nav-link {
                padding: 16px 20px;
                font-size: 13px;
            }
            
            .offcanvas-body .nav-link.secondary {
                padding-left: 30px;
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .nav-menu {
                display: block !important;
                background-color: #d3110a;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
                padding: 0;
            }
            
            .nav-menu .navbar-nav {
                flex-wrap: nowrap;
                justify-content: flex-start;
                width: max-content;
                margin: 0;
            }
            
            .nav-menu .nav-link {
                font-size: 9px;
                padding: 8px 10px;
                white-space: nowrap;
                border-right: 1px solid #374151;
                border-bottom: none;
                min-width: 80px;
                text-align: center;
            }
            
            .top-links {
                flex-direction: column;
                gap: 5px;
            }

            .accessibility-controls {
                justify-content: center;
                margin-top: 10px;
            }

            .logo-image {
                height: 30px;
                max-width: 140px;
            }

            .offcanvas {
                width: 90% !important;
            }
            
            .offcanvas-body .nav-link {
                padding: 14px 18px;
            }
        }
        @media (max-width: 1200px) {
            .top-links {
                gap: 10px;
            }
            
            .top-links a {
                font-size: 12px;
            }
        }

        @media (max-width: 991px) {
            .top-header {
                text-align: center;
                padding: 10px 0;
            }
            
            .top-links {
                flex-wrap: wrap;
                gap: 8px;
            }

            .social-icons {
                justify-content: center;
                margin-top: 8px;
            }

            .main-logo {
                margin: 10px 0;
                justify-content: center;
            }

            .logo-image {
                height: 40px;
                max-width: 180px;
            }

            .logo-text {
                font-size: 20px;
            }

            .anniversary-badge {
                width: 38px;
                height: 38px;
                font-size: 9px;
                color: #dc2626;
            }

            .nav-menu .nav-link {
                padding: 12px 15px;
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            .top-links a {
                font-size: 11px;
            }

            .logo-image {
                height: 35px;
                max-width: 160px;
            }

            .logo-text {
                font-size: 18px;
            }

            .nav-menu {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .top-links {
                flex-direction: column;
                gap: 5px;
            }

            .accessibility-controls {
                justify-content: center;
                margin-top: 10px;
            }

            .logo-image {
                height: 30px;
                max-width: 140px;
            }

            body {
                padding-top: 60px;
            }
        }

        /* Navbar Toggler */
        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Offcanvas Mobile Menu */
        .offcanvas-header {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body .nav-link {
            color: white !important;
            padding: 15px 20px;
            border-bottom: 1px solid #b91c1c;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .offcanvas-body .nav-link:hover {
            background-color: #b91c1c;
            color: #fbbf24 !important;
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        /* Personalização da Barra de Rolagem - Todo o Site */
        /* Webkit browsers (Chrome, Safari, Edge) */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #dc2626;
            border-radius: 3px;
            transition: background 0.3s ease;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #b91c1c;
        }
        
        ::-webkit-scrollbar-corner {
            background: #f1f1f1;
        }
        
        /* Firefox */
        html {
            scrollbar-width: thin;
            scrollbar-color: #dc2626 #f1f1f1;
        }
        
        /* Barra de rolagem específica para o menu horizontal */
        .nav-menu {
            scrollbar-width: thin;
            scrollbar-color: #dc2626 #1f2937;
        }
        
        .nav-menu::-webkit-scrollbar {
            height: 4px;
        }
        
        .nav-menu::-webkit-scrollbar-track {
            background: #1f2937;
            border-radius: 2px;
        }
        
        .nav-menu::-webkit-scrollbar-thumb {
            background: #dc2626;
            border-radius: 2px;
        }
        
        .nav-menu::-webkit-scrollbar-thumb:hover {
            background: #fbbf24;
        }
        
        /* Barra de rolagem para offcanvas mobile */
        .offcanvas-body {
            scrollbar-width: thin;
            scrollbar-color: #fbbf24 #dc2626;
        }
        
        .offcanvas-body::-webkit-scrollbar {
            width: 4px;
        }
        
        .offcanvas-body::-webkit-scrollbar-track {
            background: #dc2626;
            border-radius: 2px;
        }
        
        .offcanvas-body::-webkit-scrollbar-thumb {
            background: #fbbf24;
            border-radius: 2px;
        }
        
        .offcanvas-body::-webkit-scrollbar-thumb:hover {
            background: #f59e0b;
        }
        
        /* Suavização geral da rolagem */
        html {
            scroll-behavior: smooth;
        }
        
        /* Para dispositivos móveis - rolagem suave */
        * {
            -webkit-overflow-scrolling: touch;
        }
            .nav-menu .nav-link {
                font-size: 13px;
                padding: 12px 15px;
                white-space: nowrap;
                border-right: 1px solid #374151;
                border-bottom: none;
            }
        
        @media (max-width: 1200px) {
            .top-links {
                gap: 10px;
            }
            
            .top-links a {
                font-size: 12px;
            }
        }

        @media (max-width: 991px) {
            .top-header {
                text-align: center;
                padding: 10px 0;
            }
            
            .top-links {
                flex-wrap: wrap;
                gap: 8px;
            }

            .social-icons {
                justify-content: center;
                margin-top: 8px;
            }

            .main-logo {
                margin: 10px 0;
                justify-content: center;
            }

            .logo-image {
                height: 40px;
                max-width: 180px;
            }

            .logo-text {
                font-size: 20px;
            }

            .anniversary-badge {
                width: 38px;
                height: 38px;
                font-size: 9px;
                color: #dc2626;
            }

            .nav-menu .nav-link {
                padding: 12px 15px;
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            .top-links a {
                font-size: 11px;
            }

            .logo-image {
                height: 35px;
                max-width: 160px;
            }

            .logo-text {
                font-size: 18px;
            }

            .nav-menu {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .top-links {
                flex-direction: column;
                gap: 5px;
            }

            .accessibility-controls {
                justify-content: center;
                margin-top: 10px;
            }

            .logo-image {
                height: 30px;
                max-width: 140px;
            }

            body {
                padding-top: 60px;
            }
        }

        /* Navbar Toggler */
        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Offcanvas Mobile Menu */
        .offcanvas-header {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body .nav-link {
            color: white !important;
            padding: 15px 20px;
            border-bottom: 1px solid #b91c1c;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .offcanvas-body .nav-link:hover {
            background-color: #b91c1c;
            color: #fbbf24 !important;
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        /* Search Button */
        .search-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            padding: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .search-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        /* DateTime Display - Layout Horizontal */
        .datetime-display {
            color: white;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 400;
        }

        .date-time {
            text-align: left;
            line-height: 1.2;
        }

        .current-date {
            font-size: 15px;
            font-weight: 400;
            font-family: 'Inter', sans-serif;
            opacity: 0.9;
        }

        .separator {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
            font-family: 'Inter', sans-serif;
        }

        .current-time {
            font-size: 15px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.5px;
        }

        /**************************Divider espaço *****************************/

        .b-example-divider {
            width: 100%;
            height: 3rem;
            background-color: #0000001a;
            border: solid rgba(0,0,0,.15);
                border-top-width: medium;
                border-right-width: medium;
                border-bottom-width: medium;
                border-left-width: medium;
            border-width: 1px 0;
            box-shadow: inset 0 .5em 1.5em #0000001a,inset 0 .125em .5em #00000026;
            }

/* Language Selector Dropdown */
.lang-selector .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-selector .dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-selector .dropdown-toggle:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-selector .dropdown-toggle::after {
    display: none;
}

.lang-dropdown {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 180px;
    margin-top: 8px;
}

.lang-dropdown .dropdown-item {
    padding: 10px 16px;
    color: #374151;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.lang-dropdown .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #dc2626;
}

.lang-dropdown .dropdown-item.active {
    background-color: #dc2626;
    color: white;
}

.lang-dropdown .dropdown-item.active:hover {
    background-color: #b91c1c;
    color: white;
}

.flag-icon {
    font-size: 16px;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
}

.lang-text {
    font-weight: 600;
    font-size: 11px;
}

/* Responsividade */
@media (max-width: 768px) {
    .lang-dropdown {
        min-width: 160px;
        margin-top: 4px;
    }
    
    .lang-dropdown .dropdown-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .flag-icon {
        font-size: 14px;
    }
    
    .lang-selector .dropdown-toggle {
        padding: 6px 8px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .lang-dropdown {
        min-width: 140px;
    }
    
    .lang-name {
        display: none;
    }
    
    .lang-dropdown .dropdown-item {
        justify-content: center;
    }
}

/* ===== SIDEBAR WIDGET STYLES ===== */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sidebar-widget .widget-title {
    background: #f8f9fa;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: none;
}

.widget-post {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
}

.widget-post:last-of-type {
    border-bottom: none;
}

.widget-post .post-category {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.widget-post .post-title {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.widget-post .post-title a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget-post .post-title a:hover {
    color: #b91c1c;
}

.widget-post .post-thumbnail {
    margin-top: 10px;
}

.widget-post .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.widget-more {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.widget-more .more-link {
    color: #2563eb;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.widget-more .more-link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.widget-more .dropdown-icon {
    font-size: 10px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.widget-more .more-link:hover .dropdown-icon {
    transform: translateY(1px);
}

/* Responsividade da Sidebar */
@media (max-width: 768px) {
    .sidebar-widget {
        margin-bottom: 15px;
    }
    
    .sidebar-widget .widget-title {
        font-size: 15px;
        padding: 12px 15px;
    }
    
    .widget-post {
        padding: 12px 15px;
    }
    
    .widget-post .post-title {
        font-size: 13px;
    }
    
    .widget-more {
        padding: 12px 15px;
    }
}

/* Responsividade para DateTime e Search */
@media (max-width: 1200px) {
    .datetime-display {
        font-size: 11px;
        gap: 6px;
    }
    
    .current-date {
        font-size: 11px;
    }
    
    .current-time {
        font-size: 11px;
    }
    
    .search-btn {
        font-size: 16px;
        padding: 6px;
    }
}

/* Versão compacta para telas menores */
@media (max-width: 1100px) {
    .datetime-display {
        font-size: 10px;
        gap: 4px;
    }
    
    .current-date {
        font-size: 10px;
    }
    
    .current-time {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .datetime-display {
        display: none;
    }
}

/* Mobile - mostrar apenas no header se necessário */
@media (max-width: 768px) {
    .mobile-datetime {
        display: block;
        text-align: center;
        color: white;
        font-size: 10px;
        padding: 5px 0;
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    .mobile-datetime .mobile-time {
        font-weight: 600;
        font-family: 'Inter', sans-serif;
    }
}
        

/*********************************************************************************/
/* Layout de Notícia Principal */
        .news-image-container {
            margin-bottom: 20px;
        }

        .news-main-image {
            border-radius: 8px;
            height: 389px;
            object-fit: cover;
        }

        .image-credit {
            position: absolute;
            bottom: 8px;
            right: 12px;
            background-color: rgba(0, 0, 0, 0.75);
            color: white;
            font-size: 10px;
            font-weight: 500;
            padding: 4px 8px;
            letter-spacing: 0.5px;
            font-family: 'Inter', sans-serif;
        }

        .news-content {
            padding-left: 20px;
        }

        .news-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .news-title {
            color: #1e3a8a;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .news-subtitle {
            color: #6b7280;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.5;
            margin-bottom: 25px;
        }

        .related-news {
            background-color: #fffbeb;
            border-left: 4px solid #fbbf24;
            padding: 15px;
            margin-top: 20px;
        }

        .related-header {
            background-color: #fbbf24;
            color: #000;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            margin: -15px -15px 12px -19px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

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

        .related-list li {
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
        }

        .related-list li:before {
            content: "+";
            position: absolute;
            left: 0;
            color: #1e3a8a;
            font-weight: 600;
            font-size: 14px;
        }

        .related-link {
            color: #1e3a8a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }

        .related-link:hover {
            color: #dc2626;
            text-decoration: underline;
        }

        /* Mobile Responsivo para Notícia */
        @media (max-width: 991px) {
            .news-content {
                padding-left: 0;
                margin-top: 20px;
            }

            .news-title {
                font-size: 24px;
            }

            .news-main-image {
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .news-title {
                font-size: 22px;
            }

            .news-subtitle {
                font-size: 15px;
            }

            .news-main-image {
                height: 200px;
            }
        }


        /************************************************************************************/

        /* Grid de Notícias Secundárias */
        .secondary-news-section {
            margin-top: 50px;
        }

        .secondary-news-card {
            margin-bottom: 30px;
        }

        .secondary-news-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .secondary-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .secondary-category.economia {
            background-color: #fbbf24;
        }

        .secondary-category.brasil {
            background-color: #fbbf24;
        }

        .secondary-category.geral {
            background-color: #fbbf24;
        }

        .secondary-category.outras {
            background-color: #fbbf24;
        }

        .secondary-news-title {
            color: #1e3a8a;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .secondary-news-summary {
            color: #374151;
            font-size: 13px;
            line-height: 1.4;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .secondary-news-summary li {
            margin-bottom: 6px;
            padding-left: 12px;
            position: relative;
            font-weight: 400;
        }

        .secondary-news-summary li:before {
            content: "+";
            position: absolute;
            left: 0;
            color: #1e3a8a;
            font-weight: 600;
            font-size: 12px;
        }

        /* Cards Inferiores com Bordas */
        .bottom-news-section {
            margin-top: 40px;
        }

        .bottom-news-card {
            border: 1px solid #e5e7eb;
            padding: 20px;
            border-radius: 8px;
            height: 100%;
            margin-bottom: 20px;
        }

        .bottom-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .bottom-category.educacao {
            background-color: #fbbf24;
        }

        .bottom-category.saude {
            background-color: #fbbf24;
        }

        .bottom-category.meio-ambiente {
            background-color: #fbbf24;
        }

        .bottom-category.esporte {
            background-color: #fbbf24;
        }

        .bottom-news-title {
            color: #1e3a8a;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0;
            font-family: 'Inter', sans-serif;
        }

        /* Mobile para Grid de Notícias */
        @media (max-width: 768px) {
            .secondary-news-image {
                height: 160px;
            }

            .secondary-news-title {
                font-size: 16px;
            }

            .secondary-news-summary {
                font-size: 12px;
            }

            .bottom-news-title {
                font-size: 15px;
            }
        }

        /* Advertisement Section */
        .advertisement-section {
            text-align: center;
            margin: 20px 0;
        }

        .ad-label {
            margin-bottom: 8px;
        }

        .ad-label span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 400;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background-color: #f9fafb;
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }

        .ad-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ad-placeholder {
            width: 900px;
            height: 100px;
            background-color: #f8f9fa;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #6c757d;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .ad-placeholder:hover {
            background-color: #e9ecef;
            border-color: #adb5bd;
        }

        .ad-placeholder i {
            font-size: 48px;
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .ad-placeholder p {
            font-size: 16px;
            font-weight: 500;
            margin: 0 0 8px 0;
        }

        .ad-placeholder small {
            font-size: 12px;
            opacity: 0.7;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .ad-placeholder {
                width: 280px;
                height: 200px;
            }
            
            .ad-placeholder i {
                font-size: 36px;
            }
            
            .ad-placeholder p {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .ad-placeholder {
                width: 250px;
                height: 180px;
            }
            
            .ad-placeholder i {
                font-size: 32px;
            }
            
            .ad-placeholder p {
                font-size: 13px;
            }
            
            .ad-label span {
                font-size: 10px;
                padding: 3px 10px;
            }
        }

        /* Para quando houver banner real */
        .ad-banner {
            width: 300px;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .ad-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Seção de Publicidade */
        .advertising-section {
            width: 100%;
            margin: 20px 0;
            padding: 0px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .advertising-container {
            position: relative;
            width: 100%;
            max-width: 940px;
            margin: 0 auto;
        }

        .advertising-label {
            position: absolute;
            top: -5px;
            right: 10px;
            background: #dc3545;
            color: white;
            padding: 2px 8px;
            font-size: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            border-radius: 3px;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .advertising-content {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 203px;
        }

        .advertising-banner {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .advertising-banner:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .advertising-js-container {
            width: 100%;
            text-align: center;
        }

        /* Responsividade para publicidade */
        @media (max-width: 768px) {
            .advertising-section {
                margin: 15px 0;
                padding: 10px;
            }
            
            .advertising-label {
                font-size: 9px;
                padding: 1px 6px;
                right: 5px;
            }
            
            .advertising-content {
                min-height: 150px;
            }
        }

        @media (max-width: 576px) {
            .advertising-section {
                margin: 10px 0;
                padding: 8px;
            }
            
            .advertising-label {
                font-size: 8px;
                padding: 1px 4px;
                right: 3px;
            }
            
            .advertising-content {
                min-height: 120px;
            }
        }



        /*********************************Barra da justiça***************************************/

        /* Seção Justiça com Fundo Escuro */
        .justice-section {
            background-color: #1f2937;
            padding: 30px 0 40px 0;
            margin-top: 50px;
        }

        .justice-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            padding-bottom: 8px;
            border-bottom: 2px solid #fbbf24;
        }

        .justice-title-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .justice-icon {
            width: 8px;
            height: 20px;
            background-color: #fbbf24;
            display: inline-block;
        }

        .justice-title-text {
            font-family: 'Inter', sans-serif;
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .justice-more-link {
            color: white;
            font-size: 12px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .justice-more-link:hover {
            color: #fbbf24;
        }

        .justice-main-card {
            position: relative;
            margin-bottom: 20px;
        }

        .justice-main-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 8px;
        }

        .justice-overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 42px;
            font-weight: 900;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            line-height: 1.1;
            letter-spacing: 1px;
        }

        .justice-small-card {
            margin-bottom: 20px;
        }

        .justice-small-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .justice-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 10px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .justice-category.politica {
            background-color: #fbbf24;
        }

        .justice-category.justica {
            background-color: #fbbf24;
        }

        .justice-small-title {
            color: white;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            margin: 0;
            font-family: 'Inter', sans-serif;
        }

        .justice-small-title:hover {
            color: #fbbf24;
            cursor: pointer;
        }

        /* Mobile para Seção Justiça */
        @media (max-width: 991px) {
            .justice-overlay-text {
                font-size: 32px;
            }

            .justice-main-image {
                height: 220px;
            }

            .justice-small-image {
                height: 100px;
            }
        }

        @media (max-width: 768px) {
            .justice-section {
                padding: 25px 0 30px 0;
            }

            .justice-overlay-text {
                font-size: 24px;
            }

            .justice-main-image {
                height: 180px;
            }

            .justice-small-image {
                height: 120px;
            }

            .justice-small-title {
                font-size: 13px;
            }
        }



        /*****************************POst de publicação**************************************/

         /* Página de Post */
        .post-container {
            margin-top: 30px;
            margin-bottom: 50px;
        }

        /* Breadcrumb */
        .post-breadcrumb {
            background-color: #f9fafb;
            padding: 12px 0;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 25px;
        }

        .breadcrumb {
            margin: 0;
            background: none;
            padding: 0;
        }

        .breadcrumb-item a {
            color: #6b7280;
            text-decoration: none;
            font-size: 13px;
        }

        .breadcrumb-item.active {
            color: #374151;
            font-weight: 500;
        }

        /* Cabeçalho do Post */
        .post-header {
            margin-bottom: 25px;
        }

        .post-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .post-title {
            color: #1e3a8a;
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
            font-family: 'Inter', sans-serif;
        }

        .post-title-categoria {
            color: #1e3a8a;
            font-size: 36px;
            font: bold;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 15px;
            font-family: 'Inter', sans-serif;
        }

        .post-subtitle {
            color: #6b7280;
            font-size: 18px;
            font-weight: 200;
            line-height: 1.5;
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .post-meta {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            padding: 15px 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 25px;
            font-size: 14px;
            color: #6b7280;
            font-family: 'Inter', sans-serif;
        }

        .post-author {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: fit-content;
        }

        .post-date {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: fit-content;
        }
        
        .post-location {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: fit-content;
        }
        
        .post-meta i {
            color: #dc3545;
            font-size: 12px;
            width: 14px;
            text-align: center;
        }
        
        .post-meta span {
            line-height: 1.4;
        }
        
        .post-meta a {
            color: #dc3545;
            transition: color 0.3s ease;
        }
        
        .post-meta a:hover {
            color: #b02a37;
            text-decoration: underline !important;
        }
        
        /* Responsividade para metadados do post */
        @media (max-width: 768px) {
            .post-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 12px 0;
            }
            
            .post-author,
            .post-date,
            .post-location {
                width: 100%;
                justify-content: flex-start;
            }
        }
        
        @media (max-width: 576px) {
            .post-meta {
                gap: 10px;
                padding: 10px 0;
                font-size: 13px;
            }
            
            .post-meta i {
                font-size: 11px;
                width: 12px;
            }
        }

        /* Imagem Principal */
        .post-image-container {
            position: relative;
            margin-bottom: 30px;
        }

        .post-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 0;
        }

        .post-image-credit {
            background-color: rgba(0, 0, 0, 0.75);
            color: white;
            font-size: 11px;
            font-weight: 500;
            padding: 6px 12px;
            position: absolute;
            bottom: 8px;
            right: 12px;
            letter-spacing: 0.5px;
        }

        .post-image-caption {
            font-size: 13px;
            color: #6b7280;
            font-style: italic;
            margin-top: 8px;
            line-height: 1.4;
        }

        /* Conteúdo do Post */
        .post-content {
            font-size: 18px;
            line-height: 1.8;
            color: #374151;
            font-family: 'Inter', sans-serif;
            font-weight: 200;
        }

        .post-content p {
            margin-bottom: 20px;
            font-weight: 200;
            font-family: 'Inter', sans-serif;
        }

        .post-content p:first-child {
            font-weight: 200;
            color: #1f2937;
            font-family: 'Inter', sans-serif;
        }

        .post-content h2 {
            color: #1e3a8a;
            font-size: 24px;
            font-weight: 700;
            margin: 30px 0 15px 0;
            font-family: 'Inter', sans-serif;
        }

        .post-content h3 {
            color: #1e3a8a;
            font-size: 20px;
            font-weight: 600;
            margin: 25px 0 12px 0;
            font-family: 'Inter', sans-serif;
        }

        .post-content * {
            font-family: 'Inter', sans-serif !important;
            font-weight: 200 !important;
        }

        .post-content h1,
        .post-content h2,
        .post-content h3,
        .post-content h4,
        .post-content h5,
        .post-content h6 {
            font-weight: 700 !important;
        }

        /* Tags */
        .post-tags {
            margin: 40px 0;
            padding: 20px 0;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }

        .tags-label {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 10px;
        }

        .tag-item {
            display: inline-block;
            background-color: #f3f4f6;
            color: #374151;
            font-size: 13px;
            padding: 6px 12px;
            border-radius: 20px;
            margin-right: 8px;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .tag-item:hover {
            background-color: #e5e7eb;
            color: #1f2937;
        }

        /* Compartilhamento */
        .post-share {
            background-color: #f9fafb;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .share-title {
            font-size: 16px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 15px;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
        }

        /* Botões de Compartilhamento */
        .social-share-buttons {
            margin: 30px 0;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }

        .share-buttons-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-width: 120px;
            justify-content: center;
        }

        .share-btn i {
            font-size: 16px;
        }

        .share-btn span {
            font-weight: 600;
        }

        .facebook-btn {
            background-color: #1877f2;
            color: white;
        }

        .facebook-btn:hover {
            background-color: #166fe5;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .twitter-btn {
            background-color: #000000;
            color: white;
        }

        .twitter-btn:hover {
            background-color: #333333;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-btn {
            background-color: #25d366;
            color: white;
        }

        .whatsapp-btn:hover {
            background-color: #22c55e;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }

        .telegram-btn {
            background-color: #0088cc;
            color: white;
        }

        .telegram-btn:hover {
            background-color: #007bb5;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
        }

        /* Responsividade para botões de compartilhamento */
        @media (max-width: 768px) {
            .share-buttons-container {
                flex-direction: column;
                align-items: center;
            }
            
            .share-btn {
                width: 100%;
                max-width: 250px;
            }
        }

        /* Notícias Relacionadas */
        .related-posts {
            margin-top: 50px;
        }

        .related-posts-title {
            color: #1e3a8a;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #fbbf24;
        }

        .related-post-card {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .related-post-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .related-post-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .related-post-content {
            padding: 15px;
        }

        .related-post-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 8px;
        }

        .related-post-title {
            color: #1e3a8a;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .related-post-title:hover {
            color: #dc2626;
        }

        .related-post-date {
            color: #6b7280;
            font-size: 12px;
        }

        /* Mobile Responsivo */
        @media (max-width: 768px) {
            .post-title {
                font-size: 30px;
            }

            .post-subtitle {
                font-size: 18px;
            }

            .post-main-image {
                height: 250px;
            }

            .post-content {
                font-size: 15px;
            }

            .share-buttons {
                flex-wrap: wrap;
            }

            .nav-menu {
                display: none;
            }
        }



        /**************************** Footer *********************************/
        /* Footer Profissional */
        .site-footer {
            background-color: #1f2937;
            color: white;
            margin-top: 60px;
        }

        .footer-main {
            padding: 40px 0 30px 0;
            border-bottom: 1px solid #374151;
        }

        .footer-section h4 {
            color: #fbbf24;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fbbf24;
        }

        .footer-about {
            color: #d1d5db;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-contact-info {
            color: #d1d5db;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .footer-contact-info i {
            color: #fbbf24;
            margin-right: 8px;
            width: 16px;
        }

        .footer-social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #374151;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-social-links a:hover {
            background-color: #fbbf24;
            color: #1f2937;
            transform: translateY(-2px);
        }

        .footer-newsletter {
            background-color: #374151;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .newsletter-title {
            color: #fbbf24;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .newsletter-desc {
            color: #d1d5db;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-input {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #4b5563;
            border-radius: 4px;
            background-color: #1f2937;
            color: white;
            font-size: 14px;
        }

        .newsletter-input::placeholder {
            color: #9ca3af;
        }

        .newsletter-btn {
            background-color: #fbbf24;
            color: #1f2937;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #f59e0b;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 20px 0;
            background-color: #111827;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-copyright {
            color: #9ca3af;
            font-size: 13px;
        }

        .footer-developer {
            color: #9ca3af;
            font-size: 13px;
            text-align: right;
        }

        .footer-developer strong {
            color: #fbbf24;
        }

        .footer-developer a {
            color: #fbbf24;
            text-decoration: none;
        }

        .footer-developer a:hover {
            color: #f59e0b;
            text-decoration: underline;
        }

        .footer-legal-links {
            display: flex;
            gap: 20px;
        }

        .footer-legal-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 13px;
        }

        .footer-legal-links a:hover {
            color: #fbbf24;
        }

        /* Mobile Footer */
        @media (max-width: 768px) {
            .footer-main {
                padding: 30px 0 20px 0;
            }

            .footer-section {
                margin-bottom: 30px;
            }

            .footer-social-links {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .footer-developer {
                text-align: center;
            }

            .footer-legal-links {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .footer-social-links a {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }



        /*********************************Página do Autor********************************/

        /* Seção do Autor - Design Limpo e Customizável */
        .author-header-section {
            padding: 60px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .author-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .author-profile {
            display: flex;
            align-items: center;
            gap: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }

        .author-avatar {
            flex-shrink: 0;
        }

        .author-avatar img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid #1e3a8a;
            object-fit: cover;
        }

        .author-details {
            flex: 1;
        }

        .author-name {
            font-size: 36px;
            font-weight: 700;
            color: #1e3a8a;
            margin: 0 0 8px 0;
        }

        .author-title {
            font-size: 16px;
            color: #fbbf24;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 0 20px 0;
        }

        .author-bio p {
            font-size: 16px;
            line-height: 1.6;
            color: #64748b;
            margin: 0 0 20px 0;
        }

        .author-stats {
            display: flex;
            gap: 20px;
        }

        .stat {
            text-align: center;
            padding: 15px 20px;
            background: #f8fafc;
            border-radius: 8px;
            border-left: 4px solid #1e3a8a;
        }

        .stat-number {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: #1e3a8a;
            line-height: 1;
        }

        .stat-label {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .author-header-section {
                padding: 40px 0;
            }
            
            .author-profile {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            
            .author-name {
                font-size: 28px;
            }
            
            .author-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        

        .stat-number {
            font-size: 24px;
            font-weight: 800;
            color: #fbbf24;
            display: block;
        }

        .stat-label {
            font-size: 13px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Breadcrumb Colunista */
        .columnist-breadcrumb {
            background-color: #f8fafc;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .columnist-breadcrumb .breadcrumb {
            margin: 0;
            background: none;
            padding: 0;
        }

        .columnist-breadcrumb .breadcrumb-item a {
            color: #6b7280;
            text-decoration: none;
            font-size: 13px;
        }

        .columnist-breadcrumb .breadcrumb-item.active {
            color: #1e3a8a;
            font-weight: 500;
        }

        /* Conteúdo Principal */
        .columnist-main {
            margin: 40px 0;
        }

        .section-title {
            color: #1e3a8a;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fbbf24;
            position: relative;
        }

        /* Cards de Artigos */
        .article-card {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            background: white;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .article-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
        }

        .article-category {
            background-color: #fbbf24;
            color: #000;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 12px;
        }

        .article-title {
            color: #1e3a8a;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
            text-decoration: none;
        }

        .article-title:hover {
            color: #dc2626;
        }

        .article-excerpt {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: #9ca3af;
        }

        .article-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-reading-time {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Sidebar do Colunista */
        .columnist-sidebar {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #e2e8f0;
        }

        .sidebar-title {
            color: #1e3a8a;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }

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

        .expertise-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e5e7eb;
            color: #374151;
            font-size: 14px;
        }

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

        .expertise-list li i {
            color: #fbbf24;
            margin-right: 8px;
            width: 16px;
        }

        .newsletter-box {
            background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
        }

        .newsletter-box h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .newsletter-box p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .newsletter-input {
            padding: 12px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
        }

        .newsletter-button {
            background-color: #fbbf24;
            color: #1e3a8a;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            background-color: #f59e0b;
        }

        /* Mobile Responsivo */
        @media (max-width: 768px) {
            .columnist-header {
                padding: 30px 0;
                text-align: center;
            }

            .columnist-name {
                font-size: 28px;
            }

            .columnist-avatar {
                width: 100px;
                height: 100px;
            }

            .columnist-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 20px;
            }

            .section-title {
                font-size: 24px;
            }

            .nav-menu {
                display: none;
            }
        }

        /* Offcanvas Mobile */
        .offcanvas-header {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body {
            background-color: #dc2626;
            color: white;
        }

        .offcanvas-body .nav-link {
            color: white !important;
            padding: 15px 20px;
            border-bottom: 1px solid #b91c1c;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
        }


        /*****************************Ultimas noticas*********************************/

          /* Seção Últimas Notícias */
        .latest-news-section {
            margin-top: 50px;
            margin-bottom: 40px;
        }

        .latest-news-title {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 10px;
        }

        .latest-news-indicator {
            width: 4px;
            height: 24px;
            background-color: #fbbf24;
            border-radius: 2px;
        }

        .latest-news-text {
            color: #1e3a8a;
            font-size: 22px;
            font-weight: 700;
            margin: 0;
        }

        .latest-news-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .latest-news-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f1f5f9;
            transition: background-color 0.3s ease;
        }

        .latest-news-item:hover {
            background-color: #f8fafc;
            border-radius: 8px;
            margin: 0 -10px;
            padding: 15px 10px;
        }

        .latest-news-item:last-child {
            border-bottom: none;
        }

        .latest-news-thumb {
            width: 300px;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .latest-news-content {
            flex: 1;
        }

        .latest-news-category {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .latest-news-category.politics {
            background-color: #fbbf24;
            color: #000;
        }

        .latest-news-category.general {
            background-color: #fbbf24;
            color: #000;
        }

        .latest-news-category.international {
            background-color: #fbbf24;
            color: #000;
        }

        .latest-news-headline {
            color: #1e3a8a;
            font-size: 22px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
            text-decoration: none;
            display: block;
        }

        .latest-news-headline:hover {
            color: #dc2626;
        }

        .latest-news-meta {
            color: #6b7280;
            font-size: 12px;
            font-weight: 400;
        }

        /* Banners Laterais */
        .side-banners {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .side-banner {
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            border: none;
        }

        .banner-cop30 {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            padding: 25px;
            text-align: center;
            color: white;
            position: relative;
        }

        .cop30-logo {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cop30-subtitle {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .cop30-agency {
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .banner-radio {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            padding: 25px;
            text-align: center;
            color: white;
            position: relative;
        }

        .radio-logo {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .radio-logo span {
            color: #fbbf24;
        }

        .radio-wave {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
        }

        /* Banners Publicitários Estilo COP30 */
        .banner-advertising {
            text-align: center;
            color: white;
            position: relative;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
        }

        /* Banner Horizontal */
        .banner-advertising.horizontal {
            background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
            padding: 30px;
            border-radius: 8px;
            min-height: 203px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-advertising.horizontal .ad-logo {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 2px;
        }

        .banner-advertising.horizontal .ad-subtitle {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .banner-advertising.horizontal .ad-agency {
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .ad-icon {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            opacity: 0.9;
        }

        /* Container para banners laterais */
        .side-advertising-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 20px 0;
        }

        /* Banner Quadrado 300x250 - Sem bordas */
        .advertising-300x250 {
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }

         .advertising-700x300 {
            width: 300px;
            height: 700px;
            margin: 0 auto;
        }

        .banner-advertising.square {
            background: transparent;
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-radius: 0;
            box-shadow: none;
            border: none;
            overflow: visible;
        }

        /* Label "Publicidade" acima da imagem */
        .advertising-label-top {
            background: #dc3545;
            color: white;
            padding: 4px 8px;
            font-size: 10px;
            font-weight: 500;
            border-radius: 3px;
            text-transform: uppercase;
            font-family: 'Inter', sans-serif;
            text-align: center;
            margin-bottom: 5px;
            width: fit-content;
            align-self: flex-start;
        }

        /* Imagem do banner */
        .banner-image {
            width: 100%;
            height: calc(100% - 25px);
            object-fit: cover;
            border-radius: 0;
            border: none;
            box-shadow: none;
        }

        /* Remover estilos antigos que causavam bordas */
        .advertising-label-small {
            display: none;
        }

        .ad-logo-small {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .ad-subtitle-small {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .ad-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        .ad-contact i {
            font-size: 12px;
        }

        /* Banner Vertical */
        .advertising-vertical {
            width: 300px;
            height: 400px;
            margin: 0 auto;
        }

        .banner-advertising.vertical {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 8px;
        }

        .ad-logo-vertical {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .ad-subtitle-vertical {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .ad-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .feature-item i {
            width: 16px;
            text-align: center;
            opacity: 0.8;
        }

        .cta-button {
            background: white;
            color: #047857;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .cta-button:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .banner-advertising.horizontal {
                padding: 20px;
                min-height: 150px;
            }
            
            .banner-advertising.horizontal .ad-logo {
                font-size: 36px;
            }
            
            .banner-advertising.horizontal .ad-subtitle {
                font-size: 14px;
            }
            
            .banner-advertising.horizontal .ad-agency {
                font-size: 16px;
            }
            
            .side-advertising-container {
                align-items: center;
            }
            
            .advertising-300x250 {
                width: 280px;
                height: 230px;
            }
            
            .advertising-vertical {
                width: 280px;
                height: 350px;
            }
            
            .advertising-label-top {
                font-size: 9px;
                padding: 3px 6px;
            }
        }

        @media (max-width: 576px) {
            .advertising-300x250 {
                width: 250px;
                height: 200px;
            }
            
            .advertising-vertical {
                width: 250px;
                height: 300px;
            }
            
            .advertising-label-top {
                font-size: 8px;
                padding: 2px 5px;
            }
            
            .banner-advertising.square .ad-logo-small {
                font-size: 24px;
            }
            
            .banner-advertising.vertical .ad-logo-vertical {
                font-size: 28px;
            }
        }

        /* Mobile Responsivo */
        @media (max-width: 991px) {
            .latest-news-section {
                margin-top: 30px;
            }
            
            .side-banners {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .latest-news-thumb {
                width: 150px;
                height: 100px;
            }

            .latest-news-headline {
                font-size: 18px;
            }

            .latest-news-text {
                font-size: 20px;
            }

            .cop30-logo {
                font-size: 36px;
            }

            .banner-cop30,
            .banner-radio {
                padding: 20px;
            }
        }



        /******************************Colunisas******************************/


        
           /* Seção Colunistas */
        .columnists-section {
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .columnists-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fbbf24;
        }

        .columnists-title-section {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .columnists-icon {
            width: 6px;
            height: 24px;
            background-color: #fbbf24;
            display: inline-block;
            border-radius: 2px;
        }

        .columnists-title {
            color: #1e3a8a;
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .columnists-view-all {
            color: #1e3a8a;
            font-size: 13px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .columnists-view-all:hover {
            color: #dc2626;
        }

        .columnist-profile-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .columnist-profile-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transform: translateY(-3px);
            border-color: #fbbf24;
        }

        .columnist-profile-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .columnist-profile-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fbbf24;
            flex-shrink: 0;
        }

        .columnist-profile-info h3 {
            color: #1e3a8a;
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 6px 0;
        }

        .columnist-profile-specialty {
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .columnist-profile-bio {
            color: #374151;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .columnist-profile-latest {
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
            margin-bottom: 20px;
        }

        .columnist-latest-title {
            color: #6b7280;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .columnist-latest-article {
            color: #1e3a8a;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.5;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .columnist-latest-article:hover {
            color: #dc2626;
        }

        .columnist-latest-date {
            color: #9ca3af;
            font-size: 12px;
        }

        .columnist-profile-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .columnist-profile-stats {
            display: flex;
            gap: 25px;
        }

        .columnist-stat-item {
            text-align: center;
        }

        .columnist-stat-item .number {
            color: #1e3a8a;
            font-size: 16px;
            font-weight: 700;
            display: block;
            line-height: 1.2;
        }

        .columnist-stat-item .label {
            color: #9ca3af;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .columnist-profile-follow {
            background-color: #1e3a8a;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .columnist-profile-follow:hover {
            background-color: #dc2626;
            color: white;
            transform: translateY(-1px);
        }

        .columnist-social-links {
            display: flex;
            gap: 8px;
            margin-top: 15px;
        }

        .columnist-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: #f3f4f6;
            color: #6b7280;
            border-radius: 50%;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .columnist-social-link:hover {
            background-color: #1e3a8a;
            color: white;
        }

        /* Mobile Responsivo */
        @media (max-width: 768px) {
            .columnists-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .columnist-profile-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .columnist-profile-photo {
                width: 80px;
                height: 80px;
            }

            .columnist-profile-footer {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .columnist-profile-stats {
                justify-content: center;
            }

            .columnist-profile-card {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .columnist-profile-stats {
                gap: 20px;
            }

            .columnists-title {
                font-size: 18px;
            }
        }


        /**************************************************/

        .post-source {
            border-top: 1px solid #eee;
            padding-top: 9px;
            margin-top: 0px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9em;
            color: #555;
        }

        .post-source i {
            margin-right: 2px;
        }
.related-post-image
/* Widget de Notícias O4Poder */
.o4poder-news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.o4poder-news-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.news-card-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.o4poder-news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 15px;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px 0;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.news-card-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsividade para o widget */
@media (max-width: 768px) {
    .news-card-image {
        height: 100px;
    }
    
    .news-card-title {
        font-size: 15px;
    }
    
    .news-card-text {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .news-card-content {
        padding: 12px;
    }
}

/* Estilos para Widget de Notícias Relacionadas */
.related-posts {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.related-posts-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    font-family: 'Inter', sans-serif;
}

.related-post-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.related-post-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin: -5px -15px 15px -15px;
}

.related-post-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.05);
}

.related-post-content {
    flex: 1;
    min-width: 0;
}

.related-post-category {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.related-post-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.related-post-title:hover {
    color: #e74c3c;
    text-decoration: none;
}

.related-post-date {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Responsividade para notícias relacionadas */
@media (max-width: 768px) {
    .related-posts {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .related-posts-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .related-post-card {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .related-post-image {
        width: 70px;
        height: 50px;
        margin-right: 12px;
    }
    
    .related-post-title {
        font-size: 13px;
        line-height: 1.2;
    }
    
    .related-post-category {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .related-post-date {
        font-size: 11px;
    }
}

/******************** Button de rede sociais **********************/
