/**
 * Paleta de Cores - Portal Contadores
 * Cores da marca Tiic Technology
 *
 * Azul Principal: #0069dc
 * Laranja Principal: #ff6e01
 */

:root {
    /* ========== CORES PRINCIPAIS ========== */
    --tiic-blue: #0069dc;
    --tiic-blue-light: #3b8eea;
    --tiic-blue-dark: #0056b3;

    --tiic-orange: #ff6e01;
    --tiic-orange-light: #ff8534;
    --tiic-orange-dark: #e66300;

    /* ========== GRADIENTES ========== */
    /* Degradê azul: do azul escuro (#0056b3) -> azul principal (#0069dc) -> azul claro (#3b8eea) */
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #0069dc 50%, #3b8eea 100%);
    --primary-gradient-hover: linear-gradient(135deg, #0069dc 0%, #3b8eea 50%, #60a5f0 100%);
    --secondary-gradient: linear-gradient(135deg, #0069dc 0%, #3b8eea 100%);

    /* ========== CORES DE ESTADO ========== */
    --primary-color: #0069dc;
    --primary-hover: #3b8eea;
    --primary-focus: #0069dc;
    --primary-focus-bg: #e6f2ff;

    /* ========== CORES NEUTRAS ========== */
    --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 ALERTA ========== */
    --warning-orange: #f59e0b;
    --warning-orange-dark: #d97706;

    /* ========== CORES DE SUCESSO ========== */
    --success-green: #10b981;
    --success-green-dark: #059669;

    /* ========== CORES DE PERIGO ========== */
    --danger-red: #ef4444;
    --danger-red-dark: #dc2626;

    /* ========== CORES DE INFO ========== */
    --info-cyan: #06b6d4;
    --info-cyan-dark: #0891b2;

    /* ========== SOMBRAS ========== */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* ========== TRANSIÇÕES ========== */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* ========== BORDER RADIUS ========== */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}
