header {
    width: 100%;
    position: fixed;
    background-color: white;
    top: 0;
    height: 7rem;
    padding: 0 3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
}

.navbar ul li {
    text-transform: uppercase;
}

.navbar__atajos {
    display: flex;
    gap: 2rem;
}

.logo a,
.logo span {
    font-size: 4.8rem;
}

.logo span{
    color: var(--colorPrimario);
}
.principal {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5)), url("/img/pexels-cottonbro-3997374.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.principal__titulo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    /* para que crezca al 100% del contenedor */
    max-width: 80rem;
    /* límite máximo */
    min-width: 30rem;

}

.principal__iconos ul {
    display: flex;
    gap: 2rem;
}

.principal__titulo h4 {
    color: white;
}

.principal__iconos ul li a i {
    font-size: 3rem;
}