.mapa {
  width: 100%;
  height: 80vh;
  position: relative;
  margin-top: 2rem;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.mapboxgl-popup-content {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  min-width: 250px;
  background: #db5727;
}

.popup-title {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.popup-info {
  margin: 8px 0;
  display: flex;
  align-items: start;
  gap: 8px;
}

.popup-label {
  font-weight: 600;
  color: #fff;
  min-width: 60px;
}

.popup-value {
  color: #fff;
  flex: 1;
}

.popup-value a {
  color: #fff;
  text-decoration: none;
}

.popup-value a:hover {
  text-decoration: underline;
}

.marker {
  background-image: url(img/marker.svg);
  background-size: contain;
  width: 26px;
  height: 39px;
  cursor: pointer;
}

.marker:hover {
  transform: scale(1.1);
}

.mapboxgl-popup-close-button {
  font-size: 24px;
  padding: 5px 10px;
  color: #fff;
  background: none;
}

.mapboxgl-popup-close-button:hover {
  color: #333;
  background: none;
}
