/* Design Tokens — Dra. Estefanía Dermatología */
/* Paleta: primary #2D5E46, accent #D8CC9B, light background */

:root {
  /* ─── Colors ─── */
  --color-primary: #2D5E46;
  --color-primary-hover: #3a7a5a;
  --color-verde: #2D5E46;

  --color-midnight: #000C1E;
  --color-charcoal: #3A3A3A;

  --color-background: #FAF8F3;
  --color-surface: #F0EBE0;
  --color-surface-dark: #1a2332;

  --color-accent: #C4B896;
  --color-accent-alt: #B8AA82;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.15);
  --color-border-inverse: rgba(255, 255, 255, 0.12);

  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #8a8a8a;
  --color-text-on-primary: #ffffff;
  --color-text-on-accent: #1a1a1a;
  --color-text-on-dark: #f5f5f0;

  /* ─── Typography ─── */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ─── Font sizes ─── */
  --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 */

  /* ─── Font weights ─── */
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ─── Line heights ─── */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* ─── Spacing (4px base) ─── */
  --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 */

  /* ─── Border radius ─── */
  --radius-md: 0.5rem;   /* 8px  — buttons */
  --radius-lg: 0.75rem;  /* 12px — cards */
  --radius-full: 9999px; /* pills, badges, avatars */

  /* ─── Transitions ─── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* ─── Layout ─── */
  --max-width: 1200px;
  --header-height: 64px;
}
