/*RESET SITE*/
* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*MENU*/
.menu {
    display: flex;
    align-items: center;
}
.menu a {
    color: #FFFFFF; /*#998e91;*/ /*Color menu*/
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
}
.mostrar-menu,
.esconder-menu {
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}
.mostrar-menu {
    order: 1;
}
.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover {
    color: #D5B198; /*color al pasar por menu*/
}
#check {
    display: none;
}
.submenu {
    position: relative;
    display: inline-block;
}
.submenu-content {
    display: none;
    position: absolute;
    background-color: #290d19;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    white-space: nowrap;
}
.submenu-content a {
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.submenu-content a:hover {
    background-color: #463209;
}
.submenu:hover .submenu-content {
    display: block;
}

/*RESPONSIVE*/
@media (max-width: 768px) {
    .mostrar-menu,
    .esconder-menu {
        display: block;
    }
    .menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #290d19; /* #4D4D5C;*/
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
        flex-direction: column;
    }
    .menu a {
        display: block;
        padding: 20px;
    }
    .submenu-content {
        position: static;
        box-shadow: none;
        background: none;
        white-space: normal;
    }
    .submenu-content a {
        padding: 10px 20px;
    }
    .esconder-menu {
        position: absolute;
        top: 40px;
        right: 40px;
    }
    #check:checked ~ .menu {
        right: 0;
    }
    .menu.menu-open {
        right: 0;
    }
}
