/* ==========================================================================
   PORTAL WEB DE ENFERMERÍA - MARILUZ MERCADO TAPIA
   ESTILOS DE LA BARRA DE CONFIANZA / STATS STRIP
   ========================================================================== */

/* Stats Strip */
.stats-strip {
  background: linear-gradient(90deg, #F3ECE1 0%, #E8F2ED 50%, #F3ECE1 100%);
  border-top: 1px solid rgba(15, 43, 72, 0.08);
  border-bottom: 1px solid rgba(15, 43, 72, 0.08);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background-color: rgba(250, 247, 242, 0.6);
  border: 1px solid rgba(15, 43, 72, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  background-color: var(--surface-card);
  border-color: rgba(15, 43, 72, 0.15);
  box-shadow: var(--shadow-card);
}

.stat-value {
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--ink-muted);
}
