

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




* {  
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box; /* Limitar tamanho de todas as caixas contando padding e margin */
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

section.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    z-index: 1;
}

.container-mapa {
    width: 710px;
    height: auto;
}

.container-mapa img {
    border-radius: 8px;
    width: 710px;
    height: 550px;
}

.btn-video {
    width: 710px;
    height: 550px;
    position: fixed;
}


.btn-video-1 svg {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 160px;
    left: 85px;
    cursor: pointer;
    border-radius: 50px;
    transform: scale(1);

    /* aplicando animação de pulse */
    transform: scale(1);
    animation: pulse 2s infinite;
}

.btn-video-2 svg {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 277px;
    left: 133px;
    cursor: pointer;
    border-radius: 50px;
    transform: scale(1);

    /* aplicando animação de pulse */
    transform: scale(1);
    animation: pulse 2s infinite;
}

section.popup.first,
section.popup.second {
    position: fixed;
    width: 100%;
    height: 550px;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    justify-content: center;
    border-radius: 6px;
}

section.popup .infos-popup {
    display: flex;
    width: 550px;
    height: 480px;
    background-color: aliceblue;
    padding: 30px;
    border-radius: 20px;
    flex-direction: column;
    gap: 20px;
}

section.popup .infos-popup {
    line-height: 22px;
}


.btn-close {
    width: 50px;
    height: 50px;
    position: relative;
    top: 33px;
    left: 273px;
    background-color: #8c8989;
    border-radius: 100px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    cursor: pointer;
    background-color: hsl(206deg 65.03% 63.22%);
}

.btn-close p {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}


body > section.popup.first > div.infos-popup > p {
    font-size: 14.5px;
}
  
  
  /* criando animação de pulse */
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 #ffffff;
    }
    
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  
  @keyframes pulseinput {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    }
    
    70% {
      box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
    
    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  

  .video {
    aspect-ratio: 16 / 9;
    width: 100%;
  }


  .css-901oao.r-1dqbpge.r-1qd0xha.r-adyw6z.r-16dba41.r-135wba7.r-bcqeeo.r-bnwqim.r-qvutc0 {
    display: none !important;
}

.video-yt {
    height: 300px;
    overflow: auto;
}


  @media (max-width: 600px) {

    .container-mapa {
       max-width: 100vw;
        height: auto;
    }
    
    .container-mapa img {
        border-radius: 8px;
        max-width: 100vw;
        height: auto;
    }
    
    .btn-video {
        max-width: 100vw;
        height: auto;
        position: fixed;
    }

    .btn-video svg {

        top: 44px;
        right: 46px;
    }

    .btn-close {
        left: 143px;
    }

    section.popup {
        height: 100%;
    }

    section.popup .infos-popup {
        width: 300px;
        height: 430px;
        padding: 23px;
        gap: 10px;
        font-size: 14px;
    }

    .btn-video-1 svg {
        top: 147px;
        left: 60px;
    }

    .btn-video-2 svg {
        top: 266px;
        left: 112px;
    }

    section.popup.second .infos-popup {
        height: 508px;
    }

    .video-yt {
        height: 338px;
        overflow: auto;
    }

    .btn-close {
        width: 42px;
        height: 42px;
    }

  }