/* ==========================================================================
   Design Tokens - Portal Ambiental La Unión
   ========================================================================== */

:root {
	/* Colors - Primary */
	--color-primary-purple: #533382;
	--color-primary-purple-dark: #3d2566;
	--color-primary-purple-light: #6b44a8;

	/* Colors - Secondary */
	--color-secondary-green: #2c7a3f;
	--color-secondary-green-dark: #1a4d28;
	--color-secondary-green-light: #38a050;

	/* Colors - Sidebar */
	--sidebar-bg: #2D1B4E;
	--sidebar-bg-dark: #1e1236;
	--sidebar-text: #c4b5d9;
	--sidebar-text-active: #ffffff;
	--sidebar-accent: #a78bfa;
	--sidebar-hover-bg: rgba(167, 139, 250, 0.1);
	--sidebar-active-bg: rgba(167, 139, 250, 0.15);
	--sidebar-border: rgba(167, 139, 250, 0.2);

	/* Colors - UI */
	--color-white: #ffffff;
	--color-black: #1a1a2e;
	--color-gray-50: #f8f9fa;
	--color-gray-100: #f1f3f5;
	--color-gray-200: #e9ecef;
	--color-gray-300: #dee2e6;
	--color-gray-400: #ced4da;
	--color-gray-500: #adb5bd;
	--color-gray-600: #6c757d;
	--color-gray-700: #495057;
	--color-gray-800: #343a40;
	--color-gray-900: #212529;

	/* Colors - Semantic */
	--color-success: #28a745;
	--color-warning: #ffc107;
	--color-danger: #dc3545;
	--color-info: #17a2b8;

	/* Layout */
	--sidebar-width: 260px;
	--topbar-height: 60px;
	--container-max: 1200px;
	--container-padding: 24px;

	/* 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 Weights */
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
	--font-extrabold: 800;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;

	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

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

	/* Z-index scale */
	--z-sidebar: 1000;
	--z-overlay: 999;
	--z-topbar: 100;
	--z-dropdown: 200;
	--z-modal: 1100;
}
