/* ——————————————————
   CONTENEDORES
—————————————————— */
.map-container {
  position: relative;
  width: 100%;
  background: #12121A;
  text-align: center;

  
}

.map-wrapper {
  position: relative;
  margin: 0 auto;
  background-color: #12121A;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 20px;
  min-height: calc(0vh - 40px);
  box-sizing: border-box;
}

.map-title {
  color: #cacbd2;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 3%;
}

/* ------------------------------
   MAPA
------------------------------ */
.map-img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ------------------------------
   LISTA DE UBICACIONES
------------------------------ */
.location-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.location-item {
  color: #cacbd2;
  font-weight: 600;
  padding: 6px 12px;
  border: 2px solid #252533;
  border-radius: 6px;
  transition: 0.2s;
  cursor: pointer;
}

.location-item.active {
  border-color: #00B479;
  color: #00B479;
}

/* ------------------------------
   PUNTOS DEL MAPA
------------------------------ */
.point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00B479;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 15px #00B47988;
  animation: pulse 3s infinite;
  z-index: 2;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #00B47966; }
  70% { box-shadow: 0 0 0 20px #c822cb00; }
  100% { box-shadow: 0 0 0 0 #c822cb00; }
}

/* ------------------------------
   TOOLTIP
------------------------------ */
.tooltip {
  top: -35px;
  position: absolute;
  background: #12121A;
  border: 2px solid #252533;
  border-radius: 14px;
  padding: 10px;
  font-size: 12px;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  z-index: 9999; /* ahora sí funciona */
}


.point:hover .tooltip {
  opacity: 1;
}

/* Contenedor de bandera + texto */
.tooltip-content {
  display: flex;
  align-items: center;
  gap: 8px; /* espacio entre bandera y texto */
}

/* Bandera a la izquierda */
.tooltip-content .flag {
  width: 22px;
  height: auto;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Contenedor del texto */
.tooltip-content .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* alineado a la izquierda */
}

/* Nombre y spec */
.tooltip-content .name {
  color: #cacbd2;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
}

.tooltip-content .spec {
  color: #C822CB;
  font-weight: bold;
  font-size: 13px;
}

    .map-container [class~="min-w-max"] { display: none !important; }
    .map-container .max-w-md { display: none !important; }
    .map-container .xl\:col-span-2 { display: none !important; }



    @media (max-width: 700px) {
  

  .location-item {
  display: none;
}

.map-title {
  color: #cacbd2;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: -50px;
  letter-spacing: 1px;
  text-align: center;
}


.point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00B479;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 15px #00B47988;
  animation: pulse 3s infinite;
  z-index: 2;
}
}