:root{
  --primary: #FF6001;
  --primaryDarker: #EC6827;
  --primaryLighter: #FF7726;
  --secondary: #6EC1E4;
  --cardColor: #041945;
  --borderCard: #5b5b5b;
  --formBackground: #08172D;
  --black: #13111A;
  --white: #FFFFFF;
  --blue: #714DFF;
  --blue-lighter: #6F86FF;
  --blue-darker: #1766FF;
  --blue-shadow: #4D54FFA3;
  --red: #FF3868;
  --red-lighter: #FF7586;
  --red-darker: #FF3868A3;
  --pink: #FF4895;
  --pink-darker: #FE316F;
  --pink-shadow: #D03F90A3;
  --green: #61CE70;
  --purple: #B372CE;
  --gray-text: #B7B4C7;
  --gray-textDark: #7A7A7A;
  --gray-textLighter: #DDDDDD;
  --gray: #302C3F;
  --gray-darker: #1d1A27;
  --background: #061121;
}

html{
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100%;
}

*{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  -webkit-overflow-style: none;
  -ms-overflow-style: none;
}

body{
  background: var(--background);
  overflow-x: hidden;
  min-height: 100%;
  max-width: 100vw;
}

h1, h2, h4, h5, h6{
  font-family: 'Syne', sans-serif;
}

h1{
  color: var(--white);
  font-size: 74px;
  font-weight: 700;
  line-height: 1.077em;
  letter-spacing: 0.02em; 
}

h2{
  color: var(--white);
  font-size: 60px;
  font-weight: 400;
  line-height: 0.9em;
}

p, a{
  color: var(--gray-textDark);
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  line-height: 1.667em;
  font-weight: 500;
}

/* Main */
main{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Header */
.logo-link{
  z-index: 3;
}

.logo_header{
  height: 50px;
  width: 180px;
}

.nav-link{
  color: var(--white) !important;
  font-size: 19px !important;
  font-weight: 300;
}

.nav-link:hover, .active{
  color: var(--primary) !important;
}

.button-cad{
  z-index: 3;
}

.button-cad > a{
  color: var(--white) !important;
}

.cadastro{
  background: var(--primary);
  border-radius: 6px;
  box-shadow: 0 3px 7px 0 rgb(19 17 26 / 14%);
  cursor: pointer;
  display: inline-flex;
  padding: 2px !important;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
  transform: scale3d(1, 1, 1.01);
  transform-style: preserve-3d;
}

.cadastro:hover{
  transform: scale3d(1.04, 1.04, 1.01);
}

.cadastro > a:hover{
  color: var(--white) !important;
}

.menu-button{
  position: relative;
  float: right;
  border-radius: 50%;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  color: var(--white);
  margin-left: 20px;
  -webkit-tap-highlight-color: #00000000;
  background-color: var(--gray);
  transition: background-color 350ms ease;
  width: 53px;
}

.header-button-menu{
  font-size: 24px;
  user-select: none;
  -webkit-user-select: none;
}

.menu-button-icon{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-box-pack: justify;
  width: 20px;
  min-height: 15px;
}

.burguer{
  padding: 8px;
}

.burguer > span{
  position: absolute;
  left: 12px;
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--white);
  border-radius: 30px;
  transition: 0.25s ease-in-out;
}

.burguer > span:nth-child(1){
  top: 16px;
}

.burguer > span:nth-child(2){
  top: 24px;
}

.burguer > span:nth-child(3){
  top: 32px;
}

#checkbox-menu{
  display: none;
}

#checkbox-menu:checked + .burguer span:nth-child(1){
  transform: rotate(-45deg);
  top: 24px;
}

#checkbox-menu:checked + .burguer span:nth-child(2){
  opacity: 0;
}

#checkbox-menu:checked + .burguer span:nth-child(3){
  transform: rotate(45deg);
  top: 24px;
}

