/**
 * Fondo página WP — paridad con ReinoLandingBackdrop (/dev/app).
 * Verde foresta #093329, liso, sin textura.
 * Mata el mármol del theme (div.background + background.webp + :before/:after).
 *
 * 1.0.1: oculta la capa .background entera (el theme pinta webp + overlays
 * en pseudos; background-image:none no alcanza).
 *
 * Se encola en TODO el front WP (login, páginas, Woo). No afecta /dev/app/.
 */
html,
body {
  background-color: #093329 !important;
  background-image: none !important;
}

body .background,
.background,
body .background::before,
body .background::after,
.background::before,
.background::after {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  background: none !important;
  background-image: none !important;
  content: none !important;
  pointer-events: none !important;
}
