
        @import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Changa+One:ital@0;1&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Jersey+15&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #d62828;
            --primary-dark: #a01c1c;
            --secondary: #003049;
            --accent: #f77f00;
            --light: #f8f9fa;
            --dark: #2b2d42;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --white: #ffffff;
            --black: #000000;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        a {
            text-decoration: none;
            transition: var(--transition);
            color: var(--secondary);
        }
        a:hover {
            color: var(--primary);
        }
        button, input {
            font-family: 'Roboto', sans-serif;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 10px;
            width: 100%; /* Garante que o contêiner não exceda a viewport */
            box-sizing: border-box; /* Garante que padding não aumente a largura */
        }
        .section-title {
            position: relative;
            margin-bottom: 20px;
            padding-bottom: 8px;
            font-size: 22px;
            color: var(--secondary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        /* ===== BARRA ADMIN ===== */
        .admin-bar {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--light);
            padding: 8px 0;
            font-size: 13px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .admin-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .admin-bar a {
            color: var(--light);
            text-decoration: none;
            margin-left: 10px;
            padding: 5px 8px;
            border-radius: 3px;
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.2);
            font-size: 12px;
        }
        .admin-bar a:hover {
            background: rgba(255,255,255,0.3);
        }
        .admin-bar i {
            margin-right: 4px;
        }
        /* ===== CABEÇALHO ===== */
        .site-header {
            background-color: var(--white);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 4px 0;
            gap: 6px;
        }
       
        .logo-container {
            flex: 0 0 180px;
        }
        .logo-container img {
            max-width: 160px;
            height: auto;
        }
        .header-ad {
            flex: 1;
            text-align: center;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%; /* Já presente, mas reforçando */
            overflow: hidden; /* Impede que o conteúdo interno cause overflow */
        }
        .header-ad img {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain; /* Garante que a imagem se ajuste ao espaço */
        }
        .search-form {
            flex: 0 0 280px;
            position: relative;
        }
        .search-form input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--gray-light);
            border-radius: 4px;
            font-size: 13px;
        }
        .search-form button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 14px;
        }
        /* ===== MENU PRINCIPAL ===== */
        .main-nav {
            background-color: var(--dark);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-menu {
            display: flex;
            list-style: none;
        }
        .main-menu li {
            position: relative;
        }
        .main-menu a {
            color: var(--white);
            padding: 12px 15px;
            display: block;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
        }
        .main-menu a:hover {
            background: var(--primary);
        }
        .nav-tools {
            display: flex;
            align-items: center;
        }
        .search-toggle, .menu-toggle {
            color: var(--white);
            font-size: 16px;
            padding: 8px;
            cursor: pointer;
        }
        .search-form-nav {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            max-width: 300px;
            background: var(--white);
            padding: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        .search-form-nav.active {
            display: block;
        }
        .search-form-nav input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--gray-light);
            border-radius: 4px;
            font-size: 13px;
        }
        .search-form-nav button {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
        }
        .menu-toggle {
            display: none;
        }
        /* ===== DESTAQUES ===== */
        .featured-news {
            padding: 20px 0;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .main-featured {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            height: relative;
        }
        .main-featured img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .main-featured:hover img {
            transform: scale(1.05);
        }
        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: var(--white);
        }
        .featured-category {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        .featured-title {
            font-size: 22px;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        .featured-title a {
            color: var(--white);
        }
        .featured-meta {
            font-size: 13px;
            opacity: 0.9;
        }
        .side-featured {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            gap: 5px;
        }
/* ===== SIDE-FEATURED (Banners WhatsApp, Instagram e Facebook) ===== */
.side-featured {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Espaço entre os banners */
}

.side-featured a {
    display: block;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.side-featured img {
    width: 100%;
    height: auto; /* Altura automática para manter a proporção */
    object-fit: contain; /* Garante que a imagem seja exibida por completo */
    object-position: center; /* Centraliza a imagem */
    transition: transform 0.3s ease;
    display: block; /* Remove espaços indesejados abaixo da imagem */
}

.side-featured a:hover img {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

/* Ajuste específico para o banner do YouTube ficar menor */



/* Ajustes para telas menores */
@media (max-width: 992px) {
    .side-featured {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .side-featured {
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .side-featured {
        gap: 10px;
    }
}
        .side-item {
            display: flex;
            gap: 12px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--gray-light);
        }
        .side-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .side-img {
            flex: 0 0 90px;
            height: 70px;
            border-radius: 4px;
            overflow: hidden;
        }
        .side-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .side-item:hover .side-img img {
            transform: scale(1.1);
        }
        .side-content {
            flex: 1;
        }
        .side-category {
            font-size: 10px;
            color: var(--primary);
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .side-title {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 4px;
        }
        .side-title a {
            color: var(--dark);
        }
        .side-title a:hover {
            color: var(--primary);
        }
        .side-meta {
            font-size: 11px;
            color: var(--gray);
        }
        /* ===== CONTEÚDO PRINCIPAL ===== */
        .main-content {
            padding: 20px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }
        .news-section {
            margin-bottom: 30px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .news-card {
            background: var(--white);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .news-img {
            height: 180px;
            overflow: hidden;
        }
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .news-card:hover .news-img img {
            transform: scale(1.05);
        }
        .news-body {
            padding: 15px;
        }
        .news-category {
            display: inline-block;
            font-size: 11px;
            color: var(--primary);
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .news-title {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .news-title a {
            color: var(--dark);
        }
        .news-title a:hover {
            color: var(--primary);
        }
        .news-excerpt {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .news-meta {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: var(--gray);
        }
        .news-meta i {
            margin-right: 4px;
            color: var(--primary);
        }
        /* ===== BARRA LATERAL ===== */
        .sidebar {
            position: sticky;
            top: 80px;
        }
        .sidebar-widget {
            background: var(--white);
            border-radius: 6px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--gray-light);
            color: var(--secondary);
        }
        .ad-widget {
            text-align: center;
            padding: 0;
            overflow: hidden;
        }
        .ad-widget img {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .ad-widget:hover img {
            transform: scale(1.02);
        }
        /* ===== PAGINAÇÃO ===== */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            margin: 0 4px;
            border-radius: 4px;
            background: var(--white);
            color: var(--dark);
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: var(--transition);
            font-size: 14px;
        }
        .pagination a:hover, .pagination a.active {
            background: var(--primary);
            color: var(--white);
        }
        /* ===== RODAPÉ ===== */
        .site-footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 40px 20px;
            margin-top: 20px;
        }
        .footer-content.three-columns {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }
        .footer-logo-container {
            flex: 1;
        }
        .footer-logo {
            width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 15px;
        }
        .footer-slogan {
            font-style: italic;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            margin-bottom: 8px;
            opacity: 0.85;
        }
        .footer-direitos {
            font-size: 14px;
            opacity: 0.7;
        }
        .footer-about {
            flex: 1;
            max-width: 400px;
        }
        .footer-about h3,
        .footer-social h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        .footer-about p {
            font-size: 15px;
            opacity: 0.85;
            line-height: 1.6;
        }
        .footer-social {
            flex: 1;
            text-align: right;
        }
        .social-icons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 10px;
        }
        .social-icons a {
            color: var(--light);
            font-size: 20px;
            transition: var(--transition);
        }
        .social-icons a:hover {
            color: var(--primary);
            transform: scale(1.1);
        }    
       
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    .header-container {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }
    .logo-container {
        flex: 0 0 160px;
    }
    .header-ad {
        order: 3;
        flex: 1 0 100%;
        min-height: 70px;
    }
    .search-form {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
    }
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        max-height: 70vh;
        overflow-y: auto;
    }
    .main-menu.active {
        display: flex;
    }
    .main-menu li {
        width: 100%;
    }
    .main-menu a {
        padding: 14px 20px;
        font-size: 15px;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .menu-toggle {
        display: block;
        padding: 10px;
    }
    .search-toggle {
        display: none;
    }
    .search-form-nav {
        display: block;
        position: static;
        box-shadow: none;
        padding: 10px;
        max-width: 100%;
        background: var(--secondary);
    }
    .search-form-nav input {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 4px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .main-featured {
        height: 320px;
    }
    .featured-title {
        font-size: 20px;
    }
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sidebar {
        position: static;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .section-title:after {
        width: 40px;
    }
    .main-featured {
        height: 280px;
    }
    .featured-title {
        font-size: 19px;
    }
    .side-item {
        flex-direction: row;
        gap: 12px;
        padding: 12px 0;
    }
    .side-img {
        flex: 0 0 90px;
        height: 70px;
    }
    .side-title {
        font-size: 14px;
    }
    .side-meta {
        font-size: 12px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .news-img {
        height: 180px;
    }
    .news-title {
        font-size: 16px;
    }
    .news-excerpt {
        font-size: 14px;
    }
    .news-meta {
        font-size: 13px;
    }
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    .pagination a {
        width: 38px;
        height: 38px;
        font-size: 14px;
        margin: 2px;
    }
            .footer-content.three-columns {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
            .footer-social {
                text-align: center;
            } 
                        .social-icons {
                justify-content: center;
            }
            .logo-container {
        flex: 0 0 100%;
        text-align: center;
        order: 1;
    }
    .header-ad {
        flex: 1 0 100%;
        order: 2;
    }
    .header-container {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    .logo-container {
        flex: 0 0 auto;
        text-align: center;
    }
    .logo-container img {
        max-width: 140px;
    }
    .header-ad {
        min-height: 60px;
    }
    .header-ad img {
        max-height: 60px;
    }
    .search-form input {
        font-size: 16px;
        padding: 12px 15px;
    }
    .main-menu a {
        padding: 16px 20px;
        font-size: 16px;
    }
    .main-featured {
        height: 220px;
    }
    .featured-overlay {
        padding: 15px;
    }
    .featured-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .featured-meta {
        font-size: 12px;
    }
    .side-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }
    .side-img {
        width: 100%;
        height: 140px;
    }
    .side-title {
        font-size: 15px;
    }
    .side-meta {
        font-size: 12px;
    }
    .news-img {
        height: 160px;
    }
    .news-body {
        padding: 15px;
    }
    .news-title {
        font-size: 16px;
    }
    .news-excerpt {
        font-size: 14px;
    }
    .widget-title {
        font-size: 16px;
    }
    .pagination a {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .footer-logo {
            width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 15px;
    }
    .footer-slogan {
        font-size: 14px;
    }
    .footer-direitos {
        font-size: 13px;
    }
    .footer-about p {
        font-size: 14px;
    }
    .social-icons a {
        font-size: 16px;
    }
}

        @media (max-width: 768px) {
    .logo-container {
        transition: opacity 0.3s ease, max-height 0.3s ease;
        max-height: 100px;
        opacity: 1;
        overflow: hidden;
    }

    .hide-logo .logo-container {
        max-height: 0;
        opacity: 0;
    }
}
@media (max-width: 400px) {
    .logo-container img {
        max-width: 120px;
    }
    .header-ad img {
        max-height: 50px;
    }
    .main-featured {
        height: 200px;
    }
    .featured-title {
        font-size: 16px;
    }
    .news-img {
        height: 140px;
    }
    .news-title {
        font-size: 15px;
    }
    .pagination a {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
