.menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    padding: 3%;
    width: 60%;
    height: 100vh;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 25;
}

.menu.active {
    transform: translateX(0);
}

.overlay.active {
    display: block;
}


.sidebar-links {
    list-style: none;
    margin-top: 20px;
    width: 100%;
    height: 80%;
    overflow-y: auto;
    scrollbar-width: none;
}

.sidebar-links .menu-separator {
    width: 80%;
    height: 2px;
    background-color: #dedede7a;
}

.sidebar-itens {
    display: flex;
    vertical-align: center;
    align-items: center;
    gap: 0 20px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    padding: 15px 10px;
    border-radius: 0;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
}

.sidebar-itens:hover {
    border-color: inherit;
}

.sidebar-itens:hover:last-child{
    border-color: transparent;
}

@media only screen and (min-width: 769px){

    .menu {
        width: 25%;
    }
    

}