body::-webkit-scrollbar {
  width: 6px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: rgb(32, 32, 32);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(255, 255, 255);    /* color of the scroll thumb */
  border-radius: 4px;       /* roundness of the scroll thumb */
  border: 1px solid rgba(196, 83, 55, 0);  /* creates padding around scroll thumb */
}

/* Customização do Scroll */


@font-face {
  font-family: MontSerrat1;
  src: url(/src/fonts/Montserrat/Montserrat-ExtraLight.ttf);
}

@font-face {
  font-family: MontSerrat2;
  src: url(/src/fonts/Montserrat/Montserrat-Medium.ttf);
}

:root{
  /* colors of aracê */
  --black: rgb(20, 20, 20);
  --orange: rgb(255, 50, 105);
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body{
  background-color:var(--black);
  cursor: var(--cursor);
}

a:hover{
  cursor: pointer;
}

header{
  background-color: var(--black);
  height: 15vh;
  width: 100vw;
  min-height: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--orange);
  font-family: Montserrat1;
  overflow: hidden;
}

.menu{
  display: flex;
  width: 400px;
  justify-content: space-around;
}

.menu a{
  opacity: 0.8;
  transition: 0.2s;
  color: var(--orange);
  text-decoration: none;
}

.menu a:hover{
  opacity: 1;
  cursor: pointer;
  font-weight: bold;
}

.logo-arace-topo{
  height: 200px;
}

.sec_principal_banner{
  display: flex;
  flex-direction: column;
  height: 25vh;
  width: 100vw;
  background-color: rgba(240, 248, 255, 0.094);
  background-size: cover;
  font-weight: bolder;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  margin-bottom: 55px;
}


.solutions{
  height: auto;
  width: 100vw;
  color: aliceblue;
  font-family: Montserrat1;
  font-weight: lighter;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions{
  height: auto;
  width: 100vw;
  color: aliceblue;
  font-family: Montserrat1;
  font-weight: lighter;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title{
  font-family: Montserrat1;
  font-weight: bold;
  color: var(--orange);
  padding-bottom: 12px;
  padding-top: 32px;
  letter-spacing: 2px;
}

.title2{
  opacity: 0.7;
  font-family: Montserrat1;
  font-weight: lighter;
  color: var(--orange);
  padding-bottom: 12px;
  padding-top: 32px;
  text-align: center;
  letter-spacing: 4px;
}

.paragraph{
  font-weight: lighter;
  height: auto;
}

.politicas{
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 200px;
  padding-top: 48px;
  margin-top: 0px;
}


footer{
  height: 400px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Montserrat1;
}

.footer-container{
  width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.linksuteis{
  display: flex;
  flex-direction: column;
}

.linksuteis a{
  color: aliceblue;
  text-decoration: none;
}

.linksuteis a:hover{
  cursor: pointer;
  color: var(--orange);
}

.linkrede{
  overflow: hidden;
  margin: 0px 12px 0px 12px;
  transition: 0.9s;
}

.linkrede:hover{
  cursor: pointer;
  transform: rotate(360deg);
  filter: invert();
}

.copyright{
  color: aliceblue;
  font-family: Montserrat1;
  margin: 12px;
  height: 100px;
  text-align: center;
}


.modal{
  position: fixed;
  background-color: rgba(0, 0, 0, 0.37);
  height: 100vh;
  width: 100vw;
  top: 0;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-card{
  background-color: rgba(192, 192, 192, 0.678);
  width: 60vw;
  height: 55vh;
  display: flex;
  flex-direction: column;
  border-radius: 24px 0px 24px 0px;
}

.close-btt{
  margin-top: 6px;
  padding: 8px;
  margin-left: 58vw;
  height: 20px;
  width: 20px;
  border-radius: 200px;
  border-style: none;
  background-color: rgb(126, 0, 0);
}

.close-btt:hover{
  background-color: red;
  cursor: pointer;
}
.off{
  display: none;
}

.modal-content{
  padding: 24px;
  font-family: Montserrat1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.engrenagem{
  margin-top: 24px;
  height: 15vh;
  animation-duration: 2s;
  animation-name: engre;
  animation-iteration-count: infinite;
}

@keyframes engre {
  from {
      transform: rotate(180deg);
  }
}

@media screen and (max-width: 1300px){
  .footer-container{
      flex-direction: column;
      height: auto;
      justify-content: space-around;
  }
  .linksuteis{
      display: flex;
      height: 200px;
      text-align: center;
  }
  .redes{
      height: 100px;
      overflow: hidden;
  }
  .linkrede{
      filter: invert();
  }
  
  .container-cards{
      flex-direction: column;
  }
  .solutions{
      height: 950vh;
  }
  .politicas{
      padding: 50px;
  }
  .card{
      width: 400px;
      padding: 24px;
  }
  .menu{
      display: none;
  }
  .sec_principal_banner{
      text-align: center;
      padding: 12px;
  }
  .solutions{
      text-align: center;
      height: auto;
  }
  .close-btt{
      margin-left: 80vw;
  }
  .modal-card{
      height: 75vh;
      width: 90vw;
  }

  .politicas{
    /* background-color: aqua; */
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    margin-top: 0px;
  }

  .politicas p{
    font-size: 0.8rem;
  }
}

.back-home1{
  padding: 8px;
  border: none;
  letter-spacing: 2px;
  font-family: Montserrat2;
  border-radius: 4px;
  transition: 0.4s;
}

.back-home1:hover{
  letter-spacing: 6px;
  cursor: pointer;
}