/* ========================================
   PORTAL JIJOCA - CSS COMPLETO
   Estilo blogTO + Menu Hamburger
   ======================================== */

/* Variáveis de Cores e Fontes */
:root {
    --color-primary: #E31E24;
    --color-text: #333;
    --color-background: #fff;
    --color-light-gray: #f5f5f5;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--color-light-gray);
    color: var(--color-text);
    line-height: 1.6;
    padding-top: 75px; /* Compensar header de 20px + logo 25px */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    background-color: var(--color-background);
}

/* ========================================
   CABEÇALHO
   ======================================== */
.main-header {
    background-color: var(--color-background);
    border-bottom: 1px solid #eee;
    padding: 20px 0; /* Aumentado para 20px */
    
    /* HEADER FIXO */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* SOMBRA REMOVIDA */
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.logo-img {
    height: 25px;
    width: auto;
    display: block;
}

/* Esconder navegação antiga */
.main-nav {
    display: none !important;
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    color: var(--color-text);
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.icon-link:hover {
    color: var(--color-primary);
}

.icon-link svg {
    display: block;
    width: 24px;
    height: 24px;
}

/* ========================================
   MENU HAMBURGER
   ======================================== */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.menu-toggle:hover .hamburger-line {
    background-color: var(--color-primary);
}

/* ========================================
   SIDEBAR MENU
   ======================================== */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: var(--color-background);
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo {
    height: 25px;
    width: auto;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 5px;
    transition: color 0.3s;
}

.sidebar-close:hover {
    color: var(--color-primary);
}

.sidebar-close svg {
    display: block;
    width: 24px;
    height: 24px;
}

*/

.sidebar-nav {
    padding: 0;
}

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

.sidebar-nav li {
    border-bottom: 1px solid #eee;
}

.sidebar-nav a {
    display: block;
    padding: 18px 20px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.sidebar-nav a:hover {
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    padding-left: 30px;
}

/* Categorias de notícias */
.menu-categories {
    margin-bottom: 0;
}

/* Separador entre categorias e links institucionais */
.menu-divider {
    height: 2px;
    background-color: #ddd;
    margin: 20px 20px;
}

/* Links Institucionais */
.menu-institutional {
    padding: 10px 0 30px;
}

.institutional-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    padding: 15px 20px 10px;
    margin: 0;
    letter-spacing: 1px;
}

.menu-institutional ul {
    margin-bottom: 20px;
}

.menu-institutional li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-institutional a {
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    color: #666;
    padding: 14px 20px;
}

.menu-institutional a:hover {
    color: var(--color-primary);
    background-color: #fafafa;
}

/* 

/* Categorias de notícias */
.menu-categories {
    margin-bottom: 0;
}

/* Separador entre categorias e links institucionais */
.menu-divider {
    height: 2px;
    background-color: #ddd;
    margin: 20px 20px;
}

/* Links Institucionais */
.menu-institutional {
    padding: 10px 0 30px;
}

.institutional-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    padding: 15px 20px 10px;
    margin: 0;
    letter-spacing: 1px;
}

.menu-institutional ul {
    margin-bottom: 20px;
}

.menu-institutional li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-institutional a {
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    color: #666;
    padding: 14px 20px;
}

.menu-institutional a:hover {
    color: var(--color-primary);
    background-color: #fafafa;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   BANNERS DE PUBLICIDADE
   ======================================== */
.ad-banner-top, 
.ad-banner-middle {
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

/* ========================================
   SEÇÃO HERO
   ======================================== */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 20px 15px 0;
}

.hero-content {
    min-width: 0;
}

.hero-sidebar {
    min-width: 280px;
}

/* ========================================
   ARTIGO EM DESTAQUE
   ======================================== */
.highlight-article {
    background-color: var(--color-background);
    margin-bottom: 30px;
}

.article-meta {
    padding: 10px 15px;
    font-size: 12px;
    color: #666;
}

.category-tag {
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
}

.post-time {
    color: #999;
}

.image-wrapper {
    position: relative;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.save-post {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
}

/* Título sobreposto no destaque */
.highlight-title-wrapper {
    position: relative;
    margin-top: -80px;
    padding: 0 15px 20px;
    /* GRADIENTE REMOVIDO */
    background: transparent;
    z-index: 2;
}

.highlight-title-wrapper h2 {
    font-size: 48px;
    margin: 0;
    color: #000;
    background-color: var(--color-background);
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 2px 10px;
    line-height: 1.2;
}

.highlight-title-wrapper h2 a {
    line-height: 1.4;
    color: inherit;
}

.highlight-title-wrapper h2 a:hover {
    color: var(--color-primary);
}

/* ========================================
   TRENDING SIDEBAR
   ======================================== */
.trending-news {
    background-color: var(--color-background);
    padding: 15px;
    margin-bottom: 20px;
}

.trending-news h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.trending-icon {
    font-size: 18px;
    margin-right: 5px;
}

.trending-news ul {
    list-style: none;
}

.trending-news li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

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

.trending-news a {
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.15;
    font-size: 14px;
}

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

.ad-block-sidebar {
    background-color: #f0f0f0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

/* ========================================
   GRID DE NOTÍCIAS
   ======================================== */
.news-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 15px;
}

.news-card {
    background-color: var(--color-background);
    overflow: hidden;
}

.news-card .article-meta {
    padding: 10px 15px 5px;
    font-size: 12px;
    color: #666;
    background-color: var(--color-background);
}

.news-card .image-wrapper {
    position: relative;
    overflow: visible;
}

.news-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Título sobreposto nos cards */
.news-card .card-title-wrapper {
    position: relative;
    margin-top: -50px;
    padding: 0 15px 15px;
    /* GRADIENTE REMOVIDO */
    background: transparent;
    z-index: 2;
}

.news-card .card-title-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    background-color: var(--color-background);
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 2px 8px;
    line-height: 1.4;
}

.news-card .card-title-wrapper h3 a {
    color: #000;
}

.news-card .card-title-wrapper h3 a:hover {
    color: var(--color-primary);
}

/* ========================================
   CONTEÚDO PRINCIPAL
   ======================================== */
.main-content-full {
    padding: 0 15px 20px;
}

/* ========================================
   O MELHOR DE JIJOCA
   ======================================== */
.best-of-jijoca {
    margin-bottom: 30px;
}

.best-of-jijoca h4 {
    font-size: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.listing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.listing-card {
    background-color: var(--color-background);
    padding: 15px;
}

.listing-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* ========================================
   RODAPÉ
   ======================================== */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

/* ========================================
   MENSAGENS DO SISTEMA
   ======================================== */
.message, .system-message {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.message.success, .system-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error, .system-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info, .system-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
    
    .hero-sidebar {
        width: 100%;
        min-width: auto;
    }
    
    .news-grid-3, .listing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 50px; /* Header menor no mobile */
    }
    
    /* Header mobile */
    .logo-img {
        height: 20px;
    }
    
    .sidebar-logo {
        height: 20px;
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .icon-link svg {
        width: 20px;
        height: 20px;
    }
    
    .menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    /* Sidebar mobile */
    .sidebar-menu {
        width: 100%;
        right: -100%;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 15px 10px 0;
    }
    
    /* Destaque mobile */
    .highlight-title-wrapper {
        margin-top: -60px;
        padding: 0 10px 15px;
    }
    
    .highlight-title-wrapper h2 {
        font-size: 28px;
        padding: 2px 8px;
    }
    
    /* Grid mobile */
    .news-grid-3, .listing-grid-3 {
        grid-template-columns: 1fr;
        padding: 20px 10px;
        gap: 20px;
    }
    
    /* Cards mobile */
    .news-card .card-title-wrapper {
        margin-top: -40px;
        padding: 0 10px 10px;
    }
    
    .news-card .card-title-wrapper h3 {
        font-size: 18px;
        padding: 2px 6px;
    }
    
    /* Trending mobile */
    .trending-news {
        padding: 10px;
    }
    
    .trending-news a {
        font-size: 13px;
    }
    
    /* Container mobile */
    .container {
        padding: 0 10px;
    }
    
    .main-content-full {
        padding: 0 10px 15px;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    .logo-img {
        height: 18px;
    }
    
    .highlight-title-wrapper h2 {
        font-size: 24px;
    }
    
    .news-card .card-title-wrapper h3 {
        font-size: 16px;
    }
    
    .header-icons {
        gap: 8px;
    }
}
/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
    background-color: #f5f5f5; /* Cinza lateral igual ao site */
    padding: 0; /* Reduzido de 50px */
    border-top: none;
}

.newsletter-section .container {
    background-color: #fff; /* Fundo branco no conteúdo */
    padding: 40px; /* Reduzido de 50px */
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.newsletter-form-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.newsletter-form-inline input {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: var(--font-body);
}

.newsletter-form-inline input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-form-inline button {
    grid-column: 1 / -1;
    padding: 15px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form-inline button:hover {
    background-color: #c11a20;
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

.social-section {
    background-color: var(--color-primary); /* Fundo VERMELHO */
    padding: 40px 0;
    text-align: center;
}

.social-section .container {
    background-color: transparent; /* SEM fundo branco */
}

.social-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #fff; /* Texto BRANCO */
    margin-bottom: 30px;
}

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

.social-icons-large a {
    color: #fff; /* Ícones BRANCOS */
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-large a:hover {
    opacity: 0.8; /* Hover com opacidade */
    transform: translateY(-5px);
}

/* ========================================
   FOOTER MAIN (Red)
   ======================================== */

.footer-main {
    background-color: var(--color-primary);
    padding: 40px 0;
    color: #fff;
}

.footer-main .container {
    background-color: transparent; /* SEM fundo branco */
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 0.7;
}

.footer-social-small {
    display: flex;
    gap: 15px;
}

.footer-social-small a {
    color: #fff;
    transition: opacity 0.3s;
}

.footer-social-small a:hover {
    opacity: 0.7;
}

/* ========================================
   FOOTER BOTTOM (Black)
   ======================================== */

.footer-bottom-black {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-black .container {
    background-color: transparent; /* SEM fundo branco */
}

.footer-bottom-black p {
    color: #fff; /* Texto branco para aparecer no preto */
    font-size: 13px;
    margin: 0;
}

/* ========================================
   RESPONSIVIDADE - NEWSLETTER E FOOTER
   ======================================== */

@media (max-width: 992px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .newsletter-form-inline {
        grid-template-columns: 1fr;
    }
    
    .social-section {
        padding: 40px 0;
    }
    
    .social-section h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .social-icons-large {
        gap: 20px;
    }
    
    .social-icons-large a svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-social-small {
        justify-content: center;
    }
}

/* ========================================
   MAIS LIDAS (Cards sem imagem)
   ======================================== */

.most-read-section {
    padding: 40px 0;
    border-top: 2px solid #eee;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.most-read-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.most-read-card {
    background-color: var(--color-background);
    padding: 25px;
    border-left: 4px solid var(--color-primary);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.most-read-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.read-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.2;
    min-width: 50px;
}

.read-content {
    flex: 1;
}

.read-content .category-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.read-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.read-content h3 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.read-content h3 a:hover {
    color: var(--color-primary);
}

/* Responsividade - Mais Lidas */
@media (max-width: 992px) {
    .most-read-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .most-read-card {
        padding: 20px;
    }
    
    .read-number {
        font-size: 36px;
        min-width: 40px;
    }
}

@media (max-width: 768px) {
    .most-read-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .most-read-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .most-read-card {
        padding: 15px;
        gap: 15px;
    }
    
    .read-number {
        font-size: 32px;
        min-width: 35px;
    }
    
    .read-content h3 {
        font-size: 16px;
    }
}}

/* ============================================
   CSS MENU INTEGRADO NO HEADER - Portal Jijoca
   Adicionado em: 23/01/2026
   Links pretos, hover vermelho
   ============================================ */

/* ========================================
   1. HEADER PRINCIPAL
   ======================================== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* ========================================
   2. MENU HORIZONTAL INTEGRADO NO HEADER
   ======================================== */
.header-menu {
    flex: 1;
    display: none; /* Escondido no mobile */
}

@media (min-width: 1024px) {
    .header-menu {
        display: block; /* Visível no desktop */
    }
}

.header-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; /* CENTRALIZADO */
    gap: 5px;
    margin: 0;
    padding: 0;
}

.header-menu-list > li {
    position: relative;
}

.header-menu-list > li > a {
    display: block;
    padding: 10px 16px;
    color: #000; /* Links pretos */
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    border-radius: 4px;
}

.header-menu-list > li > a:hover {
    color: #E31E24; /* Hover: apenas letra vermelha */
}

/* Botão "+" no Header */
.header-plus {
    background: transparent;
    border: 2px solid #E31E24;
    color: #E31E24;
    font-size: 20px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-plus:hover {
    background-color: #E31E24;
    color: #fff;
    transform: rotate(90deg);
}

/* Dropdown do "+" no Header */
.header-dropdown {
    position: relative;
}

.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10000;
    overflow: hidden;
}

.header-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.header-dropdown-menu a:hover {
    background-color: #f8f8f8;
    color: #E31E24;
    padding-left: 28px;
}

.header-dropdown-menu .dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 8px 0;
}

/* ========================================
   3. ÍCONES DO HEADER
   ======================================== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Redes Sociais no Header (Desktop only) */
.social-header {
    display: none;
}

@media (min-width: 1024px) {
    .social-header {
        display: flex;
        gap: 12px;
        align-items: center;
        padding-right: 15px;
        border-right: 1px solid #ddd;
    }
    
    .social-icon {
        color: #666;
        transition: color 0.3s;
    }
    
    .social-icon:hover {
        color: #E31E24;
    }
}

/* Esconder hamburger no desktop */
@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* ========================================
   4. MENU HAMBURGER (MOBILE) - MANTIDO
   ======================================== */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #E31E24;
    background-color: #f8f8f8;
}

.sidebar-logo {
    height: 30px;
    width: auto;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.sidebar-close:hover {
    color: #E31E24;
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 20px 0;
}

.menu-section {
    margin-bottom: 25px;
    padding: 0 20px;
}

.menu-section-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin: 0 -20px;
    color: #E31E24;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #f8f8f8;
    border-left: 4px solid #E31E24;
    transition: all 0.3s;
}

.menu-section-link:hover {
    background-color: #E31E24;
    color: #fff;
    padding-left: 30px;
}

.menu-icon {
    margin-right: 10px;
    font-size: 20px;
}

.menu-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

.menu-section-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.menu-section-list a {
    display: block;
    padding: 12px 0 12px 20px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.menu-section-list a:before {
    content: '›';
    position: absolute;
    left: 0;
    color: #E31E24;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s;
}

.menu-section-list a:hover {
    color: #E31E24;
    padding-left: 30px;
}

.menu-section-list a:hover:before {
    opacity: 1;
}

.menu-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    margin-top: 30px;
}

.menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-social a {
    color: #666;
    transition: all 0.3s;
}

.menu-social a:hover {
    color: #E31E24;
    transform: translateY(-3px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 9999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   5. ANIMAÇÕES
   ======================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-dropdown-menu.active {
    animation: fadeInDown 0.3s ease-out;
}

@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 0;
    }
}

.sidebar-menu.active {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   6. RESPONSIVE
   ======================================== */
@media (max-width: 1023px) and (min-width: 768px) {
    .sidebar-menu {
        width: 60%;
        max-width: 350px;
    }
}

@media (max-width: 1200px) {
    .header-menu-list > li > a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ========================================
   7. ACESSIBILIDADE
   ======================================== */
.header-menu-list a:focus,
.header-plus:focus,
.header-dropdown-menu a:focus {
    outline: 2px solid #E31E24;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .header-menu-list a,
    .header-plus,
    .header-dropdown-menu,
    .sidebar-menu,
    .sidebar-overlay {
        transition: none;
        animation: none;
    }
}

/* ========================================
   FIM DO CSS MENU INTEGRADO
   ======================================== */