.nav-links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.mundo-inverte-btn{
   all: unset;
   display: flex;
   background: white;
   border-radius: 100%;
   width: 3vh;
   height: 3vh;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   transition: all 0.2s ease-in-out;
}

.mundo-inverte-btn:hover{
   transform: scale(1.05);
}

.mundo-inverte-btn img{
   width: 3.906vh;
   height: 3.906vh;
}

@media (max-width: 480px){
 .nav-links{
    display: inline-flex;
    justify-content: flex-start;
    overflow-x: scroll;
    overflow-y: visible;
    max-height: none;
    width: 100%;
 }
 .nav-links::-webkit-scrollbar {
    display: none;
 }   
}