/* ============================================================
   Marcas de agua institucionales — Vida Elemental
   ------------------------------------------------------------
   Capa puramente decorativa sobre el fondo crema existente.
   NO cambia ningún color, token ni fondo del sitio: solo fija
   dos marcas de agua vectoriales en las esquinas del viewport
   (ondas arriba-izquierda, hojas abajo-derecha), estáticas al
   hacer scroll como una hoja timbrada física.
   Se usan pseudo-elementos position:fixed en lugar de
   background-attachment: fixed porque iOS/Safari móvil ignora
   este último; el resultado visual es idéntico y más fiable.
   ============================================================ */

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;               /* sobre el fondo del body, bajo todo el contenido */
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Esquina superior izquierda: ráfaga de ondas suaves (teal, 6%) */
body::before {
  top: 0;
  left: 0;
  width: clamp(340px, 46vw, 860px);
  aspect-ratio: 720 / 560;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 560' fill='none' stroke='%233F7B81' stroke-linecap='round'%3E%3Cpath stroke-width='34' d='M-70 150 C120 15 345 20 435 140 C505 233 462 342 356 356 C268 368 203 300 233 234 C256 184 322 178 348 224'/%3E%3Cpath stroke-width='24' d='M-70 320 C70 235 235 248 340 300 C400 330 455 330 495 295'/%3E%3Cpath stroke-width='15' d='M-60 470 C95 400 235 432 345 382 C425 345 452 298 430 248'/%3E%3C/svg%3E");
}

/* Esquina inferior derecha: rama botánica de hojas estilizadas (salvia, 5%) */
body::after {
  right: 0;
  bottom: 0;
  width: clamp(300px, 40vw, 760px);
  aspect-ratio: 1 / 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 680 680'%3E%3Cpath fill='none' stroke='%23557064' stroke-width='9' stroke-linecap='round' d='M700 710 C560 570 445 455 300 320'/%3E%3Cg fill='%23557064'%3E%3Cpath transform='translate(650 705) rotate(-52) scale(1.75)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3Cpath transform='translate(560 600) rotate(-8) scale(1.4)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3Cpath transform='translate(495 540) rotate(-88) scale(1.2)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3Cpath transform='translate(425 455) rotate(-18) scale(1.05)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3Cpath transform='translate(370 405) rotate(-78) scale(0.85)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3Cpath transform='translate(315 335) rotate(-30) scale(0.7)' d='M0 0 C-44 -46 -56 -118 0 -180 C56 -118 44 -46 0 0 Z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Decoración de pantalla: fuera al imprimir */
@media print {
  body::before,
  body::after { display: none; }
}
