@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #060907;
    --bg-surface: #0e1611;
    --bg-surface-elevated: #15221a;
    --primary: #10b981;
    --primary-glow: rgba(16, 185, 129, 0.15);
    --primary-glow-strong: rgba(16, 185, 129, 0.4);
    --secondary: #34d399;
    --accent: #059669;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(16, 185, 129, 0.15);
    --border-glow: rgba(16, 185, 129, 0.25);
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --success: #10b981;
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(16, 185, 129, 0.05);
}

/* Base resets & layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--bg-main);
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(52, 211, 153, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(16, 185, 129, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px var(--primary-glow);
        border-color: var(--border-color);
    }
    50% {
        box-shadow: 0 0 25px var(--primary-glow-strong);
        border-color: var(--primary);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.animate-fade-in {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Premium Layout Elements */
header {
    background: rgba(14, 22, 17, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-glow-strong);
    position: relative;
    overflow: hidden;
}

.logo-symbol::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
}

.logo-symbol:hover::after {
    left: 120%;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 8px;
    background: rgba(6, 9, 7, 0.6);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.nav-item {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
    background: var(--bg-surface-elevated);
    border-color: var(--border-color);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--bg-surface-elevated), rgba(16, 185, 129, 0.1));
    box-shadow: 0 0 15px var(--primary-glow);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* User Switcher Dropdown & Indicators */
