/* M55.C.checklist — Prontidão operacional */

.cf-po-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #e2e8f0;
}
.cf-po-refresh {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px;
  font-size: 12px; color: #475569; cursor: pointer; transition: background .12s;
}
.cf-po-refresh:hover { background: #f1f5f9; }

.cf-po-kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px; margin-bottom: 20px;
}
.cf-po-kpi {
  background: #fff; padding: 12px 14px; border-radius: 10px;
  display: flex; align-items: flex-start; gap: 10px;
  border-left: 3px solid;
}
.cf-po-kpi strong { display: block; font-size: 18px; font-family: 'IBM Plex Sans', sans-serif; line-height: 1.1; }

.cf-po-section {
  background: #fff; border-radius: 12px; padding: 16px 18px; margin-bottom: 14px;
}
.cf-po-section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #f1f5f9;
}
.cf-po-section-head h3 {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0; font-size: 14px; color: #0f172a; font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cf-po-section-head small {
  font-size: 11px; color: #64748b; background: #f1f5f9;
  padding: 3px 10px; border-radius: 999px; font-weight: 600;
}

.cf-po-checks { display: flex; flex-direction: column; gap: 6px; }
.cf-po-check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  border-left: 3px solid;
}

.cf-po-cta {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; background: #1E5BAA; color: #fff;
  border: none; border-radius: 5px; font-size: 11px; font-weight: 600; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: filter .12s;
}
.cf-po-cta:hover { filter: brightness(.92); }

@media (max-width: 720px) {
  .cf-po-kpis { grid-template-columns: repeat(2, 1fr); }
  .cf-po-cta { font-size: 10.5px; padding: 3px 8px; }
}
