.hero-video-wrap {
  position: relative;
  height: 80vh;       /* vuelve a tu valor original */
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
}

.hero-swiper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;   /* evita desbordes horizontales */
}

.hero-swiper .swiper-slide,
.hero-swiper img {
  width: 100%;
  height: 100%;
}

.hero-swiper img {
  object-fit: cover;
  display: block;     /* importante para no sumar extra */
}


.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

.hero-center-content {
  position: absolute;
  left: 5%;
  bottom: 8%;
  transform: none;
  display: block;
  text-align: left;
  z-index: 3;
  max-width: 600px;
  color: var(--white);
}

.hero-center-content h1{
  font-size:32px;
  margin-bottom:10px;
}

.hero-center-content p{
  font-size:15px;
  line-height:1.6;
  max-width:520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary{
  padding:10px 20px;
  border-radius:999px;
  background:var(--blue);
  color:var(--white);
  font-size:14px;
  font-weight:600;
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .15s ease, transform .15s ease;
}
.btn-primary:hover{
  background:var(--blue-hover);
  transform:translateY(-1px);
}

.btn-secondary{
  padding:10px 20px;
  border-radius:999px;
  border:1px solid var(--white);
  color:var(--white);
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  background:transparent;
  transition:background .15s ease, color .15s ease;
}
.btn-secondary:hover{
  background:var(--white);
  color:var(--dark);
}

.hero-video-wrap .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 10;
  text-align: center;
}

.hero-video-wrap .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.7);
  opacity: 1;
  margin: 0 6px !important;
}

.hero-video-wrap .swiper-pagination-bullet-active {
  background: var(--blue);
}

.hero-video-overlay {
  pointer-events: none;
}
