header{
    position: fixed;
    z-index: 100;

    width: 100%;
    height: 7vh;

    background-color: black;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-around;
    
}

header a img{
    border-radius: 1vh;
    width: 10vh;

    box-shadow: 0px 0px 10px var(--color-principal);
}

.espacio-enlaces{
    display: flex;
    gap: 2vh;
}

.espacio-enlaces ul li{
    list-style: none;
}

.espacio-enlaces ul li a{
    color: white;
    text-decoration: none;

    transition: 0.3s;
}

.espacio-enlaces ul li a:hover{
    transition: 0.3s;

    color: var(--color-principal);
}

.espacio-enlaces ul li a.activo{
    color: var(--color-principal);
}

/* ============================================= */
/* RESPONSIVE - TABLET Y MÓVIL                    */
/* ============================================= */
 
/* Tablet */
@media (max-width: 1024px){
    header{
        height: 8vh;
        padding: 0 2vh;
        gap: 5vh;
        justify-content: center;
    }
 
    header a img{
        width: 8vh;
    }
 
    .espacio-enlaces{
        gap: 1.5vh;
    }
}
 
/* Móvil */
@media (max-width: 600px){
    header{
        width: 90%;
        height: auto;
        min-height: 7vh;
        flex-wrap: wrap;
        padding: 1.5vh 2vh;
        gap: 1.5vh;
        justify-content: center;
    }
 
    header a img{
        width: 6vh;
    }
 
    .espacio-enlaces{
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5vh 1.5vh;
    }
 
    .espacio-enlaces ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5vh 3vh;
    }
 
    .espacio-enlaces ul li{
        font-size: 1.5vh;
    }
}