/* CSS */
.cliente-logos {
  text-align: center;
  padding: 40px 20px;
}

.grid-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.grid-logos img {
  width: 180px;
  height: auto;
  transition: transform 0.3s;
}

.grid-logos img:hover {
  transform: scale(1.05);
}