/* ============================================================
   Transparência Dados Widget — dados.css
   ============================================================ */

/* ── Widget wrapper ─────────────────────────────────────────── */
.tpord-widget {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: .9375rem;
    color: #1a1a2e;
}

/* ── Alerta de erro ─────────────────────────────────────────── */
.tpord-alert {
    border-radius: 6px;
    padding: 14px 18px;
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.tpord-alert-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #b71c1c;
}
.tpord-alert code {
    background: #ffe0e0;
    padding: 1px 5px;
    border-radius: 3px;
    font-size: .8rem;
    word-break: break-all;
}

/* ── Cartões de resumo ──────────────────────────────────────── */
.tpord-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}
.tpord-card {
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    padding: 18px 16px 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
}
.tpord-card:hover {
    box-shadow: 0 5px 16px rgba(0,0,0,.11);
    transform: translateY(-2px);
}
.tpord-card-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1b2a;
    line-height: 1.2;
    margin-bottom: 4px;
    word-break: break-word;
}
.tpord-card-label {
    font-size: .78rem;
    color: #546e7a;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Títulos de seção ───────────────────────────────────────── */
.tpord-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #263238;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eaf0;
}

/* ── Gráfico ────────────────────────────────────────────────── */
.tpord-chart-wrap {
    margin-bottom: 28px;
}
.tpord-chart-container {
    position: relative;
    width: 100%;
}

/* ── Tabela ─────────────────────────────────────────────────── */
.tpord-table-wrap {
    margin-bottom: 20px;
}
.tpord-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e8eaf0;
    border-radius: 6px;
}
.tpord-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem;
    white-space: nowrap;
    min-width: 400px;
}
.tpord-table thead tr {
    background: #f0f4f8;
}
.tpord-table th {
    padding: 9px 12px;
    text-align: left;
    font-weight: 600;
    color: #37474F;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 2px solid #dce0e8;
    white-space: nowrap;
}
.tpord-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f2f5;
    color: #1a1a2e;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tpord-table tbody tr:last-child td { border-bottom: none; }
.tpord-table tbody tr:hover td { background: #f5f8ff; }

.tpord-table-info {
    font-size: .8rem;
    color: #78909c;
    margin-top: 6px;
    padding: 0 2px;
}

/* ── Info / rodapé ──────────────────────────────────────────── */
.tpord-info {
    font-size: .85rem;
    color: #78909c;
    margin: 8px 0;
}
.tpord-source {
    font-size: .78rem;
    color: #90a4ae;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
}
.tpord-source a {
    color: #1565C0;
    text-decoration: none;
}
.tpord-source a:hover { text-decoration: underline; }

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .tpord-cards { grid-template-columns: repeat(2, 1fr); }
    .tpord-card-value { font-size: 1.1rem; }
}
@media (max-width: 380px) {
    .tpord-cards { grid-template-columns: 1fr; }
}
