.menu-container {
    position: fixed;
    z-index: 55;
    top: 0;
    width: 580px;
    left: 50%;
    transform: translate(-50%);
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 44px;
}

.menu {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #C5B7AD66;
}

.menu.participa-mode {
    color: #3C3C3B66;
}

.menu-boton {
    cursor: pointer;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 450;
    font-size: 20px;
    z-index: 65;
}

.menu-links {
    display: none;
    flex-direction: column;
    width: 580px;
    height: auto;
    width: 580px;
    align-items: center;
    background-color: #3C3C3BF2;
    border-radius: 34px;
    padding-bottom: 10vh;
    padding-top: 15vh;
    margin-top: -47px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.menu-container.open .menu-links {
    display: flex;
}

.menu-links a {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 450;
    line-height: 45px;
    font-size: 50px;
    text-decoration: none;
    color: #C5B7AD;
    margin-bottom: 28px;
    text-align: center;
}

.menu-boton .menu-label {
  color: #C5B7AD;
  transition: color 0.3s ease;
}

.menu-boton .menu-close { 
    display: none; 
}
.menu-container.open .menu-label { 
    display: none; 
}
.menu-container.open .menu-close { 
    display: inline; 
    color: #C5B7AD;
}

@media screen and (max-height: 990px) {
    .menu-links {
        padding-bottom: 5vh;
        padding-top: 10vh;
    }

    .menu-links a {
        line-height: 40px;
        font-size: 40px;
    }
}

@media(max-width: 991px) {

    .menu-container {
        width: 100vw;
        margin-top: 50px;
        box-sizing: border-box;
        z-index: 55555;
    }

    .menu-container.open .menu-links {
        width: 85vw;
    }

    .menu-links a {
        line-height: 3vh;
        font-size: 4vh;
    }

    .menu-label {
        position: absolute;
        top: -20px;
        right: 30px;
    }

}