/*
font-family: 'Montserrat', sans-serif;
font-family: 'Righteous', sans-serif;
*/

/* Estilos generales */
body{
    margin: 0px;
    background-color: #d8d8d8;
    font-family: 'Montserrat', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Righteous', sans-serif;
}


/* Estilos cabecera */
#logo{
    background-color: #00be7f;
    text-align: center;
}

#logo img{
    height: 40px;
    padding: 20px;
}

/* Estilos menú */
#menu{
    background-color: #333333;
}

#menu ul{
    text-align: center;
    padding: 0px;
    margin: 0px;
    /* Arreglo el fallo del espacio entre enlaces */
    display: flex;
    justify-content: center;
}

#menu li{
    display: inline-block;
    
    position: relative;
}

#menu a{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: 15px 25px;
    font-weight: 600;
}

#menu a:hover{
    background-color: #6e6e6e;
    color: #0fe79f;
}

#enlace-activo{
    background-color: #00be7f;
    color: #333333 !important;
}

#enlace-activo:hover{
    background-color: #0fe79f !important;
}

/*
.icono-medio{
    font-size: 24px;
    line-height: 1;
    padding: 10px 25px;
}
*/


/* Menú desplegable */
#menu .desplegable{
    position: absolute;
    /* oculto el desplegable por defecto */
    display: none;
}

#menu .desplegable li{
    display: block;
    color: #333333;
    background-color: #0fe79f;
    /* evita satlo de línea en texto */
    white-space: nowrap;
}

/* muestro el desplegable al hacer hover sobre el li padre */
#menu li:hover .desplegable{
    display: block;
}