:root {
    --primary-dark: #1a365d;
    --accent: #c9a227;
    --bg-soft: #f4f6f9;
}

body {
    background: var(--bg-soft);
    font-family: "Segoe UI", system-ui, sans-serif;
}

.bg-primary-dark {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%) !important;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.auth-card {
    width: 100%;
    max-width: 440px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,54,93,.08);
    transition: transform .15s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.badge-status {
    font-weight: 500;
    padding: .45em .75em;
}

.table-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,54,93,.08);
}

.processo-numero {
    font-family: "Consolas", "Courier New", monospace;
    font-size: .95rem;
    letter-spacing: .02em;
}

.urgente {
    border-left: 4px solid #dc3545 !important;
}

.timeline-item {
    border-left: 2px solid #dee2e6;
    padding-left: 1.25rem;
    margin-left: .5rem;
    padding-bottom: 1rem;
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.guia-step {
    border-left: 4px solid var(--accent);
}

.card-header-custom {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #1a365d;
    font-weight: 600;
}

.btn-accent:hover {
    background: #b8911f;
    border-color: #b8911f;
    color: #1a365d;
}
