.navbar-nav {
    background-color: rgb(255, 255, 255);
    width: 16%;
    height: 100vh; /* Alterado para 100% da altura da viewport */
    margin-left: 0;
    display: flex;
    align-items: center;
    position: fixed; /* Alterado para fixed */
    top: 0; /* Fixa o menu no topo */
    left: 0; /* Fixa o menu no lado esquerdo */
}

.menu-ul {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 5px;
    position: absolute;
    top: 255px;
}

.menu-item {
    width: 80%;
    text-align: left;
    margin: auto;
    padding: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 20%;
    transition: 0.5s ease-in-out;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    border-radius: 15px;
}

a {
    color: #333333;
}

.menu-item > i {
    line-height: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 12%;
    font-size: 1.2rem;
}


.menu-item:hover {
    background-color: #ffd412 !Important;
    cursor: pointer;
    color: #333333;
    transition: 0.5s ease-in-out;
}

.menu-item-custom:hover {
    background-color: #333333 !important;
    color: white !important;
}

.titulo {
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: 64px;
}

.logout {
    width: 80%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 10px;
}
