/* Estilos Globais Santo Expedito Web */

:root {
    --primary-blue: #0d47a1;
    --bg-light: #f1f5f9;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.header-panel {
    background-color: var(--primary-blue);
    color: white;
    padding: 30px;
}

/* Badges de Status Modernas */
.badge-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: help;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-status:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

/* Modal de Ajuda de Status Personalizado */
#statusHelpOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.status-help-card {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.status-help-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.status-help-header i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.status-help-body {
    padding: 25px;
    text-align: center;
}

.status-help-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-help-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.status-help-footer {
    padding: 15px 25px 25px;
}

.btn-status-close {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    color: white;
    transition: opacity 0.2s;
}

.btn-status-close:hover {
    opacity: 0.9;
}
