/* CSS Variables - Design System */
:root {
  /* Cores Primárias */
  --primary-blue: #004aad;
  --primary-blue-light: #3d7bc7;
  --primary-blue-dark: #05387d;
  --primary-blue-lighter: #e6eef9;
  
  /* Cores Secundárias */
  --secondary-orange: #ffa700;
  --secondary-orange-light: #ffbd33;
  --secondary-orange-dark: #cc8600;
  --secondary-orange-lighter: #fff4e0;
  
  /* WhatsApp Green */
  --whatsapp-green: #2cd366;
  --whatsapp-green-dark: #24b558;
  --whatsapp-green-light: #5ddd85;
  
  /* Cores Neutras */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F5F7FA;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --black: #000000;
  
  /* Cores de Ação */
  --cta-orange: #ffa700;
  --cta-orange-hover: #cc8600;
  --cta-orange-light: #fff4e0;
  
  /* Cores de Status */
  --success: #2cd366;
  --success-light: #e6f9ed;
  --error: #EF4444;
  --error-light: #FEE2E2;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --info: #3B82F6;
  --info-light: #DBEAFE;
  
  /* Tipografia */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Tamanhos de Fonte */
  --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 */
  
  /* Pesos de Fonte */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Altura de Linha */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Espaçamento */
  --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 */
  
  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 24px 48px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transições */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: var(--space-4);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #004aad 0%, #3d7bc7 100%);
  --gradient-secondary: linear-gradient(135deg, #ffa700 0%, #ffbd33 100%);
  --gradient-background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
  --gradient-header: linear-gradient(135deg, #004aad 0%, #05387d 100%);
}
