/* Tooltip DOM para desktop (hover) e mobile (toque longo) — sem balloon.css no touch */

.app-tooltip {
  position: fixed;
  z-index: 10000;
  max-width: min(16rem, calc(100vw - 1.5rem));
  padding: 0.5rem 0.75rem;
  border-radius: 0.35rem;
  background: rgba(16, 16, 16, 0.95);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  pointer-events: none;
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.25);
}

.app-tooltip[hidden] {
  display: none !important;
}
