/* Patrocinios - estilos frontend (basado en training.css 1206-1344) */
.sponsors-section {
	background-color: #FFFFFF;
	padding: 80px 0;
}

.sponsors-title {
	font-size: 56px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 40px 0;
	line-height: 1.2;
}

.sponsors-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
	max-width: 1000px;
}

.sponsors-paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: #1A1A1A;
	margin: 0;
}

.sponsors-paragraph strong {
	font-weight: 700;
}

.sponsors-logos {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 150px;
	flex-wrap: wrap;
}

.sponsors-logos a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.sponsor-logo {
	height: 60px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.sponsor-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@media (max-width: 1024px) {
	.sponsors-section {
		padding: 60px 0;
	}

	.sponsors-title {
		font-size: 48px;
		margin-bottom: 32px;
	}

	.sponsors-content {
		margin-bottom: 50px;
	}

	.sponsors-logos {
		gap: 32px;
		justify-content: center;
	}

	.sponsor-logo {
		height: 50px;
	}
}

@media (max-width: 768px) {
	.sponsors-section {
		padding: 40px 0;
	}

	.sponsors-title {
		font-size: 40px;
		margin-bottom: 24px;
	}

	.sponsors-content {
		gap: 16px;
		margin-bottom: 40px;
	}

	.sponsors-paragraph {
		font-size: 15px;
	}

	.sponsors-logos {
		gap: 24px;
		justify-content: center;
	}

	.sponsor-logo {
		height: 45px;
	}
}

@media (max-width: 480px) {
	.sponsors-section {
		padding: 32px 0;
	}

	.sponsors-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.sponsors-content {
		gap: 14px;
		margin-bottom: 32px;
	}

	.sponsors-paragraph {
		font-size: 14px;
		line-height: 1.6;
	}

	.sponsors-logos {
		gap: 20px;
		justify-content: center;
	}

	.sponsor-logo {
		height: 40px;
	}
}


