#hero {
  background-color: oklch(43.9% 0 0); /* bg-neutral-600 */
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  height: 90vh;
  overflow: hidden;
}

/* Swiper Container */
.swiper-hero {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  background-color: #012a4a;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

/* Imagen hero */
img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (min-width: 768px) {
  img.hero-img {
    object-position: center;
  }
}

/* Navegadores (prev/next) */
.swiper-button-prev,
.swiper-button-next {
  display: none;
}

@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
  }
}
