.header{
    position: fixed;
    top: 0;
    width: 100%;                 /* para abarcar el ancho de la pantalla */
    background: var(--color-negro);
    color: white;
    z-index: 1000;               /* por encima del contenido */
    display: flex;
    align-items: center;
    justify-content: center;

  /*  border: 1px solid salmon; */
}

/* para que no este pegado al borde de la pantalla */
.header .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    
  /*  border: 1px solid rgb(114, 157, 250); */

}

/* el menu se desplega en columna*/
.nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
}

/* ajustes del logo */
.brand{
    font-size: 2rem;
    text-align: center;
    font-weight: 800;
    color: white;
}

/* ajustes del menu */
.menu{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;

    font-family: var(--ffamily-body)
}

.menu__link{
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.menu__link:hover{
    color: var(--color-verde);
    font-weight: 700;
    transform: scale(1.1);
}

/* RESPONSIVO */

/*TABLET

@media (min-width: 768px){
    .header .nav{
        flex-direction: column;
    }
    .nav{
        justify-content: space-between;
        padding-inline: 2rem;
        gap: 2rem;
    }
    .menu{
        justify-content: space-between;
    }
}

*/

