
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;350;400;500;600;700;800;900&display=swap');


:root {
  --verde: #47CBAD;
  --azul: #6AB4D5;
  --roxo: #AF55CC;
}

* {
  margin: 0;
  padding: 0;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    display: flex; /* Adicionada a propriedade display com o valor flex */
    /* flex-direction: column; */
    background-color: #ffffff;
}


#map {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
  height: 470px;
  border-radius: 20px;
  z-index: 1;
}


/* .container-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

   */
  .btns {
    position: absolute;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 10;
  }

  /* .btns::before {
    content: "Veja imagens do conflito";
    position: absolute;
    top: -25px;
    font-size: 19px;
    color: #6b6b6b;
    text-transform: uppercase;
  } */
  
  .btn {
    padding: 10px 22px;
    margin: 0 5px;
    background-color: #ccc;
    color: #fff;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
    /* remover piscado azulado que aparece ao clicar no botão */
    -webkit-tap-highlight-color: transparent;
  }

  .btn:not(.active):hover{
    background-color: rgb(149, 149, 149);
  }

  .btn.cidade,
  .btn.diversidade,
  .btn.personalidade{
    background-color: #b3b3b3;
    text-transform: uppercase;
    font-size: 12px;
  }
/* 
  .btn.diversidade {
    background-color: #5ADDC3;
  }

  .btn.personalidade {
    background-color: #C15ADD;
  } */


  .btn.cidade.active {
    background-color: var(--azul);
    display: none;
    /* border: 2px solid #4899bc; */
    /* font-weight: 500; */
  }

  .btn.diversidade.active {
    background-color: var(--verde);
    /* border: 2px solid #46b8a1; */
    
  }

  .btn.personalidade.active {
    background-color: var(--roxo);
    /* border: 2px solid #923eaa; */
  }
  
  #popup {
    width: 576px;
    height: 400px;
    /* padding: 20px; */
    background-color: var(--azul);
    overflow-y: auto;
    /* border: 2px solid rgba(204, 204, 204, 0.765); */
    border-radius: 13px;
    position: fixed;
    top: 530px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid white;
  }

  #popup h3 {
    font-size: 24px;
    margin-bottom: 3px;
  }
  
  #popup p {
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .image {
    position: relative;
    display: inline-block;
    max-width: 576px;
    width: 100%;
    height: 280px;
  }
  
  .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgb(6 6 6 / 0%), rgb(0 0 0 / 48%));
    z-index: 1;
  }
  
  
  #popup .image img {
    max-width: 576px;
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
  }


  
  #popup a.url-maps {
    color: #ffffffab;
    text-decoration: none;
    font-size: 12.5px;
    text-decoration: underline;
    margin-top: 6px;
    letter-spacing: 0.3px;
    position: fixed;
    bottom: 16px;
  }
  
  #popup a:hover {
    text-decoration: underline;
  }


  #popup .infos-mural {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 241px;
    z-index: 10;
    gap: 4px;
}

#popup .infos-mural .bloco-1,
#popup .infos-mural .bloco-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.infos-mural .bloco-2 .seta {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid var(--azul);
  margin-bottom: 20px;
}


  #popup .infos-mural h3 {
    padding: 0px 30px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
  }


  #popup .infos-mural p {
    padding: 0px 70px;
    color: #FFFFFF;
    font-size: 15.5px;
    font-weight: 400;
    text-align: center;
    /* width: 80%; */
    /* min-height: 34px; */
    /* text-transform: uppercase; */
  }

  #popup > div.infos-mural > div.bloco-2 > p:nth-child(2) {
    margin-bottom: 5px;
    display: none;
  }

  #popup > div.infos-mural > div.bloco-2 > a > img {
    width: 11.5px;
    height: 11.5px;
    opacity: 0.7;
  }


.marker {
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    /* background-image: url("./imagens/map-pin-svgrepo-com.png"); */
    background-size: cover;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  }

  .marker.desactive {
    opacity: 0 !important;
  }

  .marker.active {
    filter: drop-shadow(2px 1px 14px rgba(16, 131, 255, 0.3));
    animation: pulse-up 1s infinite;
    top: 0;
    position: relative;
  }
  
  @keyframes pulse-up {
    0% {
      top: 0;
    }
    50% {
      top: -5px;
    }
    100% {
      top: 0;
    }
  }
  
  
  .marker.cidade {
    background-image: url("./imagens/pin-cidade.svg");
  }
  
  .marker.diversidade {
    background-image: url("./imagens/pin-diversidade.svg");
  }
  
  .marker.personalidade {
    background-image: url("./imagens/pin-personalidade.svg");
  }

  .btns-maps {
    display: flex;
  }



  .btns-maps > div {
    max-width: 50px;
    height: 50px;
    position: fixed;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 10;
    border-radius: 99px;
    top: 200px;
    transition: background-color 0.3s;
    /* background-color: rgba(255, 255, 255, 0.55); */
    background-color: #6AB4D5;
    cursor: pointer;
    
    /* remover piscado azulado que aparece ao clicar no botão */
    -webkit-tap-highlight-color: transparent;
  }
  
  .btns-maps > div:hover {
    background-color: #59a0c1;
  }

  .btns-maps > div img {
    width: 25px;
    height: 25px;
    /* filter: brightness(1%); */
  } 

  .btns-maps > div.proximo {
    right: 45px;
  }

  .btns-maps > div.anterior {
    left: 45px;
  }


  .container-texto {
    display: flex;
    align-items: center;
    height: 62px;
    align-content: center;
    position: fixed;
    bottom: 40px;
}

  @media (max-width: 650px){

    body {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    div#popup {
      max-width: 75vw;
      height: 395px;
      top: 500px;
    }

    div#map {
      max-width: 90vw;
    }

    .image {
      height: 235px;
    }

    #popup .image img {
      height: 235px;
    }

    #popup .infos-mural {
      top: 195px;
    }

    .btn {
      padding: 10px 14px;
      font-size: 11px !important;
    }

    .btns-maps > div.proximo {
      right: 50px;
    }
  
    .btns-maps > div.anterior {
      left: 50px;
    }

    #popup .infos-mural p {
      padding: 0px 12px;
      font-size: 14px;

    }

    .container-texto {

      height: 110px;

  }

  }