.hero-carousel {
	width: 100%;
}

.hero-carousel-shape {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 68%; /* más alto */
	clip-path: url(#hero-carousel-clip);
	overflow: hidden;
}

.hero-carousel-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease;
}

.hero-carousel-slide.is-active {
	opacity: 1;
}

@media (max-width: 767px) {
	.hero-carousel-shape {
		clip-path: none;
		padding-top: 90%;
	}
}