.expositor-card {
  border: none;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.expositor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* MAPA */
.stand {
  cursor: pointer;
  transition: all 0.2s ease;
}

.stand:hover {
  fill: #28a745 !important;
  opacity: 0.85;
}

/* TOOLTIP */
#tooltip-mapa {
  position: absolute;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 9999;
  display: none;
  white-space: nowrap;
}