/* ============================================================
   Claud IA — SPACING, RADIUS, SHADOW, MOTION TOKENS
   ============================================================ */

:root {
  /* ---- Spacing (base 4px) ---- */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4 */
  --space-2: 0.5rem;    /* 8 */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 2.5rem;    /* 40 */
  --space-8: 3rem;      /* 48 */
  --space-9: 4rem;      /* 64 */
  --space-10: 5rem;     /* 80 */
  --space-12: 7rem;     /* 112 */

  /* ---- Radius (suave, femenino, moderno) ---- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* ---- Sombras (tintadas a morado, suaves) ---- */
  --shadow-xs: 0 1px 2px rgba(45, 11, 102, 0.06);
  --shadow-sm: 0 2px 8px rgba(45, 11, 102, 0.07);
  --shadow-md: 0 8px 24px rgba(45, 11, 102, 0.10);
  --shadow-lg: 0 18px 48px rgba(45, 11, 102, 0.14);
  --shadow-xl: 0 30px 70px rgba(45, 11, 102, 0.18);
  /* Glow de marca para CTAs y elementos destacados */
  --shadow-brand: 0 12px 30px rgba(168, 85, 247, 0.32);
  --shadow-coral: 0 12px 30px rgba(236, 72, 153, 0.30);

  /* ---- Ring de foco ---- */
  --ring-width: 3px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 220ms; /* @kind other */
  --duration-slow: 380ms; /* @kind other */

  /* ---- Layout ---- */
  --container-sm: 640px;
  --container-md: 880px;
  --container-lg: 1120px;
  --container-xl: 1280px;
}
