  .region {
    fill: #d9dad585; 
    transition: fill 0.3s ease; 
    cursor: pointer;
}

.region:hover {
    fill: rgba(170, 175, 96, 0.5);
    filter: drop-shadow(3px 3px 5px rgba(255, 255, 255, 0.963)); 
}

.tooltip-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tooltip {
  position: absolute;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 10px;
  max-width: 300px;
  z-index: 1000;
}

.tooltip-image {
  width: 200px; 
  height: auto; 
  max-height: 150px; 
  object-fit: cover;  
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  margin-bottom: 10px;
}

.tooltip-carousel {
  position: relative;
  overflow: hidden;
  height: auto;
}

.carousel-item {
  display: none;
  text-align: center;

}

.carousel-item.active {
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-control.prev {
  left: 5px;
}

.carousel-control.next {
  right: 5px;
}


.mapa{
  margin-top: 250px;
}
.responsive-map {
  width: 100%; 
  height: auto; 
  max-width: 900px; 
}

@media (max-width: 768px) {
  .responsive-map {
      max-width: 100%; 
  }
  .mapa{
    margin-top: 20px;
  }
  .header{
   height: 70vh;
  }
  .activo{
    fill: rgba(170, 175, 96, 0.399);
  
  }
}
@media (min-width: 800px) {
  .responsive-map {
    max-width: 100%; 
}
  .header{
   height: 60vh;
  }
}
@media (min-width: 1000px) {
  .responsive-map {
    max-width: 100%; 
}
  .header{
   height: 80vh;
  }
}

