
.page-climatizacao {
   
    margin: 0;
    padding: 5px 15px 20px;
}

/* INTRO */
.intro-section h1 {
    font-size: clamp(2em, 8vw, 2em);
    font-weight: 800; /* Mais espesso para destacar */
    margin-bottom: 20px;
}

.intro-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
    text-align: justify;

}

/* PRODUTOS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    margin-top: 90px;
    text-align: center;
    margin-bottom: 0;
}

.product-item img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-item p {
    font-weight: 600;
}


/* Tablet */
@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .intro-section h1 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .intro-section h1 {
        font-size: 1.8rem;
    }

    .intro-section p,
    .service-block p {
        font-size: 1rem;
    }

    .product-item img{
        width: 100%;
        /* Use 'height' fixo em vez de 'max-height' para obrigar todas a serem iguais */
        height: 1000px; /* Reduzimos um pouco a altura no telemóvel para não ocupar muito espaço */        /* 'cover' faz com que a imagem preencha todo o retângulo, cortando as sobras sem distorcer */
        object-fit: cover; 
        margin-bottom: 10px;
        border-radius: 8px; /* Opcional: dá um toque moderno com cantos arredondados */
    }
}
