/* Portal de Notícias ESBC - Estilo Principal */
/* Baseado no design da Globo.com */

/* ========== VARIÁVEIS CSS ========== */
:root {
    --primary-color: #005dac;
    --secondary-color: #000;
    --white-color: #fff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Cores das Categorias */
    --category-politica: #e74c3c;
    --category-esportes: #2ecc71;
    --category-economia: #f39c12;
    --category-cultura: #9b59b6;
    --category-saude: #e67e22;
    --category-educacao: #1abc9c;
    --category-ambiente: #27ae60;
    --category-geral: #34495e;
}

/* ========== RESET E CONFIGURAÇÕES GERAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white-color);
}

/* ========== HEADER ========== */
.header-main, .navbar, .navbar-light {
    background: #f4f7fa !important;
    box-shadow: none;
    border-bottom: none;
}

.header-main .navbar {
    padding: 1rem 0;
}

.logo-main {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-main:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #111 !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    border-radius: var(--border-radius);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: #005dac !important;
    background: transparent !important;
}

/* Redes sociais no menu - alinhadas à direita com bolinhas azuis */
.navbar-social {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}

.nav-social .nav-link {
    padding: 0.5rem !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    text-decoration: none;
}

.nav-social .nav-link:hover {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Responsividade do menu */
@media (max-width: 991px) {
    .navbar-social {
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #ddd;
    }
    
    .nav-social .nav-link {
        width: 35px;
        height: 35px;
    }
}




.navbar-toggler {
    border: none;
    color: var(--white-color);
}

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

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== SUB-HEADER ========== */
.sub-header {
    background-color: var(--gray-light);
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.partners-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: #f8f9fa;
    padding: 1.2rem 0 1.2rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.partners-title {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-right: 1.5rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-logo {
    height: 38px;
    filter: drop-shadow(0 1px 4px rgba(0,93,172,0.08));
}

@media (max-width: 600px) {
    .partners-section {
        gap: 1rem;
        padding: 0.7rem 0 0.7rem 0;
    }
    .partner-logo {
        height: 24px;
    }
    .partners-title {
        font-size: 1rem;
        margin-right: 0.7rem;
    }
}

/* ====== BARRA DE LOGOS DOS PARCEIROS ====== */
.partner-logos-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: #fff;
    padding: 1.5rem 0 1.2rem 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, padding 0.3s;
    z-index: 100;
    position: relative;
}
.partner-logo-img {
    height: 70px;
    transition: height 0.3s, filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0,93,172,0.10));
    cursor: pointer;
}
.partner-logo-img:hover {
    filter: drop-shadow(0 4px 16px rgba(0,93,172,0.18));
    transform: scale(1.08);
}
.partner-logos-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 0.3rem 0 0.2rem 0;
    z-index: 999;
}
.partner-logos-bar.sticky .partner-logo-img {
    height: 40px;
}
@media (max-width: 600px) {
    .partner-logos-bar {
        gap: 1.2rem;
        padding: 0.7rem 0 0.5rem 0;
    }
    .partner-logo-img {
        height: 38px;
    }
    .partner-logos-bar.sticky .partner-logo-img {
        height: 26px;
    }
}

/* ====== TOPO COM LOGOS ====== */
.top-logos-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    padding: 1.5rem 0;
    border-bottom: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    margin-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}



.top-logos-col.left {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}

.top-logos-col.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-right: 2rem;
}

