
.menu {
    background: linear-gradient(90deg, #006F6E 0%, #0D153B 100%);
    max-width: 450px;
    border-radius: 0px 0px 0px 20px;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99999999999;
}

.menu>ul {
    display: flex;
    /*flex aqui - novo*/
    justify-content: space-around;
    gap: 24px;
   
}
.menu>ul>a {
    color: white;
}

.menu>ul>li {
    list-style-type: none;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.menu>ul>a>li:hover {
    text-decoration: underline;
    
}