.profile-switcher {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-switcher:hover {
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 12px var(--primary-glow);
}

/* Main Container spacing */
main {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* Glass Card Definition */
.glass-card {
    background: rgba(14, 22, 17, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.05);
    color: var(--primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

/* Landing Page / Hero Section Styles */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-text h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.mascot-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 22, 17, 0.9), rgba(5, 46, 22, 0.2));
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.mascot-hero-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    filter: blur(50px);
    top: 10%;
    left: 10%;
}

.mascot-avatar {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    margin-bottom: 1.5rem;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mascot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service / Product Showcase cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.service-card {
    background: rgba(14, 22, 17, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* User Selection Hub / Profile Segment cards */
.role-hub {
    margin-bottom: 4rem;
}

.role-hub-title {
    text-align: center;
    margin-bottom: 2rem;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.role-card {
    background: rgba(14, 22, 17, 0.8);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.role-card:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.08);
    transform: scale(1.03);
}

.role-card.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(14, 22, 17, 0.9));
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.role-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.role-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Multi-Step Chamados Form Wizard */
.wizard-container {
    max-width: 750px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-surface-elevated);
    z-index: 1;
    transform: translateY(-50%);
}

.wizard-step-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    z-index: 1;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

.step-node {
    width: 38px;
    height: 38px;
    background: var(--bg-surface);
    border: 2px solid var(--bg-surface-elevated);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    z-index: 2;
    transition: var(--transition-smooth);
    position: relative;
}

.step-node.active {
    border-color: var(--primary);
    background: var(--bg-surface-elevated);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-node.completed {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-main);
}

.step-node span {
    position: absolute;
    bottom: -22px;
    font-size: 0.7rem;
    white-space: nowrap;
    font-weight: 600;
    color: var(--text-muted);
}

.step-node.active span {
    color: var(--primary);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeInUp 0.4s ease-out forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.form-control {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Triage Visual Options */
.triage-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.triage-card {
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.triage-card:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
}

.triage-card.active {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.triage-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.triage-card span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Client Area Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

@media (max-width: 968px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.sidebar-item:hover, .sidebar-item.active {
    background: var(--bg-surface-elevated);
    color: #ffffff;
    border-color: var(--border-color);
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--bg-surface-elevated), rgba(16, 185, 129, 0.08));
    color: var(--primary);
    border-color: var(--border-color);
    box-shadow: inset 4px 0 0 var(--primary);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

.stat-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.stat-box h5 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-box .stat-val {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-header);
}

.stat-box .stat-trend {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-box::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
    top: -40px;
    right: -40px;
    filter: blur(30px);
}

/* Live Ticket Status Visual Timeline */
.timeline-status {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-status::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-surface-elevated);
    z-index: 1;
}

.timeline-fill {
    position: absolute;
    top: 14px;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 1;
    transition: var(--transition-smooth);
}

.timeline-node {
    z-index: 2;
    text-align: center;
    width: 32px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    border: 3px solid var(--bg-surface-elevated);
    margin: 0 auto 8px auto;
    transition: var(--transition-smooth);
}

.timeline-node.completed .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-node.active .timeline-dot {
    background: var(--bg-surface);
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.timeline-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    position: absolute;
    transform: translateX(-35%);
}

.timeline-node.active .timeline-label, .timeline-node.completed .timeline-label {
    color: #ffffff;
}

/* File explorer */
.file-list {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.file-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px 18px;
    align-items: center;
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.file-row:last-child {
    border-bottom: none;
}

.file-row:hover {
    background: rgba(16, 185, 129, 0.04);
}

.file-name {
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-row.header-row {
    font-weight: bold;
    color: var(--primary);
    background: rgba(16, 185, 129, 0.05);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

/* AI Central Layout */
.ai-central-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    height: 650px;
}

@media (max-width: 968px) {
    .ai-central-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.ai-agents-list {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.agent-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.agent-item-card:hover, .agent-item-card.active {
    background: var(--bg-surface-elevated);
    border-color: rgba(16, 185, 129, 0.2);
}

.agent-item-card.active {
    background: linear-gradient(135deg, var(--bg-surface-elevated), rgba(16, 185, 129, 0.08));
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.agent-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid var(--border-color);
}

.agent-meta h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.agent-meta p {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.chat-arena {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.chat-header {
    padding: 12px 18px;
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    line-height: 1.5;
    font-size: 0.92rem;
    animation: fadeInUp 0.3s ease-out;
}

.chat-bubble.bot {
    background: var(--bg-surface-elevated);
    align-self: flex-start;
    border-top-left-radius: 0;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.chat-bubble.user {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.chat-bubble h4 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 0.95rem;
}

.chat-bubble ul {
    margin-left: 18px;
    margin-top: 6px;
}

.chat-bubble pre {
    background: var(--bg-main);
    padding: 10px;
    border-radius: 6px;
    margin-top: 8px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 0.82rem;
    border: 1px solid var(--border-color);
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 1.5rem;
}

.suggestion-chip {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.suggestion-chip:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.chat-footer {
    padding: 12px 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

/* Floating mascot chat widget */
.mascot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mascot-widget-trigger {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid #ffffff;
    animation: float 4s ease-in-out infinite;
}

.mascot-widget-trigger img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.mascot-widget-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

.mascot-chat-window {
    width: 360px;
    height: 480px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    margin-bottom: 12px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: fadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mascot-chat-window.active {
    display: flex;
}

.mascot-chat-header {
    background: linear-gradient(135deg, var(--bg-surface-elevated), rgba(16, 185, 129, 0.1));
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mascot-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mascot-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
}

.mascot-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

.mascot-chat-header-info h4 {
    font-size: 0.95rem;
    font-family: var(--font-header);
}

.mascot-chat-header-info span {
    font-size: 0.7rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mascot-chat-header-info span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.mascot-chat-close {
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.mascot-chat-close:hover {
    color: #ffffff;
}

/* Knowledge Base Base de Conhecimento */
.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.kb-card {
    background: rgba(14, 22, 17, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.kb-card:hover {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.03);
}

.kb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.kb-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.kb-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
}

.kb-preview {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.kb-detail {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.kb-card.expanded .kb-detail {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* Strategic indicators / Admin */
.admin-metric-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .admin-metric-grid {
        grid-template-columns: 1fr;
    }
}

.admin-chart-mock {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    margin-top: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-surface-elevated);
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10%;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, var(--accent), var(--primary));
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 0 10px var(--primary-glow);
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-bar-tooltip {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--bg-main);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    white-space: nowrap;
}

.chart-bar:hover .chart-bar-tooltip {
    opacity: 1;
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 8px;
    text-align: center;
}

/* Utility classes & tags */
.badge {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-received { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.badge-triage { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.badge-analysis { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.badge-waiting { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.badge-production { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.badge-revision { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.badge-approval { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.badge-completed { background: rgba(16, 185, 129, 0.25); color: #34d399; border: 1px solid var(--primary); }
.badge-archived { background: rgba(107, 114, 128, 0.15); color: #9ca3af; }

.priority-high { color: var(--danger); font-weight: 700; }
.priority-medium { color: var(--warning); font-weight: 700; }
.priority-low { color: var(--success); font-weight: 700; }

.text-gradient-green {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Matrix & Simulator Styling */
.radial-progress-container {
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--primary-glow);
}

.radial-progress-container circle {
    transform-origin: center;
}

.btn-diag-q {
    transition: var(--transition-smooth);
}

.btn-diag-q.active-yes {
    background: var(--primary) !important;
    color: var(--bg-main) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow-strong) !important;
}

.btn-diag-q.active-no {
    background: var(--danger) !important;
    color: #ffffff !important;
    border-color: var(--danger) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4) !important;
}

/* Sliders */
.sim-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    outline: none;
    transition: opacity .2s;
    margin: 8px 0;
}

.sim-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 8px var(--primary-glow-strong);
    transition: var(--transition-smooth);
}

.sim-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--secondary);
}

.sim-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 8px var(--primary-glow-strong);
    transition: var(--transition-smooth);
}

.sim-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: var(--secondary);
}

/* Terminals */
#sql-terminal-textarea {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    border-color: rgba(52, 211, 153, 0.2);
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-surface);
    margin-top: auto;
}

/* ====================================================================
   PAGAMENTOS & CHECKOUT CORPORATIVO PREMIUM
   ==================================================================== */

.financial-alert-banner {
    animation: border-pulse-danger 3s infinite;
    position: relative;
    overflow: hidden;
}

.financial-alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
    animation: sweep-light 4s infinite linear;
}

@keyframes sweep-light {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes border-pulse-danger {
    0%, 100% {
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.05);
    }
    50% {
        border-color: rgba(239, 68, 68, 0.7);
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.15);
    }
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px var(--danger));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px var(--danger));
    }
}

.checkout-container {
    animation: modal-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkout-pending-warning {
    animation: pulse-warning-bg 3s infinite ease-in-out;
}

@keyframes pulse-warning-bg {
    0%, 100% {
        background: rgba(245, 158, 11, 0.03);
        border-color: rgba(245, 158, 11, 0.15);
    }
    50% {
        background: rgba(245, 158, 11, 0.08);
        border-color: rgba(245, 158, 11, 0.35);
    }
}

@keyframes modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkout-grid {
    position: relative;
}

/* Badge financeiro personalizado */
.badge-waiting-pix {
    background: rgba(245, 158, 11, 0.1) !important;
    color: var(--warning) !important;
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.05) !important;
}

.badge-paid-pix {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05) !important;
}

/* ====================================================================
   ESTILOS PREMIUM DE AVATAR, CHECKLIST DE DOCUMENTOS E PAINÉIS
   ==================================================================== */

/* Header avatar monogram / circular image styling */
.header-profile-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.header-profile-widget:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 10px var(--primary-glow);
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary);
    box-shadow: 0 0 5px var(--primary-glow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-elevated);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    overflow: hidden;
}

.avatar-large {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
    border-width: 3px;
    box-shadow: 0 0 20px var(--primary-glow-strong);
}

/* Double Pane Split Layout */
.double-pane {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

/* Document Upload Wrapper & Camera Icon Hover Overlay */
.profile-photo-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem auto;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}

.profile-photo-wrapper input[type="file"] {
    display: none;
}

.profile-photo-wrapper .upload-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.profile-photo-wrapper:hover .upload-overlay {
    opacity: 1;
}

/* Document Checklist Matrix list styling */
.document-matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.82rem;
}

.document-matrix-table th {
    border-bottom: 2px solid var(--border-color);
    color: var(--primary);
    padding: 10px 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.document-matrix-table td {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Neon Glow Badges for Document statuses */
.badge-doc-missing {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    text-shadow: 0 0 5px rgba(239, 68, 68, 0.2);
}

.badge-doc-valid {
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    text-shadow: 0 0 5px var(--primary-glow);
}

.badge-doc-expiring {
    background: rgba(245, 158, 11, 0.1) !important;
    color: var(--warning) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.2);
}

.badge-doc-expired {
    background: rgba(220, 38, 38, 0.2) !important;
    color: #f87171 !important;
    border: 1px solid rgba(220, 38, 38, 0.4) !important;
    text-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

/* IMAP Support Inbox email cards */
.email-inbox-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.email-inbox-card:hover {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(4px);
}

.email-inbox-card.active {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow);
}

.email-inbox-card.unread {
    border-left: 3px solid var(--primary);
    font-weight: 700;
}

.email-inbox-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ====================================================================
   RADAR RAÍZES - ESTILOS PREMIUM DO MÓDULO DE INTELIGÊNCIA INSTITUCIONAL
   ==================================================================== */
.radar-terminal {
    background: #020403 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9), 0 0 10px rgba(16, 185, 129, 0.08) !important;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 0.78rem !important;
    color: #34d399 !important;
    height: 180px;
    overflow-y: auto;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: left;
    scrollbar-width: thin;
    position: relative;
}

.radar-terminal::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
}

.terminal-line {
    margin-bottom: 4px;
    line-height: 1.4;
    white-space: pre-wrap;
    opacity: 0.9;
}

.terminal-line.success {
    color: #10b981 !important;
    font-weight: 700;
}

.terminal-line.warning {
    color: #f59e0b !important;
}

.terminal-line.error {
    color: #ef4444 !important;
    font-weight: 700;
}

.radar-dash-keyword {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.radar-dash-keyword:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
    transform: scale(1.05);
}

.radar-card-alert {
    background: rgba(14, 22, 17, 0.55);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.radar-card-alert:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.radar-card-alert.relevance-alto {
    border-left: 4px solid var(--danger) !important;
}

.radar-card-alert.relevance-médio {
    border-left: 4px solid var(--warning) !important;
}

.radar-card-alert.relevance-baixo {
    border-left: 4px solid var(--info) !important;
}

.admin-radar-client-card {
    background: rgba(14, 22, 17, 0.4);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.admin-radar-client-card:hover {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(4px);
}

.admin-radar-client-card.active {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px var(--primary-glow);
}

.radar-alert-pill {
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.radar-alert-pill.novo {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
    border: 1px solid var(--info);
}

.radar-alert-pill.em-analise {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.radar-alert-pill.urgente {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid var(--danger);
    animation: pulse-warning 1.5s infinite;
}

.radar-alert-pill.respondido {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.radar-alert-pill.concluido {
    background: rgba(16, 185, 129, 0.2);
    color: #ffffff;
    border: 1px solid var(--primary);
}

.radar-alert-pill.arquivado {
    background: rgba(107, 114, 128, 0.15);
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
}





/* ============================================================================
   NEON GREEN PULSING MICRO-ANIMATION & MATCHMAKING ENG. GLOWS
   ============================================================================ */

.btn-pulse-green {
    animation: btnPulseGreen 2.2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.btn-pulse-green:hover {
    transform: scale(1.04) !important;
    filter: brightness(1.15);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.7) !important;
}

@keyframes btnPulseGreen {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 4px 22px rgba(16, 185, 129, 0.55);
        border-color: rgba(16, 185, 129, 0.85);
    }
}

.glass-card.relevance-alto {
    border-color: rgba(239, 68, 68, 0.25) !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(6, 9, 7, 0.6) 100%) !important;
}

.glass-card.relevance-alto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--danger);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
