   /* HEADER - COM BARRA VERMELHA FINA */
        header {
            padding: 20px 0;
            position: relative;
            background: var(--color-primary);
            z-index: 1000;
        }

        header {
        transition: transform 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        /* LOGO NO CENTRO */
        .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .logo a:hover {
            text-decoration: none;
        }
        
        .logo-small a:hover {
            text-decoration: none;
        }

        .logo h1 {
            color: #f5f5f5;
            font-size: 28px;
            font-weight: bold;
            margin: 0;
        }

        /* MENU HAMBÚRGUER À ESQUERDA */
        .menu-toggle {
            font-size: 24px;
            cursor: pointer;
            color: #333;
            z-index: 1002;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .menu-toggle:hover {
            background-color: #f5f5f5;
        }

        /* ÍCONE DE BUSCA NO HEADER */
        .search-icon-header {
        font-size: 20px;
        cursor: pointer;
        margin-left: 4px;
        color: #f5f5f5;
        z-index: 1002;
        display: flex
        ;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: background-color 0.3s;
        }

        .fa-bars {
            color: #f5f5f5;
        }

        .search-icon-header:hover {
            background-color: #f5f5f5;
            color: var(--color-primary);
        }

        /* BARRA DE PESQUISA FLUTUANTE - SOBREPOSTA AO CONTEÚDO */
        .search-floating {
            position: fixed;
            top: -100px; /* Começa escondida acima */
            left: 0;
            width: 100%;
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid #ddd;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            z-index: 2500;
            transition: top 0.3s ease;
        }

        .search-floating.active {
            top: 0px; /* Posição abaixo do header */
        }

        .search-floating-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .search-floating-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--color-primary);
            border-radius: 4px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }

        .search-floating-input:focus {
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
        }

        .search-floating-button {
            padding: 15px 30px;
            background-color: var(--color-primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .search-floating-button:hover {
            background-color: #b71c1c;
        }

        .search-floating-close {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 20px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .search-floating-close:hover {
            background-color: #f5f5f5;
            color: var(--color-primary);
        }

        /* MENU LATERAL - EXATAMENTE COMO NO PRINT */
        .side-menu {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100vh;
            background-color: white;
            box-shadow: 2px 0 15px rgba(0,0,0,0.15);
            z-index: 1001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .side-menu.active {
            left: 0;
        }

        /* CABEÇALHO DO MENU LATERAL - SEM BARRA VERMELHA, SEM TEXTO "MENU" */
        .menu-header {
            padding: 25px 20px 15px;
            background-color: #f8f8f8;
            border-bottom: 1px solid #eee;
            position: relative;
        }

        .menu-header h2 {
            font-size: 24px;
            font-weight: bold;
            color: #000;
            text-align: left;
            margin: 0;
        }

        /* BARRA DE PESQUISA DENTRO DO MENU LATERAL */
        .menu-search-container {
            margin: 15px 20px 20px;
            position: relative;
        }

        .menu-search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s;
        }

        .menu-search-input:focus {
            border-color: var(--color-primary);
        }

        .menu-search-button {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 16px;
        }
 /* CONTEÚDO DO MENU LATERAL - EXATAMENTE COMO NO PRINT */
        .menu-content {
            padding: 0 20px 20px;
        }

        /* Lista de categorias - EXATAMENTE como no print */
        .menu-categories {
            list-style: none;
            margin-bottom: 25px;
        }

        .menu-categories li {
            margin-bottom: 12px;
        }

        .menu-categories a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }

        /* Brasil, Esportes, Videos em NEGRITO como no print */
        .menu-categories a.bold-item {
            font-weight: bold;
        }

        .menu-categories a:hover {
            color: var(--color-primary);
        }

        /* LINHA DIVISÓRIA como no print */
        .menu-divider {
            height: 1px;
            background-color: #eee;
            margin: 25px 0;
        }

        /* RODAPÉ DO MENU como no print */
        .menu-footer {
            text-align: center;
            margin-top: 30px;
            color: #666;
            font-size: 14px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        /* X DE FECHAR - FICA FORA DO MENU, DO OUTRO LADO */
        .close-menu {
            position: fixed;
            top: 20px;
            left: 320px;
            font-size: 28px;
            cursor: pointer;
            color: white;
            background-color: var(--color-primary);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 1002;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            opacity: 0;
            pointer-events: none;
        }

        .side-menu.active ~ .close-menu {
        opacity: 1;
        pointer-events: all;
        }

        .close-menu:hover {
            background-color: #b71c1c;
            transform: scale(1.1);
        }

        /* OVERLAY PARA FECHAR MENU */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .menu-overlay.active {
            display: block;
        }

        .search-info {
            display: flex;
            align-items: center;
            justify-content: end;
        }        

        .header-social {
            display: flex;
            gap: 15px;
            padding-right: 20px;
            border-right: 1px solid #ffffff54;
        }

        .header-social a {
            color: #f5f5f5;
            font-size: 18px;
            transition: color 0.3s;
        }

        .header-social a:hover {
            color: #ffffffa8;
        }

        @media (max-width: 760px){
            .header-social {display: none;}
        }

        .menu-ld-social {
            display: flex;
            gap: 15px;
            margin-right: 20px;
        }

        .menu-ld-social a {
            color: #2a2a2a;
            font-size: 18px;
            transition: color 0.3s;
        }

        .menu-ld-social a:hover {
            color: var(--color-primary);
        }


        /* HEADER MENO */
        /* HEADER PEQUENO FIXO / STICKY */
.header-small {
    position: fixed;
    top: -80px; /* escondido no topo */
    left: 0;
    width: 100%;
    background: var(--color-primary);
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 0;
    z-index: 2000;
    transition: top 0.3s ease;
}

.header-small.show {
    top: 0; /* aparece quando rolar */
}

.header-small-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-small h2 {
    color: #f5f5f5;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

.menu-toggle-small,
.search-small-icon {
    font-size: 22px;
    color: #f5f5f5;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.menu-toggle-small:hover,
.search-small-icon:hover {
    background: #ffffff2a;
}

/* MOBILE */
@media (max-width: 760px){
    .logo-small h2 { font-size: 18px; }
   
}

#menu-small-int a{
    text-transform: uppercase;
    color: #f5f5f5;
    font-weight: 600;
    padding: 8px;
    font-size: 14px;
}


#menu-small-int a:hover {
    text-decoration: none;
}

/* ============================================
   HEADER PEQUENO (STICKY) - NOVO DESIGN
   ============================================ */
.header-small {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    border-bottom: 1px solid #f5f5f5;
    padding: 10px 0;
    z-index: 2000;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-small.show {
    top: 0;
}

.header-small-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
}

/* Menu hambúrguer do sticky */
.menu-toggle-small {
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    flex-shrink: 0;
    order: 1;
}

.menu-toggle-small:hover {
    background: rgba(255,255,255,0.1);
}

/* Logo do sticky */
.logo-small {
    text-align: center;
    flex-grow: 1;
    margin: 0 15px;
    order: 2;
}

.logo-link-small {
    text-decoration: none;
    display: inline-block;
}

.site-title-small {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.small-logo {
    max-height: 30px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Ícone de busca do sticky */
.search-info-small {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 3;
}

.header-small .search-icon-header {
    font-size: 20px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.header-small .search-icon-header:hover {
    background: rgba(255,255,255,0.1);
}

/* Esconde o menu de categorias no sticky (só aparece no desktop) */
#menu-small-int {
    display: none;
}

/* Esconde redes sociais no header-small */
.header-small .header-social {
    display: none;
}

/* ============================================
   RESPONSIVO - MOBILE
   ============================================ */
@media (max-width: 768px) {
    /* HEADER PEQUENO MOBILE - MESMO LAYOUT DO HEADER PRINCIPAL */
    .header-small {
        padding: 8px 0;
        height: 50px;
    }
    
    .header-small-content {
        padding: 0 10px;
        min-height: 0;
    }
    
    /* Menu hambúrguer à ESQUERDA */
    .menu-toggle-small {
        font-size: 20px;
        width: 35px;
        height: 35px;
        order: 1;
    }
    
    /* Logo no CENTRO */
    .logo-small {
        order: 2;
        margin: 0 5px;
        flex-grow: 1;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .site-title-small {
        font-size: 16px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .small-logo {
        max-height: 25px;
    }
    
    /* Ícone de busca à DIREITA */
    .search-info-small {
        order: 3;
    }
    
    .header-small .search-icon-header {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   DESKTOP (acima de 768px)
   ============================================ */
@media (min-width: 769px) {
    /* HEADER PEQUENO DESKTOP - LAYOUT COMPLETO */
    .header-small-content {
        justify-content: space-between;
    }
    
    #menu-small-int {
        display: none!important;
    }
    
    /* Esconde menu hambúrguer no desktop (usa o do header principal) */
    .menu-toggle-small {
        display: none!important;
    }
    
    /* Logo à ESQUERDA no desktop */
    .logo-small {
        flex-grow: 0;
        text-align: left;
        margin: 0;
        order: 1;
    }
    
    /* Menu de categorias no CENTRO */
    #menu-small-int {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        margin: 0 20px;
        order: 2;
    }
    
    #menu-small-int a {
        text-transform: uppercase;
        color: #f5f5f5;
        font-weight: 600;
        padding: 8px;
        font-size: 14px;
        text-decoration: none;
        white-space: nowrap;
    }
    
    #menu-small-int a:hover {
        text-decoration: underline;
    }
    
    /* Redes sociais + busca à DIREITA */
    .search-info {
        display: flex;
        align-items: center;
        order: 3;
    }
    
    .header-small .header-social {
        display: flex;
        gap: 15px;
        padding-right: 20px;
        border-right: 1px solid rgba(255,255,255,0.3);
    }
    
    .header-small .header-social a {
        color: #f5f5f5;
        font-size: 16px;
    }
}