
    /* Ajuste para o navbar fixo */
    body {
        padding-top: 101px;
    }

    .navbar-blue {
        background-color: #0054a6;
        color: white;
        z-index: 1040;
    }

    a {
        text-decoration: none !important;
    }

    /* MENU LATERAL SUSPENSO */
    .menu-lateral {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        /* Largura do menu */
        height: 100vh;
        background-color: #fff;
        z-index: 1100;
        /* Acima de tudo */
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
        /* Escondido à esquerda */
        overflow-y: auto;
    }

    /* Classe ativada via JS */
    .menu-lateral.open {
        transform: translateX(0);
    }

    /* FUNDO ESCURO (OVERLAY) */
    .modal-menu-lateral-bckoud {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1090;
        display: none;
        /* Escondido por padrão */
    }

    /* Ajuste interno do menu */
    .menu-lateral-body {
        height: 100%;
    }