/* Pontuador — Spacing, radii, shadows, motion
 * 4px base grid. Generous, airy travel-marketing rhythm.
 * Corners are pill-soft (the brand mark is fully rounded). */

:root {
  /* Spacing scale (4px base) */
  --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:   3rem;     /* 48 */
  --space-8:   4rem;     /* 64 */
  --space-9:   6rem;     /* 96 */
  --space-10:  8rem;     /* 128 */

  /* Radii — soft & rounded; pills for buttons/chips */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-2xl:  44px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows — warm-tinted, soft, never harsh black */
  --shadow-xs:  0 1px 2px rgba(124, 38, 21, 0.06);
  --shadow-sm:  0 2px 8px rgba(124, 38, 21, 0.08);
  --shadow-md:  0 10px 24px rgba(124, 38, 21, 0.10);
  --shadow-lg:  0 20px 48px rgba(124, 38, 21, 0.12);
  --shadow-xl:  0 32px 70px rgba(124, 38, 21, 0.16);
  --shadow-brand: 0 14px 30px rgba(254, 94, 62, 0.35); /* coral glow on CTAs */

  /* Layout */
  --container:  1200px;
  --container-narrow: 880px;

  /* Motion */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
