/* Banner reutilizable para páginas internas (contacto, nosotros, portafolio, blog) */
#page-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 92px 48px 48px;
  background: #0a0a0f;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.92) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.page-banner-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #00d4ff;
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
  margin-bottom: 8px;
}

.page-banner-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  margin-bottom: 14px;
}

.page-banner-breadcrumb {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #6a7a8e;
}

.page-banner-breadcrumb a {
  color: #8a9bb0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-banner-breadcrumb a:hover { color: #00d4ff; }

.page-banner-breadcrumb span {
  margin: 0 8px;
  color: #3a4a5a;
}

/* Tablet landscape */
@media (max-width: 1024px) {
  #page-banner { min-height: 300px; padding: 84px 32px 40px; }
  .page-banner-title { font-size: 36px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  #page-banner { min-height: 260px; padding: 80px 24px 32px; }
  .page-banner-title { font-size: 30px; }
}

/* Móvil */
@media (max-width: 480px) {
  #page-banner { min-height: 220px; padding: 72px 16px 28px; }
  .page-banner-title { font-size: 24px; }
  .page-banner-eyebrow { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner-bg { transform: none; }
}
