@font-face {
  font-family: 'Nunito';
  src: url("../fonts/static/Nunito-Italic.ttf");
  font-style: italic;
}
@font-face {
  font-family: 'Nunito';
  src: url("../fonts/static/Nunito-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: 'Nunito';
  src: url("../fonts/static/Nunito-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: 'Nunito';
  src: url("../fonts/static/Nunito-Regular.ttf");
  
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}
/* @font-face {
  font-family: 'Hisbullah';
  src: url("../fonts/Hisbullah.otf");
  
} */


.point-content {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.point-mark.active .point-content {
  display: block;
}

  
@keyframes pop-up {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}




.containerDot {
  position: relative;
  width: 100%; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffcc00; /* Change color as desired */
  animation: pop-up 1s ease infinite alternate; /* Adjust animation duration */
}


.image-container {
  position: relative;
  max-width: 100%;
}

.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.point-mark {
  position: absolute;
  width: 31px;
  height: 50px;
  background-image:  url("../images/backgrounds/locator.png");
  cursor: pointer;
  transform: translate(-50%, -50%);
  right:13.2%;
  top:41.3%;
}


.point-mark:nth-child(2){
  right:13.2%;
  top:41.3%;
}
.point-mark:nth-child(3){
  right:14.1%;
  top:53.8%;
}
.point-mark:nth-child(4){
  right:20.1%;
  top:57%;
}
.point-mark:nth-child(5){
  right:29%;
  top:46%;
}


.point-content {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.point-mark.active .point-content {
  display: block;
}


.modal {
  display: none; /* Por padrão, o modal está escondido */
  position: fixed; /* Permanece fixo na tela */
  z-index: 9998; /* Posicionamento na pilha */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Fundo escuro para destacar o modal */
}

.modal-content {
  background-color: white;
  margin: 5% auto; /* Centraliza o modal verticalmente */
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 800px;
  height: 68%;
  position: relative;
  font-family: "Hisbullah, Nunito, Helvetica Neue", Helvetica, Arial, sans-serif;
  z-index: 9999;
}

.close {
  color: #044861;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 0.8;
}

.close:hover,
.close:focus {
  color: #007096;
  text-decoration: none;
  cursor: pointer;
}

.modal-content iframe {
  width: 100%;
  height: 73%;
}