/* ==========================================================================
   HIRING UP - DASHBOARD EMPRESA (CSS EXCLUSIVO & REMASTERIZADO)
   ========================================================================== */

/* 1. CONFIGURAÇÕES BASE */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f7fc;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 30px;
}

/* 2. NAVBAR RESTRUTURADA */
.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-highlight {
    color: #ffc107;
}

/* 3. BOTÕES CUSTOMIZADOS */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: #173ea5;
    border-color: #173ea5;
    color: #fff;
}

.btn-primary:hover {
    background-color: #224bc0;
    border-color: #224bc0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 62, 165, .2);
}

.btn-outline-primary {
    color: #173ea5;
    border-color: #173ea5;
}

.btn-outline-primary:hover {
    background-color: #173ea5;
    border-color: #173ea5;
    color: #fff;
}

.rounded-pill {
    border-radius: 999px !important;
}

/* 4. CARDS DE MÉTRICAS */
.card {
    border-radius: 16px !important;
    border: none !important;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(16, 40, 85, 0.1) !important;
}

.card p.text-muted.fw-bold {
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    color: #626a7c !important;
}

.card h2.fw-bold {
    color: #12234d;
    font-size: 2.2rem;
}

/* 5. TABELA DE GERENCIAMENTO */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead.table-light {
    background-color: #f8faff;
}

.table thead th {
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 16px;
    border-bottom: 2px solid #eef2f6;
}

.table tbody td {
    padding: 16px;
    color: #333f56;
}

.table .btn-sm {
    padding: 6px 10px;
    font-size: 0.85rem;
    border-radius: 8px;
    margin-left: 4px;
}

/* 6. COMPONENTES VISUAIS (Badges e Barras de Progresso) */
.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
}

.progress {
    background-color: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}

.progress-bar {
    border-radius: 12px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fa-ranking-star {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* ==========================================================================
   7. CLASSES UTILITÁRIAS (Substituindo o antigo CSS Inline)
   ========================================================================== */
.border-left-primary { border-left: 5px solid #173ea5 !important; }
.border-left-warning { border-left: 5px solid #ffc107 !important; }
.border-left-success { border-left: 5px solid #198754 !important; }
.border-left-danger  { border-left: 5px solid #dc3545 !important; }

.progress-label {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.progress-sm {
    height: 10px;
}

.table-header-sm {
    font-size: 0.9rem;
}