/* ======================================================================
   CHECKPOINTFLOW - SATISFAÇÃO & NPS (APPLE TITANIUM)
   ====================================================================== */

.nps-summary-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .nps-summary-grid {
    grid-template-columns: 1fr;
  }
}

.nps-score-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.875rem;
}

.nps-dial {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(13, 16, 23, 0.9) 75%);
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15), var(--bevel-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nps-dial-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.nps-dial-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nps-distribution-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.nps-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nps-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
}

.nps-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.nps-fill-promoter {
  height: 100%;
  background: var(--success);
  border-radius: var(--radius-full);
}

.nps-fill-neutral {
  height: 100%;
  background: var(--warning);
  border-radius: var(--radius-full);
}

.nps-fill-detractor {
  height: 100%;
  background: var(--danger);
  border-radius: var(--radius-full);
}

/* Health Score dos Clientes */
.client-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.client-health-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.client-health-card:hover {
  transform: translateY(-1.5px);
  border-color: var(--border-glass-hover);
}

.client-health-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.health-badge-circle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
}

.health-badge-circle.high {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
}

.health-badge-circle.med {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid var(--warning-border);
}

.health-badge-circle.low {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border);
}
