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("../images/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;
}


/*servicios*/
.servicios {
    width: 100%;
    padding: 15rem;
}

.servicios__contenedor {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.servicios h6 {
    margin-bottom: 2rem;
}

/* Cada imagen ocupa el 22% del ancho en pantallas grandes (4 caben cómodamente) */
.servicios__fotos {
    flex: 1 1 calc(22%);
    /* crece, encoge, base */
    max-width: 25rem;
    min-width: 17rem;
    text-align: center;
    position: relative;

}

/* Imagen opcionalmente con estilos */
.servicios__fotos img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;

}

/*press on*/
.presson {
    width: 100%;
    height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.presson__titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 40%;

}

.presson__titulo h1 {
    color: white
}

.presson__titulo a {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 0.3rem;
    font-weight: 700;
}

.presson__titulo a:hover {
    border-bottom: 2px solid gray;
}

/*secciones*/
.secciones {
    width: 100%;
    display: flex;
    gap: 8rem;
    justify-content: center;
    padding: 10rem;
    flex-wrap: wrap;
}

.secciones__contenedor {
    max-width: 70rem;
    min-width: 32rem;
    flex: 1 1 calc(30%);
    height: 50rem;
    display: flex;
    flex-direction: column;
    position: relative;
    aspect-ratio: 1/1;

}

.button{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 27rem;
}



@media (max-width: 768px) {
    header {
        height: 9rem;
        flex-wrap: wrap;
    }

    .navbar {
        order: 4;
        width: 100%;
        margin-bottom: 1rem;
    }

    .navbar ul {
        justify-content: space-between;
    }

    .servicios{
        padding: 10rem 3rem;
    }
    .servicios__contenedor {

        width: 100%;
        flex-wrap: wrap;
        justify-content: center;

        align-items: center;
    }

    .servicios__fotos {
        flex:  1 1 calc(45%);
        /* crece, encoge, base */

        max-width: 30rem;
        min-width: 15rem;
        text-align: center;
        position: relative;

    }


}


@media (max-width: 480px) {

    header {


        padding: 0 1rem;

    }

    .navbar__atajos {
        display: flex;
        gap: 1rem;
    }

    .secciones {
   
    padding: 10rem;

   
}

}