.hero-slideshow {
  position: relative;
}

/* Control de altura para los slides */
.hero-slideshow__item {
  position: relative;
  width: 100%;
  display: block;
}

/* Wrapper de imagen con altura controlada */
.hero-slideshow__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.hero-slideshow__content {
  align-items: flex-start;
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  left: 50%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 36px 24px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .hero-slideshow__content {
    padding: 40px;
  }
}

/* Picture toma el 100% del wrapper */
.hero-slideshow__image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Imagen con recorte centrado - CLAVE PARA EL RECORTE */
.hero-slideshow__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slideshow__title {
  font-size: 36px;
  line-height: 1;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .hero-slideshow__title {
    font-size: 96px;
  }
}

.hero-slideshow__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .hero-slideshow__subtitle {
    font-size: 16px;
  }
}

.hero-slideshow__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .hero-slideshow__text p {
    font-size: 24px;
  }
}

.hero-slideshow__buttons {
  align-items: center;
  display: flex;
  gap: 16px;
}

.hero-slideshow__link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.hero-slideshow__navigation,
.hero-slideshow__pagination {
  display: flex;
  gap: 15px;
}

.hero-slideshow__controls {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}

@media only screen and (min-width: 1200px) {
  .hero-slideshow__controls {
    justify-content: center;
  }
}

.hero-slideshow .swiper-pagination-bullet {
  background-color: #b4bec7;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  opacity: 1;
  width: 12px;
}

.hero-slideshow .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #131317;
}

.hero-slideshow .swiper-button-next,
.hero-slideshow .swiper-button-prev {
  cursor: pointer;
  font-size: 28px;
}

@media only screen and (min-width: 1200px) {
  .hero-slideshow .swiper-button-next,
  .hero-slideshow .swiper-button-prev {
    color: #fff;
    font-size: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
}

.hero-slideshow .swiper-button-prev {
  left: 20px;
}

.hero-slideshow .swiper-button-next {
  right: 20px;
}