button {
    border: none;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1em;
}
button:hover {
    background-color: var(--azul);
    color: var(--blanco);
}
.foot {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    color: var(--gris_claro);
    border: solid 1px var(--gris_oscuro);
    transition: all .3s ease-in-out;
}

.barra_nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    width: 100%;
    height: 200px;
    z-index: 99;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    .iconoSocial {
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    .iconoSocial:hover {
        color: var(--azul);
        transform: scale(1.1);
    }
    .visible {
        display: block;
    }
    .oculto {
        display: none;
    }

    .menu_sup {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        width: 90%;
        height: auto;
        .nav_idiomas {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            width: 180px;

            .selector {
                width: 40px;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                transition: all .3s ease-in-out;
            }
            .desplegable {
                position: absolute;
                top: 40%;
                width: 50px;
                height: 120px;
                display: none;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
            }

        }
        .nav_logo {
            width: 140px;
            padding-top: 20px;
        }
    }

    .linea {
        max-width: 1200px;
        width: 90%;
        height: 5px;
        border-bottom: solid 1px var(--blanco);
    }

    .menu_inf {
        max-width: 1200px;
        width: 90%;
        padding-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        .item_menu {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            cursor: pointer;
            transition: all .3s ease-in-out;
            text-align: center;
        }
        .item_menu:hover {
            color: var(--azulclaro);
            transform: scale(1.1);
        }
        .texto_menu {
            display: block;
            text-transform: uppercase;
            font-size: .85em;
        }
    }
}




/* MAXIMIZAR Y MINIMIZAR  */


@media only screen and (min-width:350px) and (max-width:1200px) {

    .foot {
        display: flex;
    }
    .barra_nav {
        position: fixed;
        height: 80px;
        top: calc(100vh - 80px);
        border-top: solid 1px var(--azul);
        .menu_sup , .linea {
            display: none;
        }
        .menu_inf {
            width: 100%;
            padding-top: 0;
            justify-content: space-evenly;
            .texto_menu {
                display: none;
            }
            .item_menu:hover {
                transform: scale(1.5);
            }
        }
    }
}


