.hero-carousel {
  margin: 0 !important;
  padding: 0;
  background: #f8f9fa;
  position: relative;
}

.hero-carousel__inner {
  max-width: 100%;
  margin: 0 auto;
}

.hero-carousel__swiper {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
  background: #0b0b0b;
}

.hero-carousel__slide {
  position: relative;
}

.hero-carousel__link {
  display: block;
  position: relative;
}

/* la imagen define la altura */
.hero-carousel__picture,
.hero-carousel__img {
  display: block;
  width: 100%;
}

.hero-carousel__img {
  height: auto;
  max-width: 100%;
}

.hero-carousel__img,
.hero-carousel__overlay-link {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

/* overlay link: cubre toda el área del slide */
.hero-carousel__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-decoration: none;
  background: transparent;
}

.hero-carousel__btn {
  position: absolute;
  left: 54px;
  bottom: 150px;
  z-index: 5;
  width: 126px;
  height: 48px;
  background: #0b0c0c;
  color: #ffffff;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: center;
  vertical-align: middle;
  font-family: var(--font-geely);
  text-decoration: none;
  padding: 10px 0;
}

/* =========================
   NAV (Desktop)
========================= */
.hero-carousel__nav {
  position: absolute;
  left: 64px;
  bottom: 100px;
  z-index: 5; /* encima del overlay */

  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
}

.hero-carousel__nav--next {
  left: 114px;
}

/* Asegurar que las flechas siempre reciban click */
.hero-carousel__nav,
.hero-carousel__nav * {
  pointer-events: auto;
}

/* =========================
   PAGINATION (Mobile)
========================= */
.hero-carousel__pagination {
  position: absolute;
  z-index: 6;
}

.hero-carousel__pagination--h {
  left: 0;
  right: 0;
  bottom: 18px;
  display: none;
  text-align: center;
}

.hero-carousel__pagination--h .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 4px !important;
  opacity: 1;
  background: #e7e6e6;
}

.hero-carousel__pagination--h .swiper-pagination-bullet-active {
  background: #027bff;
}

.hero-carousel__pagination--v {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 24px;
  flex-direction: column;
  align-items: center;
}

/* bullets verticales custom (si los usas) */
.hero-carousel__vbullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  padding: 0;
}
.hero-carousel__vbullet.is-active {
  background: #027bff;
  border-color: #027bff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-carousel {
    padding-bottom: 40px;
  }

  .hero-carousel__swiper {
    border-radius: 0 0 32px 32px;
  }

  .hero-carousel__nav {
    display: none;
  }

  .hero-carousel__pagination--h {
    display: block;
    bottom: 12px !important;
  }

  .hero-carousel__pagination--v {
    display: none;
  }
}
