/* ============================================================
   Impacto de Cria — Radius, borders, shadows, texture
   The brand is collage / print / handmade: shapes are organic,
   shadows are soft and sparse (not glossy), edges feel cut by
   hand. Keep elevation subtle and grounded.
   ============================================================ */

:root {
  /* ---- Corner radius ---- */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;   /* sticker pills, badges, chips */
  --radius-blob: 48% 52% 55% 45% / 52% 48% 52% 48%; /* organic sticker */

  /* ---- Borders ---- */
  --border-1: 1px;
  --border-2: 2px;
  --border-thick: 3px;    /* sticker outline weight */

  /* ---- Shadows (soft, warm, low) ---- */
  --shadow-sm: 0 1px 2px rgba(20, 12, 4, 0.18);
  --shadow-md: 0 4px 12px rgba(20, 12, 4, 0.22);
  --shadow-lg: 0 14px 34px rgba(20, 12, 4, 0.30);
  --shadow-sticker: 0 6px 0 rgba(20, 12, 4, 0.16); /* flat print drop */

  /* ---- Focus ---- */
  --focus-width: 3px;
  --focus-offset: 2px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 200ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */

  /* ---- Grain overlay (brand artwork is lightly grained) ----
     Apply as a background-image layer at low opacity. */
  --grain-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"); /* @kind other */
}