.nav-overlay{
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  right: auto;
  z-index: 2;
  display: none;
  height: 10687px;
  width: 100%;
}

.nav-menu{
  transform: translateX(0px) translateY(0px);
  opacity: 1;
  height: 10687px;
  transition: transform 400ms ease 0s;
  padding: 120px 24px 36px;
  background-color: var(--gray-darker);
}

.nav-menu > ul{
  list-style: none;
  padding-left: 0;
}

.nav-menu > ul > li > a{
  color: var(--white);
  text-decoration: none;
}

.nav-menu > ul > li > a:hover{
  color: var(--pink);
  text-decoration: none;
}

#checkbox-menu:checked + .nav-overlay{
  display: block;
}

@media (max-width: 1075px) {
  .button-cadastro{
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  #navbarNav{
    display: none !important;
  }

  .menu-button{
    display: block;
  }
}

@media (max-width: 476px) {
  .logo_header{
    height: 44px;
    width: 120px;;
  }
  .header > .cad-link{
    padding: 8px 14px !important;
  }
}

@media (max-width: 420px) {
  .logo_header{
    height: 40px;
    width: 100px;
  }
  .logo-link{
    margin-right: 10px !important;
  }
  .menu-button{
    margin-left: 10px;
  }
}

@media (max-width: 384px) {
  #header > .navbar > .container-fluid{
    align-items: flex-start !important;
  }
  .header{
    display: flex;
    align-items: center;
  }
  .logo_header{
    height: 36px;
    width: 92px;
  }
  .header > .cad-link{
    padding: 11px 10px !important;
  }
}

@media (max-width: 368px) {
  .logo-link{
    margin-right: 0 !important;
  }
  .login-link{
    padding: .5rem .5rem !important;
  }
}

