section {
  margin: 0 auto;
  padding: 0rem 4rem;
  text-align: center;
  margin-top: 85px;
}

section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #CA2026;
  font-family: sans-serif;
  margin-bottom: 2.5rem;
}


/* GALERÍA DE PRODUCTOS*/

.galeria-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* escritorio */
  gap: 2rem;
  align-items: stretch;
  grid-auto-rows: 250px;
}

.galeria-img img {
  width: 100%;
  height: 100%; /* corregido */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 8%);
  transition: transform 0.4s ease;
}

.galeria-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* imágenes especiales */
.img-vertical {
  grid-row: span 2;
}

.img-horizontal {
  grid-column: span 1;
  grid-row: span 1;
}


/* CLIENTES*/
.productos-img {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.productos-img img {
  max-width: 1250px;
  width: 100%;

}

.productos-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #CA2026;
  font-family: sans-serif;
  margin-bottom: 0.1rem;
}





/* Tablets — Ajusta columnas */
@media (max-width: 1024px) {
  .galeria-img {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }
}

/* Celulares grandes */
@media (max-width: 768px) {
  .galeria-img {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .img-vertical {
    grid-row: span 1; /* evita que rompa la cuadrícula */
  }

  .productos-img img {
    max-width: 500px;
    padding: 2rem;
  }

  section h1,
  .productos-title {
    font-size: xx-large;
  }
}

/* Celulares pequeños */
@media (max-width: 480px) {
  section {
    padding: 0 1rem;
  }

  .galeria-img {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .productos-img img {
    max-width: 100%;
    padding: 1rem;
  }

  section h1,
  .productos-title {
    font-size: x-large;
  }
}
