/* ============================================
   MI ETAPA — Design Tokens
   Tu Camino, a tu ritmo.
   ============================================ */

:root {
  /* === COLORS === */
  --color-cream:        #FAF6F0;
  --color-cream-dark:   #F2EBE0;
  --color-cream-mid:    #EDE3D4;

  --color-green:        #2D5A3D;
  --color-green-mid:    #3D7050;
  --color-green-light:  #4A7C59;
  --color-green-pale:   #E8F0EB;
  --color-green-ultra:  #F0F5F1;

  --color-yellow:       #C8950A;
  --color-yellow-vivid: #D4A017;
  --color-yellow-light: #F5E6B8;
  --color-yellow-pale:  #FDF6E3;

  --color-blue:         #4A7FA5;
  --color-blue-dark:    #345E7A;
  --color-blue-light:   #E3EEF5;
  --color-blue-pale:    #F0F6FA;

  --color-earth:        #8B6F47;
  --color-earth-dark:   #6B5233;
  --color-earth-light:  #F0E6D6;
  --color-earth-pale:   #FAF3EB;

  --color-text:         #1A2E1E;
  --color-text-mid:     #3A4F3E;
  --color-text-muted:   #6B7C6E;
  --color-text-light:   #9BAD9E;

  --color-white:        #FFFFFF;
  --color-border:       #E2D9CC;
  --color-border-light: #EDE6DA;

  /* === TYPOGRAPHY === */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */

  --leading-tight:  1.2;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* === SPACING === */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* === BORDER RADIUS === */
  --radius-sm:   0.375rem;  /* 6px */
  --radius-md:   0.75rem;   /* 12px */
  --radius-lg:   1rem;      /* 16px */
  --radius-xl:   1.5rem;    /* 24px */
  --radius-2xl:  2rem;      /* 32px */
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-xs:  0 1px 2px rgba(45, 90, 61, 0.06);
  --shadow-sm:  0 2px 8px rgba(45, 90, 61, 0.08);
  --shadow-md:  0 4px 16px rgba(45, 90, 61, 0.10);
  --shadow-lg:  0 8px 32px rgba(45, 90, 61, 0.12);
  --shadow-xl:  0 16px 48px rgba(45, 90, 61, 0.16);
  --shadow-card: 0 2px 12px rgba(45, 90, 61, 0.09), 0 1px 3px rgba(45, 90, 61, 0.06);

  /* === TRANSITIONS === */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === LAYOUT === */
  --container-sm:  640px;
  --container-md:  768px;
  --container-lg:  1024px;
  --container-xl:  1280px;
  --container-2xl: 1400px;

  --nav-bottom-height: 72px;
  --nav-sidebar-width: 240px;
  --header-height: 64px;
}
