body{
    margin: 0;
    font-family: sans-serif;
}
header{
    width: 100%;
    background: #4E94AB;
}

#btn-menu{display: none}


.hamburguesa-container {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-left: 5%;
}
li {
    display: flex;} 
.menuiconos{
    width: 15%;}

@media (min-width: 768px) {
 .hamburguesa-container {
     display: none;} 
    
 .menu li:hover{
        background: rgba(0,0,0,0.3);   
    }
    .menuiconos{
        opacity: 0;} 
}

.hamburguesa {
align-self: center;
}

header label{
    display: none; 
    width: 3rem; 
    height: 3rem; 
    padding: 1rem; 
}

header label:hover{
    cursor: pointer; 
    background: rgba(0,0,0,0.3);
}

.menu ul{
    margin: 0;
    list-style: none;
    display: flex;
    right: 0;
}

.menu li{
    border-right: 1px solid white;
}
.menu li:hover{
    background: rgba(0,0,0,0.3);   
}
.menu li a{
    display: block;
    padding: .5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    text-align: start;
}

@media (max-width:768px){
    header label{
        display: block;
    }
    .menu{
        position: absolute;
        background: #ececec;
        width:40%;
        margin-left: -100%;
        transition: all .3s;
    }
    .menu ul{
        flex-direction: column;
        padding: 0px;
    }
    
    .menu li a{
        display: block;
        padding: 1.5rem .5rem;
        color: #00BDEB;
        text-decoration: none;
        font-size: 15px;
        text-align: start;}

    .separador {
        border-top: 1px solid rgb(110, 110, 110);
    }



    #btn-menu:checked ~ .menu{
        margin: 0;  
    }

    .hamburguer-menu-items {
        width: 65%;
        top: 12%;
    }
    .menu li:hover{
        background: rgba(195, 195, 195, 0.3);   
    }
}