/*
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.875rem, 5vw, 5.625rem);
  width: 95%;
  max-width: 125rem;
  margin: 0 auto;
}

.cliente-item {
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cliente-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cliente-item img:hover {
  transform: scale(1.05);
}

@media (min-width: 300px) and (max-width: 400px) {
	.clientes-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}
	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}
}

@media (min-width: 401px) and (max-width: 600px) {
	.clientes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}
	.cliente-item img {
		max-width: 95%;
		max-height: 95%;
	}
}

@media (min-width: 601px) and (max-width: 799px) {
	.clientes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}
	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}
}


@media (min-width: 800px) and (max-width: 1024px) {
	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}
	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}
}

@media (min-width: 1025px) and (max-width: 1440px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}
	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}
}

@media (min-width: 1441px) and (max-width: 1800px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}
	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}
}

@media (min-width: 1801px) and (max-width: 2200px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}
	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}
	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}
}

@media (min-width: 2201px) and (max-width: 2560px) {

}

@media (min-width: 2561px) and (max-width: 3560px) {

}
*/

.clientes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.875rem, 5vw, 5.625rem);
	width: 95%;
	max-width: 125rem;
	margin: 0 auto;
}

.cliente-item {
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cliente-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.cliente-item img:hover {
	transform: scale(1.05);
}

@media (min-width: 300px) and (max-width: 400px) {

	.clientes-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}

	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}

}

@media (min-width: 401px) and (max-width: 600px) {
	.clientes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}

	.cliente-item img {
		max-width: 95%;
		max-height: 95%;
	}

}

@media (min-width: 601px) and (max-width: 799px) {

	.clientes-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 22vw;
	}

	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}

}

@media (min-width: 800px) and (max-width: 1024px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}

	.cliente-item img {
		max-width: 85%;
		max-height: 85%;
	}

}

@media (min-width: 1025px) and (max-width: 1440px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}

	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}

}

@media (min-width: 1441px) and (max-width: 1800px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}

	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}

}

@media (min-width: 1801px) and (max-width: 2200px) {

	.clientes-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0.5rem;
	}

	.cliente-item {
		aspect-ratio: auto;
		padding: 0.4rem;
		max-height: 30vw;
	}

	.cliente-item img {
		max-width: 90%;
		max-height: 90%;
	}

}

@media (min-width: 2201px) and (max-width: 2560px) {}

@media (min-width: 2561px) and (max-width: 3560px) {}