    #btn-menu-trigger {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 35;
        background-color: #2c3e50;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }

    #btn-menu-trigger:hover {
        transform: scale(1.1);
        background-color: #34495e;
    }

    #menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: white;
        z-index: 35;
        display: flex;
        flex-direction: column;
        padding: 2rem;
        overflow-y: auto;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .menu-oculto {
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .menu-visivel {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .btn-fechar-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .conteudo-menu-interno {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .perfil-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        color: #2c3e50;
    }

    .texto-boas-vindas {
        display: flex;
        flex-direction: row;
        font-size: 1.2rem;
        gap: .5rem;
    }

    .item-menu {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 10px;
        text-decoration: none;
        color: #4a5568;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
        font-weight: 500;
    }

    .item-menu:hover {
        background-color: #f7fafc;
        color: #2c3e50;
    }

    .icon-item {
        width: 24px;
        height: 24px;
        color: #718096;
    }

    .divisor-menu {
        border: 0;
        border-top: 2px solid #edf2f7;
        margin: 10px 0 20px 0;
    }

    .divisor-menu-suave {
        border: 0;
        border-top: 1px solid #edf2f7;
        margin: 20px 0;
    }

    .titulo-secao {
        display: block;
        font-size: 0.9rem;
        text-transform: uppercase;
        color: #a0aec0;
        margin-bottom: 10px;
        padding-left: 10px;
        font-weight: bold;
        letter-spacing: 0.05em;
    }

    .btn-sair-estilizado {
        width: 100%;
        padding: 12px;
        background-color: #fff5f5;
        color: #c53030;
        border: 1px solid #feb2b2;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.2s;
        text-align: center;
    }

    .btn-sair-estilizado:hover {
        background-color: #c53030;
        color: white;
    }

    .destaque-login {
        font-size: 1rem;
        color: #2c3e50;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 2px solid #3498db;
        justify-content: center;
        align-items: center;
        width: 100%;

    }

    @media (max-width: 1115px) {
        #btn-menu-trigger {
            display: block !important;
        }

        .botao-voltar {
            display: flex;
            justify-content: flex-end;
            width: 100%;
        }
    }

    @media (max-width: 600px) {
        #btn-menu-trigger {
            top: 15px;
            left: 10px;
            width: 38px;
            height: 38px;
        }

        .logo-nav,
        .texto-boas-vindas {
            font-size: 1.3rem !important;
        }

        .texto-boas-vindas {
            font-size: 1.1rem !important;
            padding: 15px 10px;
        }

        .span-ola,
        .icon-perfil-grande {
            display: none;
        }
    }
