/* ===================================================
   CSS VARIABLES - Design Tokens
   =================================================== */
:root {
  /* Brand Colors */
  --color-primary: #1a6b3c;
  /* Verde selva profundo */
  --color-primary-light: #27a05a;
  /* Verde brillante */
  --color-primary-dark: #0d4225;
  /* Verde oscuro */
  --color-accent: #f5a623;
  /* Dorado cálido */
  --color-accent-light: #ffc94d;
  --color-accent-dark: #c47f0b;

  /* Neutrals */
  --color-dark: #0f1a12;
  --color-dark-2: #1c2b20;
  --color-dark-3: #2d3f32;
  --color-mid: #6b7f70;
  --color-light: #f0f5f1;
  --color-white: #ffffff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(13, 66, 37, 0.85) 0%, rgba(15, 26, 18, 0.6) 100%);
  --gradient-card: linear-gradient(180deg, transparent 40%, rgba(13, 66, 37, 0.95) 100%);
  --gradient-accent: linear-gradient(135deg, #f5a623 0%, #e8841c 100%);
  --gradient-primary: linear-gradient(135deg, #1a6b3c 0%, #0d4225 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-nav: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
}
