/* CSS Variables */
:root {
    /* Cores principais */
    --primary-color: #6BB988;
    --primary-hover: #5ba876;
    --secondary-color: #ec4899;
    --secondary-hover: #db2777;
    
    /* Cores de estado */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Cores neutras */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Cores de gradiente */
    --gradient-rose: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    --gradient-purple: linear-gradient(135deg, #f3e8ff 0%, #fdf2f8 100%);
    --gradient-indigo: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    --gradient-green: linear-gradient(135deg, #6BB988 0%, #5ba876 100%);
    --gradient-pink: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Espaçamentos responsivos */
    --spacing-mobile-xs: 0.125rem;
    --spacing-mobile-sm: 0.375rem;
    --spacing-mobile-md: 0.75rem;
    --spacing-mobile-lg: 1rem;
    --spacing-mobile-xl: 1.25rem;
    --spacing-mobile-2xl: 1.5rem;
    
    /* Bordas */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Tipografia */
    --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-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}