/* ============================================
   AURÉSIA — Design Tokens
   Variables CSS para toda la aplicación
   ============================================ */

:root {
  /* ── Colores principales ── */
  --color-primary: #1c3226;
  --color-primary-light: #2d5a3f;
  --color-primary-dark: #0f1e16;
  --color-primary-rgb: 28, 50, 38;

  /* ── Colores secundarios (dorados) ── */
  --color-secondary: #c9a84c;
  --color-secondary-light: #e8d5a0;
  --color-secondary-dark: #a88a35;
  --color-secondary-rgb: 201, 168, 76;

  /* ── Fondos ── */
  --color-bg-primary: #f8f5ef;
  --color-bg-white: #ffffff;
  --color-bg-warm: #f0ebe3;
  --color-bg-dark: #1c3226;
  --color-bg-card: #ffffff;

  /* ── Textos ── */
  --color-text-primary: #2a2a2a;
  --color-text-secondary: #6b6b6b;
  --color-text-light: #999999;
  --color-text-on-dark: #f8f5ef;
  --color-text-on-primary: #ffffff;

  /* ── Estados ── */
  --color-success: #3a7d5c;
  --color-error: #c44536;
  --color-warning: #e8a838;
  --color-info: #4a90a8;

  /* ── Estrellas ── */
  --color-star-filled: #c9a84c;
  --color-star-empty: #d4d0c8;

  /* ── Tipografía ── */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* ── Tamaños de fuente ── */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;     /* 20px */
  --text-xl: 1.5rem;      /* 24px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.25rem;    /* 36px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3.5rem;     /* 56px */
  --text-6xl: 4.5rem;     /* 72px */

  /* ── Line heights ── */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* ── Font weights ── */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ── Espaciado ── */
  --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 */

  /* ── Contenedor ── */
  --container-max: 1280px;
  --container-narrow: 960px;
  --container-padding: 1.5rem;

  /* ── Bordes ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ── Sombras ── */
  --shadow-sm: 0 1px 3px rgba(28, 50, 38, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 50, 38, 0.08);
  --shadow-lg: 0 8px 32px rgba(28, 50, 38, 0.1);
  --shadow-xl: 0 16px 48px rgba(28, 50, 38, 0.14);
  --shadow-card: 0 2px 16px rgba(28, 50, 38, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(28, 50, 38, 0.12);

  /* ── Transiciones ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-index ── */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-modal: 2000;
  --z-whatsapp: 3000;
  --z-toast: 4000;

  /* ── Navbar ── */
  --navbar-height: 80px;
  --navbar-height-scrolled: 64px;
}
