.hero-banner {
  position: relative;
  width: 100%;
  min-height: 40vh;
  height: 52vh;
  max-height: 70vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */

.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ========================= */
/* CONTENIDO */
/* ========================= */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 90%;
  width: 100%;
  padding: 10px;
}

/* ========================= */
/* TITULO */
/* ========================= */

.hero-content h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
  word-break: break-word;
}

/* ========================= */
/* BOTONES */
/* ========================= */

.banner-btn,
.btn-vermas {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.banner-btn {
  background: #ff6600;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.banner-btn:hover {
  background: #e65c00;
}

.btn-vermas {
  background-color: transparent;
  color: #fff;
  text-align: center;
  border: 1px solid white;
  border-radius: 22px;
  font-size: 12px;
  padding: 8px 20px;
  margin-top: 30px;
}

.btn-vermas:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ========================= */
/* OWL NAV */
/* ========================= */

.owl-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 10px;
  pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 25px !important;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: all;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

/* ========================= */
/* TITULOS */
/* ========================= */

.titulos_fondos {
  color: rgb(255, 255, 255);
}

/* ========================= */
/* CARDS / FONDOS */
/* ========================= */

.img-mucho {

  background-size: cover;
  background-position: center center;
  position: relative !important;
  overflow: hidden;
}

.grid-fondos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.body_fondo {
  display: flex;
  justify-content: center;
  padding: 4vh;
  gap: 2vh;
  flex-direction: column;
}

.a_ver_mas {
  display: flex;
  justify-content: flex-end;
}

.tierra_cine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width: 992px) {

  .hero-banner {
    height: 45vh;
  }

  .grid-fondos {
    grid-template-columns: 1fr;
  }

  .body_fondo {
    padding: 3vh;
  }


}

/* ========================= */
/* CELULAR */
/* ========================= */

@media (max-width: 768px) {

  .hero-banner {
    height: 40vh;
    min-height: 300px;
    padding: 15px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .banner-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .btn-vermas {
    width: 100%;
    max-width: 220px;
    margin-top: 20px;
  }

  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
    font-size: 20px !important;
  }

  .a_ver_mas {
    justify-content: center;
  }


}

/* ========================= */
/* MOVILES PEQUEÑOS */
/* ========================= */

@media (max-width: 480px) {

  .hero-banner {
    height: 35vh;
    min-height: 260px;
  }

  .hero-content h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .banner-btn {
    width: 100%;
    max-width: 220px;
  }

  .owl-nav {
    padding: 0 5px;
  }

  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 32px;
    height: 32px;
    font-size: 18px !important;
  }

  .body_fondo {
    padding: 15px;
  }


}