/* ==========================================================================
   NEXA COMPONENTS — Soft Premium UI Elements
   Componentes táteis, estados positivos, drawer técnico, terminal limpo
   ========================================================================== */

/* Badge e Indicadores de Estado */
.status-pill-subtle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.status-dot-active {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary);
}

.status-dot-muted {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

/* Caixa de Atalho Discreta (Substitui o banner gamer de emergência) */
.shortcut-notice-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 28px;
}

.shortcut-kbd {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-subtle);
  border: 1px solid #D5DBD6;
  padding: 2px 7px;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Animação suave para elementos interativos */
.fade-in {
  animation: componentFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes componentFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
