/* ===== WORLDMAP — contenedor y canvas ===== */

.worldmap-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 1;
}

#worldmap-wrap {
  width: 100%;
  min-width: 0;
}

#worldmap-canvas {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(143,191,174,0.10);
  box-shadow:
    0 0 60px rgba(208,93,62,0.12),
    0 0 110px rgba(143,191,174,0.06),
    0 28px 70px rgba(0,0,0,0.60);
}

/* ── Destinos: fila horizontal debajo del mapa ── */
.worldmap-wrapper .dest-nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  min-width: unset;
  max-height: none;
  overflow-y: visible;
  width: 100%;
  padding-right: 0;
  gap: 0.55rem;
}

.worldmap-wrapper .dest-btn {
  transform: none !important;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .worldmap-wrapper { gap: 1.4rem; }
  .worldmap-wrapper .dest-btn { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
}
