/* ===== Cards/estatísticas topo e busca ===== */
.filters-card {
    margin: 18px auto;
    padding: 18px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--cinza-borda);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    margin-top: 6px;
}

.search-input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--cinza-borda);
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    outline: none;
    transition: box-shadow .2s, border-color .2s;
}

.search-input:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .15);
}

/* “Renderizado em …” */
.render-top {
    margin: 8px 0 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(90deg, #0b76c5, #1e40af);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.render-top .clock {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    opacity: .95;
}

.render-top .label {
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .95rem;
}

.render-top time {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}