/* ==========================================================================
   Banner - Paginas secundarias (estilo schools)
   ========================================================================== */

#banner_vistas {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  max-height: 500px;
}

#banner_vistas .banner-image-container {
  width: 100%;
  height: 100%;
}

#banner_vistas .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#banner_vistas .region {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#banner_vistas .banner-content {
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}

#banner_vistas .banner-title {
  font-size: 3.5rem;
  transform: scale(0.9, 1.0);
  transform-origin: left center;
  color: #000;
  margin-bottom: 0.25rem;
}

#banner_vistas p {
  color: #000;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #banner_vistas {
    max-height: none;
    min-height: auto;
  }

  #banner_vistas .region {
    position: relative;
    display: block;
    text-align: center;
  }

  #banner_vistas .banner-content {
    background: transparent;
    margin-top: 20px;
    padding: 1rem;
  }

  #banner_vistas .banner-image {
    height: auto;
    min-height: 300px;
  }

  #banner_vistas .banner-title {
    font-size: 2.5rem;
  }
}
