/* =========================
   OVERARG (FEROZO) – CSS LIVIANO
   Objetivo: más rápido + más claro
   ========================= */

/* Base */
html, body{
  height: 100%;
  margin: 0;
  padding: 0;
}

body{
  background: #ffffff !important;   /* SIN imagen de fondo */
  outline: none !important;
}

/* Contenedor general (cajas blancas suaves) */
.page-content, .container, .content, .dv-page-body, section, .page-section{
  background: rgba(255,255,255,0.95) !important
  /* === FULL WIDTH solo para el bloque del banner dentro de pagina-texto === */
section#pagina-texto,
section[id="pagina-texto"],
#pagina-texto{
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* La plantilla mete un .page-content adentro del section; lo sacamos a full */
section#pagina-texto > .page-body,
section#pagina-texto > .page-body > .page-content{
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Evitar scroll horizontal por 100vw */
html, body{ overflow-x: hidden !important; }