/* ===== HERO DESCUAJARINGANDO (banner panorámico fijo) ===== */
body .page-title.hero-descuajaringando{
  --hero-h: clamp(360px, 45vh, 520px);
  min-height: var(--hero-h);
  display:flex;
  align-items:center;
  width:100%;
  overflow:hidden;

  /* limpia fondos del tema y aplica el banner */
  background-image:none !important;
  background-color:#f5f9fc !important;

  /* ✅ IMPORTANTÍSIMO: al estar en /css/, sube 1 nivel a /imagenes/ */
  background: url('../imagenes/Descuajaringando_2.png?v=1') right center / auto 100% no-repeat,
              #f5f9fc !important;
}

/* quita pseudos/overlays del tema en este hero */
body .page-title.hero-descuajaringando::before,
body .page-title.hero-descuajaringando::after{
  content:none !important;
  display:none !important;
}

/* contenido sobre la imagen */
body .page-title.hero-descuajaringando > .container{
  position:relative;
  z-index:1;
}

/* sin recuadro blanco en el título */
body .page-title.hero-descuajaringando .white-bg{
  background:transparent !important;
  box-shadow:none !important;
}

/* móvil/tablet: usar la versión 1, centrada y que llene */
@media (max-width:991.98px){
  body .page-title.hero-descuajaringando{
    background: url('../imagenes/Descuajaringando_1.png?v=1') 70% center / cover no-repeat,
                #f5f9fc !important;
  }
}