/* Balões explicativos da DEMO (CD Tech). Estilo nativo do painel (dark + âmbar). */
.tour-balloon {
  position: relative;
  margin: 0 0 20px;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 14px 42px 14px 16px;
}
.tour-balloon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  border-left: 1px solid var(--border-light);
  border-top: 1px solid var(--border-light);
  transform: rotate(45deg);
}
.tour-balloon__title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-bright);
  margin-bottom: 5px;
}
.tour-balloon__title::before {
  content: "💡";
  font-size: 0.95rem;
}
.tour-balloon__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.tour-balloon__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--muted);
}
.tour-balloon__close:hover {
  color: var(--text);
}
@keyframes tour-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tour-balloon--in {
  animation: tour-in 0.25s ease;
}
