/* Estilos globais para garantir que o menu funcione em todas as páginas */
#menu-lateral {
    width: 280px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -290px;
    background-color: var(--cor-menu-fundo, #0071ff);
    color: var(--cor-menu-texto, #ffffff);
    z-index: 9990;
    transition: left 0.3s ease;
    padding-top: 70px;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

#menu-lateral.menu-aberto {
    left: 0;
}

#menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9980;
}

#menu-overlay.overlay-ativo {
    display: block;
}