.sec1 {
    background-image: linear-gradient(to bottom, rgba(212, 212, 212, 0.8), rgba(230, 229, 229, 0.8)), url("../img/fondo_manteniment.webp");
    min-height: 100vh; /* Garantim que ocupi tota la pantalla */
    background-attachment: fixed;
    background-position: center; /* Centrem millor la imatge */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10% 5%; /* Percentatges per adaptar-se millor a diferents pantalles */
    display: flex; /* Flexbox per centrar contingut */
    align-items: center; /* Centrem el contingut verticalment */
    justify-content: center; /* Centrem el contingut horitzontalment */
    box-sizing: border-box; /* Assegura't que el padding no augmenti l'amplada */
    color: #333; /* Text fosc per contrastar */
}
.sec1 p{
    font-size: 24px;
}

/*🔹 SEC2*/
.sec2{
    background-color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
}

.sec2 h2{
    color: #5d5d5d;
}
.sec2 p{
    color: #161616;
    font-size: 35px;
}

.sec2 ul li{
    font-size: 20px;
}

/*🔹 SEC3*/
.sec3{
    background-color: #f9f9f9;
    color: #161616;
    padding-left: 50px;
    padding-right: 50px;
}

.sec3 h2{
    font-size: 3rem;
}

.sec3 h3{
    font-size: 2rem;
}

.sec3 p{
    font-size: 22px;
}

/*🔹 Estils per a dispositius tablets */
@media (max-width: 1200px) {
    .sec1 {
        background-attachment: scroll; /* Canvia de 'fixed' a 'scroll' per evitar problemes en mòbil */
        background-position: center; /* Ajusta la posició de la imatge */
        min-height: 200px; /* Redueix l'alçada mínima per a pantalles més petites */
        padding-top: 50px; /* Ajusta el padding superior per a mòbil */
        padding-bottom: 50px;
    }
    .sec1 p{
        font-size: 20px;
    }
    
    .sec2 h3{
        font-size: 32px;
    }
    .sec2 p{
        color: #161616;
        font-size: 26px;
    }
 
    .sec3 h3{
        font-size: 32px;
    }
    .sec3 p{
        color: #161616;
        font-size: 20px;
    }
    .sec3 ul li{
        color: #161616;
        font-size: 20px;
    }
}


/*🔹 Estils per a dispositius mòbils */
@media (max-width: 768px) {
    .sec1 {
        background-attachment: scroll; /* Canvia de 'fixed' a 'scroll' per evitar problemes en mòbil */
        background-position: center; /* Ajusta la posició de la imatge */
        min-height: 200px; /* Redueix l'alçada mínima per a pantalles més petites */
        padding-top: 80px; /* Ajusta el padding superior per a mòbil */
        padding-bottom: 50px;
    }
    .sec1 h3{
        font-size: 26px;
    }
    .sec1 p{
        font-size: 18px;
    }
    .sec2 {
        padding-top: 30px; /* Ajusta el padding superior per a mòbil */
        padding-bottom: 30px;
    }
    .sec2 h3{
        font-size: 28px;
    }
    .sec2 p{
        color: #161616;
        font-size: 22px;
    }
    .sec3 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sec3 h2{
        font-size: 2rem;
    }
    .sec3 h3{
        font-size: 28px;
    }
    .sec3 p{
        color: #161616;
        font-size: 18px;
    }
    
}