/* Talhão · color tokens
   Deep forest green → black, off-white surfaces, saturated brand green,
   plus the fixed semantic palette used across the 8 map-analysis themes.
   Base ramps first, then semantic aliases. */
:root{
  /* ── Ink / near-black greens ── */
  --green-ink: #04150c;      /* darkest — CTA text on green */
  --green-950: #051009;      /* hero / footer / dark cards */
  --green-900: #08150d;      /* primary text */
  --green-800: #003e20;      /* selected chip fill · deep accent */
  --green-700: #00893c;      /* link green · kicker accents */
  --green-600: #00a151;      /* brand green · primary CTA fill */
  --green-500: #2a904b;      /* check / positive mark */
  --green-300: #a5e3b4;      /* mint — labels on dark */
  --green-200: #a7d3a0;      /* soft chart green */
  --green-150: #9ccb8f;      /* sage — pasture */
  --green-100: #d7e8b6;      /* lime */

  /* ── Off-white surfaces ── */
  --paper: #f9fdfa;          /* app background */
  --paper-2: #f4faf5;        /* alternating section band */
  --surface: #ffffff;        /* card surface */
  --surface-tint: #f0f8f1;   /* card header / inset rows */
  --surface-mint: #e3efe5;   /* map placeholder ground */

  /* ── Neutrals / borders ── */
  --line: #cfdbd1;           /* default hairline border */
  --line-2: #b9cabd;         /* stronger control border */
  --line-soft: #e0eae1;      /* inset card border */
  --ink-60: #505c53;         /* muted label text (slate green) */
  --ink-45: #7a8a7e;         /* faintest caption */
  --ink-70: #31402f;         /* body prose (warm) */

  /* ── Fixed thematic palette (map legends — same colour = same concept) ── */
  --t-mata: #14532d;         /* mata / Reserva Legal */
  --t-verde: #2f9e50;        /* verde-marca */
  --t-sage: #9ccb8f;         /* sage (pasto) */
  --t-lima: #d7e8b6;         /* lima */
  --t-ouro: #e0b23c;         /* ouro */
  --t-terracota: #d98e4a;    /* terracota (seca) */
  --t-tijolo: #b23a2e;       /* tijolo */
  --t-teal: #2f7fb0;         /* teal (água / APP) */
  --t-azul: #7fb3d5;         /* azul-claro */
  --t-ardosia: #8a8f98;      /* ardósia */
  --t-creme: #eee7cf;        /* creme */
  --t-perimetro: #ffd400;    /* perímetro SICAR */

  /* ── Semantic status ── */
  --ok: #2a904b;
  --warn: #bea333;
  --brick: #b23a2e;
  --mut: #505c53;

  /* ── Semantic aliases ── */
  --bg-app: var(--paper);
  --bg-band: var(--paper-2);
  --bg-dark: var(--green-950);
  --surface-card: var(--surface);
  --border-card: var(--line);
  --text-strong: var(--green-900);
  --text-body: var(--ink-70);
  --text-muted: var(--ink-60);
  --text-faint: var(--ink-45);
  --text-on-dark: var(--paper);
  --text-on-dark-muted: rgba(249,253,250,0.62);
  --accent: var(--green-600);
  --accent-ink: var(--green-ink);
  --link: var(--green-700);
  --link-hover: var(--green-800);
}
