/* CONTENEDOR DEL MAPA */
#mapa-inicio {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  border: 2px solid #6366f1;
  overflow: hidden;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 4px 10px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

/* efecto hover sutil */
#mapa-inicio:hover{
  box-shadow:
    0 15px 35px rgba(0,0,0,0.2),
    0 6px 15px rgba(0,0,0,0.1);
}


/* CONTROLES DEL MAPA (ZOOM) */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: none;
}

.leaflet-control-zoom a {
  background: #6366f1;
  color: white !important;
  border-radius: 10px !important;
  margin: 4px;
  width: 36px;
  height: 36px;
  line-height: 36px;

  font-weight: bold;
  font-size: 18px;

  box-shadow: 0 4px 10px rgba(0,0,0,0.2);

  transition: all 0.25s ease;
}

/* hover botones */
.leaflet-control-zoom a:hover {
  background: #4f46e5;
  transform: scale(1.05);
}


/* POPUP */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  background: #ffffff;
  padding: 8px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.15),
    0 4px 10px rgba(0,0,0,0.08);
}

/* punta del popup */
.leaflet-popup-tip {
  background: #ffffff;
}

/* TEXTO DEL POPUP */
.leaflet-popup-content {
  margin: 8px 12px;
  font-family: system-ui, -apple-system, sans-serif;
}

.leaflet-popup-content p {
  margin: 4px 0;
  color: #374151;
  font-size: 14px;
}

/* TITULO DEL POPUP */
.leaflet-popup-content strong {
  color: #111827;
  font-size: 15px;
}


/* RESPONSIVE */

/* tablets */
@media (max-width: 768px) {

  #mapa-inicio {
    height: 350px;
  }

  .leaflet-control-zoom a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
  }

}

/* celulares */
@media (max-width: 480px) {

  #mapa-inicio {
    height: 300px;
    border-radius: 10px;
  }

  .leaflet-popup-content {
    font-size: 13px;
  }

}
