.head .container{
    padding: none;
  
}
.head {
    color: magenta;
    position: fixed;
    background-color: var(--background-footer);
    width: 100%;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: .75rem;
    padding-bottom: .75rem;

    border-bottom: 1px solid var(--border-cabecera-mobile);
    z-index: 10;



}

.head__logo {
    margin: 0rem 1rem 1rem 1rem;
    height: auto;
    width: 5rem;
}

.head__navegacion {
    text-align: center;
}

.head__enlace {
    font-size: 1.1rem;

    display: inline-block;

    margin-right: .7rem;
    
    margin-left: .7rem;
}

.head__enlace:hover{
    color: var(--boton-rojo);
    transition: 0.4s;
}

@media ( min-width: 800px){
    .head{
        flex-direction: row; 
        justify-content: space-between;
        height:5rem;
        
    }
    .head__logo{
        margin-bottom: 0;
        height: 3.5rem;
        width: auto;
    }
}

