
.page-header {
  background: #e07b00;
  padding: 48px 60px;
  position: relative;
  overflow: hidden;
}

/* Círculos decorativos de fondo */
.page-header::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.page-header::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -80px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(0,0,0,.08);
}

.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

/* Breadcrumbs */
.page-header__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.page-header__breadcrumb-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .18s;
}
.page-header__breadcrumb-link:hover { color: #fff; }
.page-header__breadcrumb-sep {
  color: rgba(255,255,255,.5);
  font-size: 13px;
}
.page-header__breadcrumb-current {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* Título */
.page-header__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* Descripción */
.page-header__desc {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  max-width: 600px;
}