.info-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.info-card-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-blue, #4682B4);
}

.info-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.info-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-list-item:first-child {
    padding-top: 0;
}

.info-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.info-value {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

:root {
    --brand-blue: #4682B4;
    --brand-blue-hover: #3b6e98;
    --brand-orange: #f7941e;
    --brand-orange-hover: #e08316;
    --bg-light: #f4f6f9;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.status-card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.step-badge {
    background-color: var(--brand-blue);
    color: #fff;
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(70, 130, 180, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(70, 130, 180, 0.3);
}

.step-badge.orange {
    background-color: var(--brand-orange);
    box-shadow: 0 4px 12px rgba(247, 148, 30, 0.25);
}

.step-badge.orange:hover {
    box-shadow: 0 6px 16px rgba(247, 148, 30, 0.35);
}

.timeline-step {
    flex: 1 1 240px;
    min-width: 240px;
}

/* Card de Ação / Reprocessamento */
.card-action {
    border: 2px dashed var(--brand-orange);
    border-radius: 12px;
    background-color: #fffcf8;
}

/* Detalhes Cadastrais */
.detail-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 16px;
    height: 100%;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-blue);
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    word-break: break-word;
}

.btn-brand-primary {
    background-color: var(--brand-blue);
    color: #fff;
    border: none;
}

.btn-brand-primary:hover {
    background-color: var(--brand-blue-hover);
    color: #fff;
}

.btn-brand-orange {
    background-color: var(--brand-orange);
    color: #fff;
    border: none;
}

.btn-brand-orange:hover {
    background-color: var(--brand-orange-hover);
    color: #fff;
}
/* Força a expansão total do card e dos filhos */
#divstatus,
#divstatus .card,
#divstatus .container,
#divstatus .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* CSS */
.signature-wrapper {
    position: relative;
    display: inline-block;
}

.anim-writing {
    position: absolute;
    bottom: 4px;
    right: -2px;
    animation: assinar 1.4s infinite ease-in-out;
}

@keyframes assinar {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(-8px, -3px) rotate(-15deg); }
    50%  { transform: translate(-3px, 1px) rotate(10deg); }
    75%  { transform: translate(-12px, -2px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}