/* CIA — Central Inteligente de Almoxarifado - Premium Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;900&display=swap');

/* Dynamic Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Base Body Style */
body {
    background-color: #f8fafc !important; /* Premium light slate-blue background */
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Styles */
.glass-nav {
    background: rgba(15, 23, 42, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Active Link Indicators on Navbar */
.nav-link-tab {
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8;
}
.nav-link-tab:hover {
    color: #ffffff;
}
.nav-link-tab.active {
    color: #ffffff;
    font-weight: 600;
}
.nav-link-tab::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background-color: #10b981;
    border-radius: 99px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-link-tab:hover::after {
    transform: translateX(-50%) scaleX(0.7);
}

/* Soft Premium inputs */
input, select, textarea {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
input:focus, select:focus, textarea:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12) !important;
    outline: none !important;
}

/* Premium Elevating Cards */
.premium-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 8px -1px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
    border-color: #cbd5e1;
}

/* Buttons with interactive Micro-animations */
.btn-premium-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -1px rgba(16, 185, 129, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-premium-primary:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3), 0 4px 6px -2px rgba(16, 185, 129, 0.15);
}
.btn-premium-primary:active {
    transform: translateY(0);
}

/* Custom Table clean layout */
.table-premium {
    width: 100%;
    border-collapse: collapse;
}
.table-premium th {
    font-family: 'Outfit', sans-serif;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 14px 16px;
    border-bottom: 2px solid #e2e8f0;
}
.table-premium td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}
.table-premium tr:hover {
    background-color: #f8fafc;
}
