/* ===== LCDC CSS VARIABLES ===== */
:root {
  /* LCDC Brand Colors */
  --color-primary: #151F42;        /* Dark blue from original */
  --color-secondary: #5272DE;      /* Primary blue from original */
  --color-accent: #B06AB3;         /* Purple accent from original */
  --color-gradient-start: #4568DC;
  --color-gradient-middle: #B06AB3;
  --color-gradient-end: #151F42;
  --color-whatsapp: #25D366;
  
  /* Neutral Colors */
  --color-background: #f9fafb;
  --color-surface: #ffffff;
  --color-text: #151F42;
  --color-text-light: #5272DE;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(21 31 66 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(21 31 66 / 0.1), 0 2px 4px -2px rgb(21 31 66 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(21 31 66 / 0.1), 0 4px 6px -4px rgb(21 31 66 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(21 31 66 / 0.1), 0 8px 10px -6px rgb(21 31 66 / 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-middle) 50%, var(--color-gradient-end) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(21, 31, 66, 0.85) 0%, rgba(82, 114, 222, 0.8) 100%);
}