/* Interactive Custom Map – map.css */

/* ── Contenedor ── */
.icm-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.icm-map {
  width: 100%;
  z-index: 1;
}

/* ── Pin ── */
.icm-pin-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.icm-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.icm-ring {
  width: 46px;
  height: 46px;
  border: 2px solid;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: icm-pulse 2.2s ease-out infinite;
  opacity: 0;
  z-index: 2;
}
.icm-ring2 {
  animation-delay: 1.1s;
}
@keyframes icm-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.2); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* ── Label del pin ── */
.icm-label {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 5px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 4;
}

/* Ocultar attribution de Leaflet */
.leaflet-control-attribution { display: none !important; }
