.header{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--oscuro);
}

.header__nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;    
    max-width: 1500px;
    padding: 0 15px;
    background-color: var(--oscuro);
    z-index: 6;
    top: 0;
}

.header__nav--conteiner-left .logo-container{
   display: flex;
   justify-content: center;
   align-items: center;
   width: auto;
   height: 100%;
}

.header__nav--conteiner-right ul{
    list-style: none;   
}
.header__nav--conteiner-right ul li a{
    color: white;
    text-decoration: none;   
}



.hamburger-opciones{
    position: fixed;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: black;
    transition: all .5s;
    z-index: 5;
}
.hamburger-opciones--desaparecer{
    display: none;
}


#container-menu-mobile ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding-bottom: 20%;
}

#container-menu-mobile ul li{
    margin-bottom: 10px;
    list-style: none;
}
 
#container-menu-mobile ul li a{ 
    font-size: 3rem;
    color: var(--clarito);
    font-weight: bold;
    text-decoration: none;
}

#container-menu-mobile ul li a button{ 
    width: 130px;
    height: 45px;
    font-size: 2rem;
    color: white;
    background-color: #00adb5;
    border-radius: 30px;
    border: none;
}



@media(max-height: 400px){ 
    #container-menu-mobile ul{
        justify-content: flex-end;
        padding: 0;
        }
}