/* ============================================================
   site.css — Sistema de diseño unificado 800 Fumigar / EcoPlagas
   Estilo: sutil / editorial. Fuente Nunito. Sin gradientes ni
   pills 999px; esquinas 4-6px; sombras hairline; íconos de línea.
   Cargar en el <head> ANTES del <style> inline de cada página.
   ============================================================ */
:root{
  --font:'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Esquinas (nada de 999px/50px) */
  --radius-sm:4px;
  --radius:6px;
  --radius-lg:8px;

  /* Profundidad: hairline, no sombras dobles suaves */
  --shadow:0 1px 2px rgba(0,0,0,.06);
  --shadow-hover:0 2px 6px rgba(0,0,0,.10);
  --hairline:1px solid rgba(0,0,0,.08);

  /* Marca unificada (resuelve verdes/dorados/rojos en conflicto) */
  --green:#047835;
  --green-dark:#022e14;
  --gold:#F2CB05;
  --red:#EA0A2A;
  --ink:#1a1a1a;
  --muted:#555;
  --bg:#ffffff;
  --bg-soft:#f5f7f5;
}

/* ---- Íconos de línea (sprite /icons.svg, estilo Lucide) ---- */
.ico{
  width:1.1em;
  height:1.1em;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  vertical-align:-.15em;
  flex:0 0 auto;
}
.ico-lg{ width:1.5em; height:1.5em; }
.ico-sm{ width:.95em; height:.95em; }

/* Fallback de fuente para páginas que enlazan site.css y no definen body font */
body{ font-family: var(--font); }
