/* ============================================================
 * ProcBrain — Sistema Inteligente para Procuradorias
 * ============================================================
 * Idealizadores e Desenvolvedores:
 *   Francisco Farias & Diego Bessa
 *
 * Pesquisadores — Mestrado em Computação Aplicada (UnB)
 * Servidores de TI — Procuradoria Geral do Distrito Federal (PGDF)
 *
 * © 2026 ProcBrain GovTech. Todos os direitos reservados.
 * ============================================================ */

        body {
            background-color: #f8fafc;
            color: #1e293b;
        }
        /* Animated Background Blobs */
        .bg-blobs {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        .bg-blobs::before, .bg-blobs::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 20s infinite alternate ease-in-out;
        }
        .bg-blobs::before {
            width: 600px; height: 600px;
            background: rgba(168, 85, 247, 0.15); /* Purple */
            top: -100px; left: -100px;
        }
        .bg-blobs::after {
            width: 500px; height: 500px;
            background: rgba(59, 130, 246, 0.12); /* Blue */
            bottom: -100px; right: -100px;
            animation-delay: -10s;
        }
        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 50px) scale(1.1); }
        }

        /* Glassmorphism Classes */
        .glass {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: var(--tw-shadow-glass);
        }
        .glass-heavy {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: var(--tw-shadow-glass-heavy);
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            border-left: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 1.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--tw-shadow-glass-heavy);
            background: rgba(255, 255, 255, 0.7);
        }

        .gradient-text {
            background: linear-gradient(135deg, #7e22ce, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Progress Bar Animation */
        .progress-bar-fill {
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* SVG Donut Animation */
        .donut-segment {
            transition: stroke-dashoffset 1.5s ease-out, opacity 0.3s;
            transform-origin: center;
            transform: rotate(-90deg);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Custom Scrollbar for range inputs */
        input[type=range] {
            -webkit-appearance: none;
            background: transparent;
        }
        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 20px; width: 20px;
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            cursor: pointer;
            margin-top: -6px;
            border: 2px solid theme('colors.brand.500');
        }
        input[type=range]::-webkit-slider-runnable-track {
            width: 100%; height: 8px;
            cursor: pointer;
            background: theme('colors.slate.200');
            border-radius: 4px;
        }
