@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');

h1, h2, h3, h4, h5{
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
}

html{
    scroll-padding-top: 80px !important;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box !important; 
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

h2{
  color: white;
  text-align: center;
  padding: 50px 0;
  font-size: 3.5rem;
}

h2 i, p i{
  margin-left: 30px; 
  color: #E91F26
}

main{
    background: #070707;
    --gap: 5em;
    --line: 1px;
    --color: rgba(255, 255, 255, 0.2);
  
    background-image: linear-gradient(
        -90deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
      ),
      linear-gradient(
        0deg,
        transparent calc(var(--gap) - var(--line)),
        var(--color) calc(var(--gap) - var(--line) + 1px),
        var(--color) var(--gap)
      );
    background-size: var(--gap) var(--gap);
}


#navbar{
  position: fixed;
  z-index: 999;
  width: fit-content;
  padding: 0;
  margin: 30px auto;
  left: 0;
  right: 0;
}

#navbarNav{
  user-select: none;
  pointer-events: none;
}


#barraNavegacao{
  z-index: 999;
  margin: auto;
  visibility: hidden;
}

.itens_wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  padding: 15px 40px !important;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  background-color: #24232333;
  border-radius: 50px;
}

.itens_wrapper a{
  text-decoration: none;
}

.itens_navbar, .itens_wrapper{
  list-style: none;
  color: white;
}

.itens_navbar{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 26px;
  font-family: "Rubik Mono One", monospace;
}

.itens_navbar span{
  font-family: "Rubik Mono One", monospace;
}

.itens_navbar i{
  display: none;
}

.atual_section{
  background-color: rgba(255, 255, 255, 0.212);
}


footer {
  height: 100vh;
  background-color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
}

footer .row{
  width: 70vw;
}

footer .col{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.uwDireita{
  display: flex;
  justify-content: end;
}

.uwDireita ul{
  align-items: end;
}

footer hr{
  width: 70vw;
  border: solid 1px ;
  color: var(--myred);
}

footer ul, .ulWrapper div{
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  text-align: start;
}

footer h3{
  text-decoration: underline;
}

.desenvolvido_por a{
  text-decoration: underline;
}

footer li{
  list-style-type: none;
  padding: 0;
}

.redeFooter{
  margin: 0 0 0 15px;
}

footer a{
  text-decoration: none;
  color: white;
  width: fit-content;
  font-weight: 700;
}


.redirectIcon{
  transform: translateX(-20px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

footer li:hover .redirectIcon{
  transform: translateX(20px);
  opacity: 1;
}

.rotaFooter{
  margin-bottom: 10px;
}

#redesFooter{
  font-size: 30px;
  justify-content: space-between;
}

#redesFooter li{
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70%;
  transition: all .2s ease;
}

.instagram:hover{
  color: rgb(224, 119, 154);
  background-color: white;
}

.linkedin:hover{
  color: rgb(49, 139, 241);
  background-color: white;

}
.github:hover{
  background-color: white;

  color: rgb(150, 62, 150);
}

.missao_visao_valores{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.missao_visao_valores div{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 33%;
}

@media screen and (max-width:955px) {
  .itens_wrapper{
    gap: 0;
    padding: 10px 35px !important
  }

  .itens_navbar span{
    display: none;
  }

  .itens_navbar i{
    display: block;
    color: white;
  }  
  
  .missao_visao_valores div{
    justify-content: start;
    width: 95%;
  }

  .missao_visao_valores{
    flex-direction: column;
  }

  .uwDireita{
    display: none;
  }

  footer .row{
      width: 90vw;
  }
}







