.static-map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.static-map .map-image {
  display: block;
  width: 100%;
  height: auto;
}

.static-map .map-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #f58220;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: 2px solid #fff;
}

.static-map .map-pin:hover::after {
  content: attr(data-title);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  white-space: nowrap;
}

/* Modal container */
.map-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

/* Modal content */
.map-modal-content {
  background: #f1f1f1;
  margin: 8% auto;
  padding: 0;
  border-radius: 12px;
  width: 50%;
  max-width: 270px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s;
}

/* Close button */
.map-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #f58220;
  z-index: 10;
}
.map-modal-close:hover {
  color: #fff;
}
.map-tooltip {
  pointer-events: none; /* não atrapalha o hover */
}

/* Conteúdo do card */
.map-card {
  padding: 20px;
  background: #D1D1D2;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  color: #0B1D37;
}
.map-card-logo {
  max-width: 140px;
  display: block;
  margin-bottom: 15px;
}
.map-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0B1D37;
}

@keyframes fadeIn {
  from {opacity:0; transform: translateY(-10px);}
  to {opacity:1; transform: translateY(0);}
}