.top-logo-main {
    height: 130px;
    max-width: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: brightness(1.05) drop-shadow(0 3px 12px rgba(0,0,0,0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.top-logo-main:hover {
    transform: scale(1.03);
    filter: brightness(1.1) drop-shadow(0 5px 20px rgba(0,0,0,0.3));
}

/* Efeito hover para trocar a logo principal */
.top-logo-main {
    transition: filter 0.3s, transform 0.3s;
}

.top-logo-partner {
    height: 70px;
    max-width: 100px;
    object-fit: contain;
    display: inline-block;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    transition: all 0.3s ease, opacity 0.2s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.top-logo-partner:hover {
    filter: brightness(1.2) drop-shadow(0 4px 16px rgba(0,0,0,0.25));
    transform: scale(1.1) translateY(-2px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Pré-carregamento das imagens coloridas */
.top-logos-col.right::after {
    content: url('../images/logos/logo-jornal-online-c.png') url('../images/logos/logo-radio-1-c.png') url('../images/logos/logo-radio-2-c.png');
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Efeito de troca de imagem no hover para versões coloridas */
.top-logos-col.right a:hover .top-logo-partner[src*="logo-jornal-online-branca"] {
    content: url('../images/logos/logo-jornal-online-c.png');
}

.top-logos-col.right a:hover .top-logo-partner[src*="logo-radio-1-branca"] {
    content: url('../images/logos/logo-radio-1-c.png');
}

.top-logos-col.right a:hover .top-logo-partner[src*="logo-radio-2-branca"] {
    content: url('../images/logos/logo-radio-2-c.png');
}

/* Links das logos dos parceiros */
.top-logos-col.right a {
    display: inline-block;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.top-logos-col.right a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.top-logos-col.right a:hover::before {
    transform: translateX(100%);
}

.top-logos-col.right a:hover {
    transform: none; /* Remove a transformação do link para não duplicar */
}

.top-logos-col.right a:focus {
    outline: 2px solid rgba(255,255,255,0.8);
    outline-offset: 2px;
}

.top-logos-col.right a:active .top-logo-partner {
    transform: scale(0.95);
}

/* Responsividade melhorada */
@media (max-width: 1200px) {
    .top-logos-col.left, .top-logos-col.right {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .top-logo-main { 
        height: 100px; 
        max-width: 220px; 
    }
    .top-logo-partner { 
        height: 55px; 
        max-width: 85px; 
    }
    .top-logos-col.right {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .top-logos-bar {
        padding: 1rem 0;
    }
    .top-logo-main { 
        height: 80px; 
        max-width: 180px; 
    }
    .top-logo-partner { 
        height: 50px; 
        max-width: 75px; 
    }
    .top-logos-col.right {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-logos-bar { 
        flex-direction: column; 
        gap: 1rem; 
        padding: 1rem 0; 
    }
    .top-logos-col.left, .top-logos-col.right { 
        width: 100%; 
        padding: 0;
    }
    .top-logo-main { 
        height: 70px; 
        max-width: 160px; 
    }
    .top-logo-partner { 
        height: 42px; 
        max-width: 60px; 
    }
    .top-logos-col.right {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .top-logo-main { 
        height: 60px; 
        max-width: 140px; 
    }
    .top-logo-partner { 
        height: 36px; 
        max-width: 52px; 
    }
    .top-logos-col.right {
        gap: 1rem;
    }
}

/* ========== MAIN CONTENT ========== */
.main-content {
    padding: 2rem 0;
}

/* ========== ARTIGO PRINCIPAL ========== */
.main-article {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.main-article:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.main-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.article-summary {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.article-meta i {
    margin-right: 0.25rem;
}

/* ========== SIDEBAR ========== */
.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.sidebar {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
}

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

.trending-item:hover {
    background-color: rgba(0, 93, 172, 0.05);
    border-radius: var(--border-radius);
    padding-left: 0.5rem;
}

.trending-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.trending-content span {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* ========== WIDGETS SIDEBAR ========== */
.weather-widget,
.social-section {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--box-shadow);
}

.weather-widget h3,
.social-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.weather-today {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.weather-icon {
    font-size: 2rem;
    color: #f39c12;
    margin-right: 1rem;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.weather-desc {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.weather-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--gray-dark);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
}

.social-link.facebook:hover {
    background-color: #1877f2;
    color: var(--white-color);
}

.social-link.instagram:hover {
    background-color: #e4405f;
    color: var(--white-color);
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: var(--white-color);
}

.social-link.youtube:hover {
    background-color: #ff0000;
    color: var(--white-color);
}

/* ========== SEÇÃO DE NOTÍCIAS ========== */
.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.news-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

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

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
}

.category-politica {
    background-color: var(--category-politica);
}

.category-esportes {
    background-color: var(--category-esportes);
}

.category-economia {
    background-color: var(--category-economia);
}

.category-cultura {
    background-color: var(--category-cultura);
}

.category-saude {
    background-color: var(--category-saude);
}

.category-educacao {
    background-color: var(--category-educacao);
}

.category-ambiente {
    background-color: var(--category-ambiente);
}

.category-geral {
    background-color: var(--category-geral);
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.news-title:hover {
    color: var(--primary-color);
}

.news-summary {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.news-meta i {
    margin-right: 0.25rem;
}

/* ========== SEÇÃO DE NOTÍCIAS EM DESTAQUE ========== */
.featured-news-grid {
    margin: 3rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.featured-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
}

.featured-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-content {
    padding: 1.25rem;
}

.featured-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-title:hover {
    color: var(--primary-color);
}

.featured-summary {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.featured-time,
.featured-author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-time i,
.featured-author i {
    width: 12px;
    color: var(--primary-color);
}

/* Efeito especial para o primeiro card */
.featured-news-grid .row:first-child .col-lg-3:first-child .featured-card {
    border: 2px solid var(--primary-color);
}

.featured-news-grid .row:first-child .col-lg-3:first-child .featured-card .featured-title {
    color: var(--primary-color);
    font-weight: 700;
}

/* Contador de visualizações */
.featured-views {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: inline-block;
}

.featured-views i {
    margin-right: 0.25rem;
}

/* Animação inicial para cards em destaque */
.featured-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Efeito de pulso no primeiro card */
.featured-news-grid .row:first-child .col-lg-3:first-child .featured-card {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 93, 172, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 93, 172, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 93, 172, 0);
    }
}

/* ========== SEÇÃO DE ÚLTIMAS NOTÍCIAS ========== */
.latest-news-section {
    margin: 3rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
}

.latest-news-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
    border-left: 3px solid var(--primary-color);
}

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

.latest-news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.latest-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.breaking-news {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.7;
    }
}

.latest-news-content {
    padding: 1.5rem;
}

.latest-news-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-title:hover {
    color: var(--primary-color);
}

.latest-news-summary {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-medium);
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.latest-news-meta .time,
.latest-news-meta .author {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.latest-news-meta i {
    color: var(--primary-color);
    width: 12px;
}

/* Animação inicial para cards de últimas notícias */
.latest-news-card {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

/* Responsividade da seção de últimas notícias */
@media (max-width: 768px) {
    .latest-news-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .latest-news-image {
        height: 160px;
    }
    
    .latest-news-content {
        padding: 1.25rem;
    }
    
    .latest-news-title {
        font-size: 1rem;
    }
    
    .latest-news-summary {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .latest-news-meta {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .breaking-news {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ========== SEÇÃO DE PROPAGANDAS ========== */
.ads-section {
    margin: 2rem 0;
    padding: 1rem 0;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
}

.ad-banner {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.ad-banner:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ad-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.ad-banner:hover img {
    transform: scale(1.02);
}

.ad-vertical {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: sticky;
    top: 100px;
}

.ad-vertical:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ad-vertical img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========== SEÇÃO DE MAIS NOTÍCIAS ========== */
.more-news {
    margin: 3rem 0;
}

.news-card-horizontal {
    display: flex;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 150px;
}

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

.news-card-horizontal .news-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.news-card-horizontal .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-card-horizontal .news-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card-horizontal .news-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.news-card-horizontal .news-summary {
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-horizontal .news-meta {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

/* ========== SEÇÃO DE MINI NOTÍCIAS ========== */
.mini-news {
    margin: 3rem 0;
    padding: 2rem 0;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
}

.mini-news-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.mini-news-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.mini-news-image {
    overflow: hidden;
}

.mini-news-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: var(--transition);
}

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

.mini-news-content {
    padding: 1rem;
}

.mini-news-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-news-time {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

/* ========== ANIMAÇÕES DE PROPAGANDAS ========== */
@keyframes slideShow {
    0% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    70% { opacity: 1; }
    75% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 1; }
}

.ad-banner.rotating {
    animation: slideShow 6s infinite;
}

.ad-banner.rotating:nth-child(2) {
    animation-delay: 3s;
}

/* ========== MELHORIAS CATEGORIA ARTIGO PRINCIPAL ========== */
.main-article .article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    z-index: 10;
}

/* ========== SEÇÃO DE VÍDEOS ========== */
.video-news {
    margin: 3rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
}

.video-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 93, 172, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.video-play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.video-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.video-views,
.video-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ========== MINI VÍDEOS ========== */
.mini-video-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.mini-video-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.mini-video-thumbnail {
    position: relative;
    overflow: hidden;
}

.mini-video-thumbnail img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: var(--transition);
}

.mini-video-card:hover .mini-video-thumbnail img {
    transform: scale(1.05);
}

.mini-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 93, 172, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1rem;
    transition: var(--transition);
}

.mini-video-play:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.mini-video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white-color);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
}

.mini-video-content {
    padding: 1rem;
}

.mini-video-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mini-video-views {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white-color);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    width: 20px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    margin-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .partner-links {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .partner-link {
        width: 100%;
        justify-content: center;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-summary {
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .sidebar {
        margin-top: 2rem;
    }
    

    
    /* Responsividade das novas seções */
    .news-card-horizontal {
        flex-direction: column;
        height: auto;
    }
    
    .news-card-horizontal .news-image {
        flex: none;
        height: 150px;
    }
    
    .ad-banner img {
        height: 150px;
    }
    
    .ad-vertical {
        position: static;
        margin-top: 2rem;
    }
    
    .ad-vertical img {
        height: 200px;
    }
    
    .mini-news-card {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Responsividade das notícias em destaque */
    .featured-news-grid {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .featured-image img {
        height: 180px;
    }
    
    .featured-content {
        padding: 1rem;
    }
    
    .featured-title {
        font-size: 1rem;
    }
    
    .featured-summary {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .featured-meta {
        font-size: 0.75rem;
    }
    
    /* Mostra menos notícias em destaque no mobile */
    .featured-news-grid .row:nth-child(2) {
        display: none;
    }
    
    /* Responsividade dos vídeos */
    .video-thumbnail img {
        height: 200px;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mini-video-thumbnail img {
        height: 100px;
    }
    
    .mini-video-play {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .article-image img {
        height: 250px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .partner-logo {
        height: 25px;
    }
    
    .logo-main {
        height: 35px;
    }
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-article,
.sidebar {
    animation: fadeIn 0.6s ease-out;
}

/* ========== MELHORIAS DE ACESSIBILIDADE ========== */
.partner-link:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ========== ESTADOS DE HOVER MELHORADOS ========== */
.trending-item:hover h4 {
    color: var(--primary-color);
}

.article-title:hover {
    color: var(--primary-color);
    cursor: pointer;
}

/* ========== LOADING STATES ========== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .header-main,
    .sub-header,
    .sidebar,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .article-image img {
        height: auto;
        max-height: 300px;
    }
} 

/* ========== MENU SELEÇÃO DE RÁDIO ========== */
.radio-selector-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.radio-selector-menu.visible {
    opacity: 1;
    visibility: visible;
}

.radio-selector-content {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.radio-selector-menu.visible .radio-selector-content {
    transform: scale(1);
}

.radio-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.radio-selector-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-selector {
    background: none;
    border: none;
    color: var(--gray-medium);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-selector:hover {
    background: var(--gray-light);
    color: var(--primary-color);
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.radio-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 93, 172, 0.15);
}

.radio-option-card:active {
    transform: translateY(-1px);
}

.radio-option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.radio-option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-option-info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.radio-option-info p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

.radio-frequency {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    width: fit-content;
}



@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .radio-selector-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .radio-selector-header h3 {
        font-size: 1.3rem;
    }
    
    .radio-option-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .radio-option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .radio-option-info h4 {
        font-size: 1rem;
    }
    
    .radio-option-info p {
        font-size: 0.8rem;
    }
    

}

/* ========== SEÇÃO MAIS LIDAS ESTILO GLOBO ========== */
.trending-news-globo {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.trending-item-globo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    transition: var(--transition);
    cursor: pointer;
}

.trending-item-globo:last-child {
    border-bottom: none;
}

.trending-item-globo:hover {
    background: #f8f9fa;
    transform: translateX(2px);
}

.trending-item-globo:hover .trending-content h4 {
    color: var(--primary-color);
}

.trending-item-globo .trending-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.trending-item-globo .trending-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trending-item-globo:hover .trending-thumbnail img {
    transform: scale(1.05);
}

.trending-item-globo .trending-content {
    flex: 1;
    min-width: 0;
}

.trending-item-globo .trending-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--secondary-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.trending-item-globo .trending-content span {
    font-size: 0.75rem;
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trending-item-globo .trending-content span::before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.7rem;
}



/* Destacar primeira notícia */
.trending-item-globo:first-child {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 3px solid var(--primary-color);
}

.trending-item-globo:first-child .trending-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Animação de entrada */
.trending-item-globo {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.5s ease-out forwards;
}

.trending-item-globo:nth-child(1) { animation-delay: 0.1s; }
.trending-item-globo:nth-child(2) { animation-delay: 0.2s; }
.trending-item-globo:nth-child(3) { animation-delay: 0.3s; }
.trending-item-globo:nth-child(4) { animation-delay: 0.4s; }
.trending-item-globo:nth-child(5) { animation-delay: 0.5s; }
.trending-item-globo:nth-child(6) { animation-delay: 0.6s; }
.trending-item-globo:nth-child(7) { animation-delay: 0.7s; }
.trending-item-globo:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .trending-item-globo {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .trending-item-globo .trending-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .trending-item-globo .trending-content h4 {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .trending-item-globo .trending-content span {
        font-size: 0.7rem;
    }
    

}

/* Efeito de loading skeleton */
.trending-item-globo.loading {
    pointer-events: none;
}

.trending-item-globo.loading .trending-thumbnail {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.trending-item-globo.loading .trending-content h4,
.trending-item-globo.loading .trending-content span {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    color: transparent;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========== SEÇÕES DE CATEGORIAS ========== */
.news-section {
    padding: 3rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.news-section:nth-child(even) {
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #005dac;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #005dac, #0066cc);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========== SEÇÃO DE REDES SOCIAIS ========== */
.social-media-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.social-media-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-media-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    display: block;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.instagram:hover {
    border-color: #e4405f;
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-card.whatsapp:hover {
    border-color: #25d366;
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.whatsapp .social-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.social-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-followers {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .social-media-section {
        padding: 3rem 0;
    }
    
    .social-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .social-info h4 {
        font-size: 1.1rem;
    }
}

/* ========== ESTILOS PARA PÁGINA DE NOTÍCIA INDIVIDUAL ========== */

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--gray-light);
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--gray-medium);
}

/* Artigo da Notícia */
.news-article {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-header {
    padding: 2rem 2rem 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.article-category {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.article-time,
.article-author,
.article-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-time i,
.article-author i,
.article-views i {
    color: var(--primary-color);
}

.article-image {
    width: 100%;
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.article-content {
    padding: 0 2rem 2rem;
}

.article-summary {
    margin-bottom: 2rem;
}

.article-summary .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-footer {
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    border-top: 1px solid #e9ecef;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.article-tags .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Responsividade para página de notícia */
@media (max-width: 768px) {
    .article-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 0 1rem 1.5rem;
    }
    
    .article-text {
        font-size: 1rem;
    }
    
    .article-footer {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-summary .lead {
        font-size: 1.1rem;
    }
}

/* ========== PLACEHOLDER PARA IMAGENS AUSENTES ========== */
.news-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border: 2px dashed #dee2e6;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.news-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.news-placeholder i {
    opacity: 0.7;
    z-index: 2;
    margin-bottom: 8px;
}

.news-placeholder span {
    text-align: center;
    font-weight: 500;
    z-index: 2;
    font-size: 0.9rem;
}

.news-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Dimensões específicas para diferentes tipos de notícias */
.news-image .news-placeholder {
    height: 200px;
}

.news-image .news-placeholder i {
    font-size: 2.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .news-image .news-placeholder {
        height: 150px;
    }
    
    .news-image .news-placeholder i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .news-image .news-placeholder {
        height: 120px;
    }
    
    .news-image .news-placeholder i {
        font-size: 1.8rem;
    }
}