/* =========================
   BANNER / HERO
========================= */

.page-banner {
  height: 60vh;
  min-height: 320px;
  max-height: 520px;

  background-image: url("https://srv486-files.hstgr.io/375f23e66197c878/files/public_html/Images/backg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

/* Overlay claro */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
}

/* Centrado vertical y horizontal */
.banner-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;
}

/* Caja del texto */
.banner-box {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid #000;
  padding: 18px 22px;
  max-width: 900px;
  text-align: center;
}

/* Tipografía */
.banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #000;
}

.banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #111;
}