/* Section Home-hero */
.home-hero{
  background-image: url("../assets/BG-3-SITE.jpg");
  background-size: cover;
  background-position: -455px 25%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  max-width: 100%;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.home-hero > div {
  display: flex;
  text-align: left;
  min-height: 500px;
  width: 100%;
}

.content-home-hero > h2{
  min-width: 400px;
  width: 30%;
}

@media (max-width: 1024px) {
  .home-hero{
    background-position: -645px 0;
  }
}

@media (max-width: 874px) {
  .home-hero{
    background-position: -700px 0;
  }
}

@media (max-width: 800px) {
  .home-hero{
    background-position: 50% 0;
  }
}

@media (max-width: 499px) {
  .home-hero{
    background-position: 60% 60px;
    margin-top: 0;
  }
  .content-home-hero > h2{
    min-width: 350px;
    width: 90%;
  }
}

@media (max-width: 299px) {
  .content-home-hero > h2{
    min-width: 290px;
  }
}

/* Section Who-we-are */
.content-we-are{
  display: flex;
  flex-direction: column;
  padding: 100px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 60%;
}

.content-we-are > p{
  color: var(--gray-textDark);
}

@media (max-width: 991px) {
  .content-we-are{
    width: 80%;
  }
}

@media (max-width: 767px) {
  .content-we-are{
    width: 90%;
  }
}

@media (max-width: 500px) {
  .content-we-are{
    width: 96%;
  }
}

/* Section Numbers */
.section-numbers > div{
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 80%;
}

.numbers{
  display: flex;
  align-items: center;
  min-width: 300px;
}

.numbers > img{
  margin-right: 10px;
  height: 90px;
  width: 90px
}

.numbers > div{
  display: flex;
  flex-direction: column;
  line-height: 2rem;
}

.numbers > div > label{
  color: var(--primary);
  font-size: 48px;
}

.numbers > div > span{
  color: var(--secondary);
  font-size: 1.4rem;
  line-height: 1.5rem;
  padding-top: 6px;
}

@media (max-width: 1300px) {
  .section-numbers > div{
    width: 90%;
  }
}

@media (max-width: 1230px) {
  .section-numbers > div{
    width: 100%;
  }
}

@media (max-width: 1166px) {
  .section-numbers > div{
    flex-wrap: wrap;
    width: 80%;
  }
  .numbers{
    margin-bottom: 20px;
  }
}

@media (max-width: 1153px) {
  .section-numbers > div{
    justify-content: space-between;
    width: 60%;
  }
}

@media (max-width: 1039px) {
  .section-numbers > div{
    width: 80%
  }
}

@media (max-width: 779px){
  .section-numbers > div{
    justify-content: space-around;
    width: 90%;
  }
}

@media (max-width: 693px) {
  .section-numbers > div{
    width: 100%;
  }
}

@media (max-width: 623px) {
  .section-numbers > div{
    padding-top: 0;
  }
}

@media (max-width: 320px) {
  .numbers{
    min-width: 260px;
  }
  .numbers > div > span{
    font-size: 1.2rem;
  }
}

/* Section Benefits */
.section-benefits{
  padding: 100px 0;
}

.img-benefits{
  width: 55%;
}

.img-benefits > img{
  padding-top: 100px;
  width: 74%;
}

.content-benefits{
  width: 45%;
}

.content-benefits > h2{
  margin-bottom: 50px;
}

.content-benefits > div > i{
  background: var(--secondary);
  border-radius: 50px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  height: 34px;
  margin-top: 6px;
  width: 34px;
}

.content-benefits > div > div{
  margin-left: 10px;
  width: 60%;
}

.content-benefits > div > div > p:nth-of-type(1){
  color: var(--secondary);
  margin-bottom: 0;
}

.content-benefits > div > div > p:nth-of-type(2){
  width: 100%;
}

@media (max-width: 1199px) {
  .content-benefits > div > div{
    width: 100%
  }
}

@media (max-width: 767px) {
  .section-benefits{
    padding: 50px 0;
  }
  .section-benefits > div{
    flex-direction: column;
  }
  .section-benefits > div > div{
    width: 100%;
  }
  .img-benefits{
    order: 2;
  }
  .img-benefits > img{
    width: 100%;
  }
}

/* Section Technology */
.section-technology{
  padding: 100px 0;
}

.section-technology > div:nth-of-type(1) > h2{
  margin-bottom: 30px;
  text-align: center;
}

.section-technology > div > p{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 60%;
}

.section-technology > div:nth-of-type(2){
  margin-top: 100px;
}

.section-technology > div > div{
  width: 32%;
}

.section-technology > div > div > img{
  width: 90px;
}

.section-technology > div > div > h4{
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}

.section-technology > div > div > p{
  text-align: center;
  width: 70%;
}

@media (max-width: 991px) {
  .section-technology > div:nth-of-type(1) > p{
    width: 90%;
  }
  .section-technology > div:nth-of-type(2){
    flex-wrap: wrap;
  }
  .section-technology > div:nth-of-type(2) > div{
    width: 50%;
  }
}

@media (max-width: 767px) {
  .section-technology > div:nth-of-type(2){
    justify-content: center;
    margin-top: 70px;
  }
  .section-technology > div:nth-of-type(2) > div{
    width: 100%;
  }
}

@media (max-width: 499px) {
  .section-technology{
    padding: 50px 0 0;
  }
  .section-technology > div:nth-of-type(2) > div{
    margin-bottom: 30px;
  }
  .section-technology > div:nth-of-type(2) > div > p{
    width: 100%;
  }
}

/* Section Crypto */
.section-crypto > div > h2{
  margin-top: 100px;
  text-align: center;
}

.section-crypto > div > img{
  margin-left: auto;
  margin-right: auto;
}


.card{
  background: var(--cardColor);
  border: 1px solid var(--borderCard);
  border-radius: 22px;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 0;
  margin-right: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-box-align: flex-start;
  padding: 42px 20px 40px;
  min-width: 270px;
  width: 270px;
}

.card > img{
  border-radius: 50%;
  margin-bottom: 10px;
  width: 100px;
}

.section-crypto > div > div > .card > h4{
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .section-crypto > div > div{
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .section-crypto > div{
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 563px) {
  .card{
    margin-right: 0;
  }
}

@media (max-width: 300px) {
  .card{
    min-width: 94%;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
  }
}

/* Section Rewards */
.section-rewards{
  margin-top: 120px;
}

.section-rewards > div{
  width: 84%;
}

.div-left{
  border: 2px dashed var(--green);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 400px;
  width: 500px;
}

.div-left > div:nth-of-type(1){
  width: 450px;
}

.div-left > div > img{
  border-radius: 50%;
  margin-top: -50px;
  margin-right: 20px;
  width: 80px;
}

.div-left > img:nth-of-type(1){
  margin-top: 40px;
  margin-left: -20px;
  width: 540px;
}

.div-left > img:nth-of-type(2){
  margin-top: -210px;
  margin-left: 160px;
  width: 180px;
}

.div-left > img:nth-of-type(3){
  border-radius: 50%;
  margin-top: 86px;
  margin-left: 200px;
  width: 80px;
}

.div-right{
  position: relative;
  margin-top: 30px;
  margin-left: 140px;
  width: 50%;
}

.div-right > p:nth-of-type(1){
  color: var(--secondary);
  margin-bottom: 20px;
}

.div-right > p:nth-of-type(2){
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-right > div{
  width: 170px;
}

.div-right > img{
  position: absolute;
  top: -150px;
  right: -350px;
}

@media (max-width: 1313px) {
  .div-right{
    margin-left: 90px;
  }
}

@media (max-width: 1099px) {
  .section-rewards > div{
    flex-direction: column;
  }
  .div-right{
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  .div-left{
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }
}

@media (max-width: 991px) {
  .div-right{
    min-width: 490px;
    width: 70%;
  }
}

@media (max-width: 590px) {
  .div-left{
    height: 350px;
    width: 450px;
  }
  .div-left > img:nth-of-type(1){
    width: 490px;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -200px;
    margin-left: 140px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: 46px;
  }
}

@media (max-width: 506px) {
  .div-left{
    height: 300px;
    width: 400px;
  }
  .div-left > div:nth-of-type(1){
    width: 420px;
  }
  .div-left > img:nth-of-type(1){
    margin-top: 20px;
    width: 440px;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -200px;
    margin-left: 110px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: 46px;
    margin-left: 160px;
  }
  .div-right > p{
    width: 90%;
  }
}

@media (max-width: 474px) {
  .div-left{
    height: 250px;
    width: 350px;
  }
  .div-left > div:nth-of-type(1){
    width: 370px;
  }
  .div-left > img:nth-of-type(1){
    margin-top: 10px;
    width: 390px;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -180px;
    margin-left: 90px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: 6px;
    margin-left: 140px;
  }
}

@media (max-width: 418px) {
  .section-rewards > div{
    width: 100%;
  }
  .div-right > p{
    width: 70%;
  }
  .div-left{
    width: 90%;
  }
  .div-left > img:nth-of-type(1){
    width: 112%;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -52%;
    margin-left: 23%;
  }
  .div-left > img:nth-of-type(3){
    margin-left: 40%;
  }
}

@media (max-width: 384px) {
  .div-right > p{
    width: 60%;
  }
  .div-left > div:nth-of-type(1){
    width: 105%;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -50%;
    margin-left: 27%;
    width: 150px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: 16px;
  }
}

@media (max-width: 330px){
  .div-left{
    height: 216px;
  }
  .div-left > div > img{
    margin-top: -40px;
    width: 70px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: -6px;
    width: 70px;
  }
}

@media (max-width: 300px) {
  .div-left{
    height: 190px;
  }
  .div-left > div > img{
    width: 60px;
  }
  .div-left > img:nth-of-type(1){
    margin-left: -16px;
  }
  .div-left > img:nth-of-type(2){
    margin-top: -48%;
    width: 110px;
  }
  .div-left > img:nth-of-type(3){
    margin-top: 14px;
    margin-left: 37%;
  }
  .div-right > p{
    width: 50%;
  }
}

/* Section Questions */
.section-questions{
  margin-top: 150px;
  text-align: center;
}

.section-questions > div > h6{
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.section-questions > div > h2 {
  margin: 20px;
}

.section-questions > div > p{
  color: var(--gray-textLighter);
  font-size: 18px;
  font-weight: 400;
}

/* Common-questions */
.section-questions{
  margin-bottom: 100px;
}

.questions{
  margin-bottom: 100px;
}

.questions > div{
  position: relative;
}

.div-title{
  margin-top: 80px;
  text-align: center;
}

.title-question{
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  width: 100%;
}

.title-question > span{
  font-family: 'DM Sans', sans-serif;
}

.oneActive > span{
  color: var(--primary);
}
.twoActive > span{
  color: var(--primary);
}
.threeActive > span{
  color: var(--primary);
}
.fourActive > span{
  color: var(--primary);
}

.item-question{
  position: relative;
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: var(--gray-textDark);
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

.title-question > .active{
  transform: rotate(180deg);
  transition: all .4s;
}

.title-question > .active > span{
  color: var(--primary);
}

.title-question > .active{
  color: var(--green) !important;
}

.title-question > i:not(.active){
  transform: rotate(0deg);
  transition: all .4s;
}

.content-question{
  color: var(--gray-textDark);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6rem;
  max-height: 0;
  opacity: 0;
  margin-top: 30px;
  width: 100%;
  text-align: left;
}

.content-question > a{
  color: var(--white);
}

.content-question > a:hover{
  color: var(--pink);
}

.content-active{
  animation: height;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  transition: opacity 0.05s ease-in;
}

@keyframes height {
  0%{
    max-height: 0;
    opacity: 0;
  }
  100%{
    max-height: 500px;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .item-question{
    width: 100%;
  }
}

hr{
  color: var(--primaryDarker);
  height: 3px !important;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  width: 30%;
}

/* Footer */
footer{
  margin-top: 50px;
  border-style: solid;
  border-width: 3px 0 0 0;
  border-color: var(--primaryDarker);
}

.logo-footer{
  width: 120px;
}

.socials > i{
  color: var(--white);
  font-size: 28px;
  margin-right: 30px;
  transition: .3s;
}

footer > div > div:nth-of-type(2){
  margin-bottom: 20px;
}

.socials > i:hover{
  opacity: .8;
}

.devari > a{
  color: var(--primary);
  text-decoration: none;
  position: relative;
}

.devari > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.devari > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 325px) {
  .logo-footer{
    margin-bottom: 10px;
  }
  .socials{
    margin-left: 2px;
  }
  .socials > i{
    margin-right: 20px;
  }
}

@media (max-width: 300px) {
  .socials > i{
    margin-right: 10px;
  }
}

/* Root */
@media (max-width: 499px) {
  h1{
    font-size: 60px;
  }
  h2{
    font-size: 40px;
  }
}

@media (max-width: 445px) {
  h1{
    font-size: 50px;
  }
}

@media (max-width: 375px) {
  h1{
    font-size: 46px;
  }
}

@media (max-width: 342px) {
  h1{
    font-size: 40px;
  }
}

@media (max-width: 300px) {
  h1{
    font-size: 36px;
  }
  h2{
    font-size: 30px;
  }
}

/* Animations */
[data-anime]{
  opacity: 0;
  transition: .5s;
}

[data-anime="left"]{
  transform: translate3d(-100px, 0, 0);
}

[data-anime="right"]{
  transform: translate3d(100px, 0, 0);
}

[data-anime="bottom"]{
  transform: translate3d(0, 100px, 0);
}

[data-anime].animate{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}