/* Igualar ancho con breadcrumb */
.data-section .container-large,
.data-section-alt .container-large,
.data-section-inverted .container-large {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Data sections */
.data-section {
	padding: 80px 0;
}

.data-section-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.data-section-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.data-section-title {
	font-size: 48px;
	font-weight: 700;
	color: #1A1A1A;
	line-height: 1.2;
}

.data-section-text {
	font-size: 16px;
	line-height: 1.8;
	color: #1A1A1A;
}

.data-section-chart {
	position: relative;
	width: 100%;
}

.chart-zoom {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background-color: white;
	border: 1px solid #E5E5E5;
	border-radius: 6px;
	font-size: 14px;
	color: #1A1A1A;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.chart-zoom:hover {
	background-color: #F8F9FA;
	border-color: #0070C1;
	color: #0070C1;
}

.chart-zoom svg {
	width: 18px;
	height: 18px;
}

.data-section-alt {
	padding: 80px 0;
	background-color: #F8F9FA;
}

.data-section-alt-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.data-section-alt-chart {
	width: 100%;
}

.data-section-alt-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.data-section-alt-title {
	font-size: 48px;
	font-weight: 700;
	color: #1A1A1A;
	line-height: 1.2;
}

.data-section-alt-text {
	font-size: 16px;
	line-height: 1.8;
	color: #1A1A1A;
}

/* Orden invertido */
.data-section-inverted {
	direction: rtl;
}

.data-section-inverted > * {
	direction: ltr;
}

.uve-chart-container {
	width: 100%;
	min-height: 400px;
}

@media (max-width: 1024px) {
	.data-section-wrapper,
	.data-section-alt-wrapper {
		gap: 60px;
	}

	.data-section-title,
	.data-section-alt-title {
		font-size: 38px;
	}
}

@media (max-width: 768px) {
	.data-section,
	.data-section-alt {
		padding: 60px 0;
	}

	.data-section-title,
	.data-section-alt-title {
		font-size: 32px;
	}

	.data-section-wrapper,
	.data-section-alt-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.chart-zoom {
		position: static;
		margin-bottom: 16px;
		width: 100%;
		justify-content: center;
	}

	.uve-chart-container {
		min-height: 300px;
	}
}

