.hero-visual {
  border: 1px solid rgba(241, 87, 0, 0.2);
  padding: 0px;
  overflow: hidden;
}

/* ALTURA DEL BLOQUE */

.carousel {
  position: relative;
  width: 100%;
}

.carousel {
  aspect-ratio: 4 / 5;
  height: auto;
}

/* TRACK */

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDES */

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMÁGENES */

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* CONTROLES */

.carousel-controls {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-controls button {
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  padding: 8px 12px;
  font-size: 18px;
  transition: .3s;
}

.carousel-controls button:hover {
  background: transparent;
  color: var(--white);
}

