/* Custom CSS - Tema Claro com Cores Vívidas (Light Mode Design System) */
:root {
    --brand-primary: <?php echo getWhitelabelConfig('primary_color'); ?>;
    --brand-secondary: <?php echo getWhitelabelConfig('secondary_color'); ?>;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

/* Glassmorphic Light Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
}

.glass-card-light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.glass-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-hover:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.18);
}

/* Scrollbar Claro */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glow Vívido */
.glow-effect {
    box-shadow: 0 0 35px -5px rgba(37, 99, 235, 0.2);
}

/* Kanban Cards Light */
.kanban-column {
    min-height: 520px;
    background-color: #f1f5f9;
}

.kanban-card {
    background-color: #ffffff;
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kanban-card:active {
    cursor: grabbing;
    transform: scale(1.02) rotate(1deg);
}

/* Chat bubbles Light Mode */
.chat-bubble-lead {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 18px 18px 18px 2px;
}

.chat-bubble-agent {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 18px 18px 2px 18px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
