.vts-informes {
	opacity: 0;
}

.vts-informes.is-ready {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.vts-informes__slides {
	position: relative;
}

.vts-informes__slide {
	display: none;
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
}

.vts-informes__slide.is-active {
	display: flex;
}

.vts-informes__image {
	flex: 1 1 58%;
}

.vts-informes__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.vts-informes__content {
	flex: 1 1 42%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-family: "Inter Tight", sans-serif;
	color: #FFFFFF;
}

.vts-informes__nav {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.vts-informes__nav .vts-informes__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: #FFFFFF;
	color: #FF2730;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.vts-informes__nav .vts-informes__arrow:hover {
	background-color: #000000;
	color: #FFFFFF;
}

.vts-informes__counter {
	font-size: clamp(29px, 2.61vw + 10.4px, 48px);
	font-weight: 700;
	line-height: normal;
	margin-bottom: 8px;
}

.vts-informes__title {
	font-size: clamp(17px, 0.96vw + 10.14px, 24px);
	font-weight: 700;
	line-height: normal;
	margin: 0 0 12px;
}

.vts-informes__text {
	font-size: clamp(11px, 0.96vw + 4.15px, 18px);
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 24px;
}

.vts-informes__text p {
	margin: 0;
}

.vts-informes__button {
	display: inline-block;
	padding: 16px 32px;
	font-size: clamp(10px, 0.83vw + 4.12px, 16px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #FFFFFF;
	background-color: #000000;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.vts-informes__button:hover {
	background-color: #FFFFFF;
	color: #000000;
}

.vts-informes.vts-informes--single .vts-informes__nav {
	display: none;
}

@media (max-width: 768px) {
	.vts-informes__slide.is-active {
		flex-direction: column;
		align-items: flex-start;
	}

	.vts-informes__image,
	.vts-informes__content {
		flex: 1 1 100%;
		width: 100%;
	}
}
