/* Carrossel Infinito de Clientes - 2 Linhas */

.partners-section {
	padding: 60px 0;
	background-color: #ffffff;
	overflow: hidden;
}

.partners-section h2 {
	margin-bottom: 50px;
	color: #1D6542 !important;
}

/* Linhas estáticas (sem movimento) */
.partners-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
	width: 100%;
	margin-bottom: 30px;
}

.carousel-item {
	flex-shrink: 0;
	width: 200px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-item img {
	max-width: 180px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.carousel-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
	.carousel-item {
		width: 150px;
		height: 80px;
	}

	.carousel-item img {
		max-width: 140px;
		max-height: 60px;
	}

	.partners-row {
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.carousel-item {
		width: 120px;
		height: 60px;
	}

	.carousel-item img {
		max-width: 110px;
		max-height: 50px;
	}

	.partners-row {
		gap: 24px;
	}
}
