.hotspot-wrapper {
  position: relative;
  width: 100%;
  justify-content: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.hotspot-wrapper img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Puntos */
.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FF5722; /* color llamativo */
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 5;
}

.hotspot:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Bocadillo */
.hotspot-info {
  position: absolute;
  max-width: 280px;
  max-height: 200px;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 10;
  display: none;
  text-align: left;
}

.hotspot-info.active {
  display: block;
}

.hotspot-info h3.hotspot-title {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.hotspot-info p.hotspot-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #444;
}

/* Botón cerrar */
.close-info {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .hotspot-info {
    max-width: 200px;
    font-size: 0.85rem;
  }
}
