.hero-banner {   
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  line-height: 0;
}

.heroSwiper {
  width: 100%;
  height: 600px;
  border-radius: 0;
  overflow: hidden;
  display: block;
}

.heroSwiper .swiper-wrapper {
  width: 100%;
}

.heroSwiper .swiper-slide {
  width: 100% !important;
  height: 600px; /* 🔥 AHORA 600 */
}

/* Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Imagen */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.hero-content {
  position: absolute;
  z-index: 2;
  left: 60px;
  top: 83%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 450px;
  line-height: normal;
}

.hero-content h2 {
  font-size: 34px; /* 🔥 ajustado para 600 */
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* Botón */
.btn-hero {
  display: inline-block;
  padding: 13px 25px;
  background: #00c2ff;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #0099cc;
}

/* Flechas */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
  .heroSwiper {
    height: 300px;
    border-radius: 0;
  }

  .heroSwiper .swiper-slide {
    height: 300px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 28px;
    transform: none;
    max-width: calc(100% - 36px);
  }

  .hero-content h2 {
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-content p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .btn-hero {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 420px) {
  .heroSwiper {
    height: 250px;
  }

  .heroSwiper .swiper-slide {
    height: 250px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-content p {
    display: none;
  }
}

/* ===== MODELO B ===== */
.hero-banner-b { width: 100%; overflow: hidden; line-height: 0; }

.hero-b-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5px;
  height: 600px;
}

/* Zona izquierda */
.hero-b-left {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}
.heroBSwiper1 { width: 100%; height: 600px; }

/* Zona derecha */
.hero-b-right {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 600px;
}
.hero-b-right-cell {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 297px; /* (600 - 5gap) / 2 */
  flex: none;
}
.heroBSwiper2,
.heroBSwiper3 { width: 100%; height: 297px; }

/* Slides */
.heroBSwiper1 .swiper-slide,
.heroBSwiper2 .swiper-slide,
.heroBSwiper3 .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

/* Imágenes */
.heroBSwiper1 .swiper-slide img,
.heroBSwiper2 .swiper-slide img,
.heroBSwiper3 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botón flotante */
.hero-b-btn-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
}
.btn-hero-b {
  display: inline-block;
  padding: 9px 20px;
  background: #0f4fd9;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  transition: background 0.25s;
}
.btn-hero-b:hover { background: #0b3caa; color: #fff; }

/* Flechas */
.heroBSwiper1 .swiper-button-next,
.heroBSwiper1 .swiper-button-prev,
.heroBSwiper2 .swiper-button-next,
.heroBSwiper2 .swiper-button-prev,
.heroBSwiper3 .swiper-button-next,
.heroBSwiper3 .swiper-button-prev {
  color: #fff;
  --swiper-navigation-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Las 3 zonas apiladas verticalmente */
  .hero-b-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 4px;
  }
  .hero-b-left {
    height: 260px;
    border-radius: 6px;
  }
  .heroBSwiper1 { height: 260px; }

  /* La columna derecha también apila verticalmente */
  .hero-b-right {
    flex-direction: column;
    height: auto;
    gap: 4px;
  }
  .hero-b-right-cell {
    height: 200px;
    border-radius: 6px;
    flex: none;
  }
  .heroBSwiper2,
  .heroBSwiper3 { height: 200px; }

  /* Ocultar flechas en móvil */
  .heroBSwiper1 .swiper-button-next, .heroBSwiper1 .swiper-button-prev,
  .heroBSwiper2 .swiper-button-next, .heroBSwiper2 .swiper-button-prev,
  .heroBSwiper3 .swiper-button-next, .heroBSwiper3 .swiper-button-prev { display: none; }
}
@media (max-width: 480px) {
  .hero-b-left { height: 220px; }
  .heroBSwiper1 { height: 220px; }
  .hero-b-right-cell { height: 170px; }
  .heroBSwiper2, .heroBSwiper3 { height: 170px; }
}