*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sora', sans-serif;
}

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: #000;
  position: relative;
}


header{
  width: 100%;
  padding: 5px 0;
  background-color: #000000D4;
  backdrop-filter: saturate(180%) blur(20px)!important;
  border-bottom: 1px solid #252525;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

header > .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
  width: 100%;
  max-width: 50px;
  padding: 10px 0;
  cursor: pointer;
}

.menu-desktop{
  display: flex;
  align-items: center;
}

.menu-desktop ul{
  list-style-type: none;
}

.menu-desktop li{
  color: #FFFFFF;
  fill: #FFFFFF;
  padding-left: 18px;
  padding-right: 18px;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.btn-1{
  background-color: #117D2000;
  border-style: solid;
  border-width: 1px;
  border-color: #8600AE;
  border-radius: 30px;
  padding: 10px 40px 10px 40px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

.btn-1:hover{
  background-color: #8600AE;
}

.menu-mobile{
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: 1s;
}

.logo i{
  font-size: 18px;
  color: #fff;
  margin-right: 20px;
  display: none;
}

.hide{
  transform: translate(0);
  opacity: 1;
}

.menu-mobile ul{
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  transition: 1s;
  overflow: hidden;
}

.menu-mobile ul li{
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #9C9C9C;
  padding: 20px 0 15px 0;
  max-width: 60%;
  font-size: 16px;
}

.menu-mobile ul li:last-of-type{
  border-bottom: none;
}


/* BANNER */

.banner{
  width: 100%;
  height: 650px;
  background-image: url("./images/banner.png");
  background-size: cover;
}

.point{
  width: 10px;
  height: 10px;
  background-color: #8600AE;
  display: inline-block;
  margin-left: 5px;
  border-radius: 3px;
}

.wrapper-banner{
  width: 100%;
  height: 100%;
  background: linear-gradient(82deg, #000 1.44%, rgba(217, 217, 217, 0.00) 83.42%);
  background: linear-gradient(79deg, #000 15.73%, rgba(217, 217, 217, 0.00) 89.26%);
}

.banner .container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper-banner-left{
  width: 57%;
}

.wrapper-banner-right{
  width: 43%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.banner h2{
  color: #FFFFFF;
  font-size: 58px;
  font-weight: 700;
  padding-top: 100px;
}

.banner h3{
  color: #FFFFFF;
  font-family: "Sora", Sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 34px;
  margin-top: 30px;
}

.banner .btn-1{
  font-size: 16px;
  margin-top: 30px;
}

.banner .btn-1 i{
  margin-left: 10px;
  font-size: 20px;
}

.wrapper-img-banner{
  width: 100%;
  margin-top: 60px;
}

.banner img{
  width: 60%;
  display: inline-block;
  border-radius: 5px;
}

.video{
  width: 80%;
  border-radius: 10px;
  background: #141414;
  border: 6px solid #141414;
  position: relative;
}

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

.video .play{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: none;
}

.video iframe{
  transition: 1s;
  border-radius: 5px;
}

.play i{
  font-size: 28px;
  color: white;
}

.play::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  border-radius: inherit;
  border: 1px solid #FFFFFF;
  -webkit-animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
  animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
  border-color: #FFFFFF;
}

@keyframes btnIconRipple{
  0% {
    border-width: 4px;
    transform: scale(1);
  }

  80% {
      border-width: 1px;
      transform: scale(1.40);
  }
  100% {
      opacity: 0;
  }
}

.icon-trofeu{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #C2A039;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  right: -50px;
}

.icon-trofeu i{
  font-size: 30px;
  line-height: 50px;
}



/* SOBRE */

.sobre{
  width: 100%;
  padding: 45px 0;
  background-color: #000;
}

.sobre > .container{
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  flex-wrap: wrap;
}

.sobre-left, .sobre-right{
  width: 50%;
}

.sobre-left{
  display: flex;
  flex-direction: column;
}

.sobre-left h3{
  color: #8600AE;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.sobre-left h2{
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  line-height: normal;
  font-weight: bold;
  max-width: 300px;
  margin-top: 20px;
}

.sobre-left p{
  color: #EFEFEF;
  font-size: 19px;
  font-weight: 200;
  line-height: 30px;
  max-width: 85%;
  margin-top: 20px;
}

.sobre-left .btn-1{
  margin-top: 20px;
  width: fit-content;
  margin-left: 0;
  padding: 15px 40px;
}

.wrapper-img-sobre{
  width: 100%;
  aspect-ratio: 10/9;
  border-radius: 10px;
  background-image: url("./images/pedro-banner.JPG");
  background-size: cover;
  background-position: center;
}

/* Soluções */

.solucoes{
  width: 100%;
  padding: 50px 0 90px 0;
  background-color: #000;
}

.title{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title h2{
  color: #FFF;
  font-size: 47px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}

.title h3{
  color: #FFFFFF;
  font-family: "Sora", Sans-serif;
  font-size: 21px;
  font-weight: 300;
  margin-top: 20px;
  position: relative;
}

.title h3::before{
  content: "";
  width: 50%;
  position: absolute;
  left: 50%;
  bottom: -40px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}

.wrapper-solutions{
  margin-top: 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0 15px;
}

.single-solution{
  background-color: #0C0C0C;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 10px;
  border-color: #232323;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
}

.single-solution i{
  color: #8600AE;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.single-solution h3{
  color: #FFFFFF;
  font-size: 30px;
  margin-top: 20px;
  text-align: center;
}

.single-solution p{
  color: #A8A8A8;
  font-size: 16px;
  font-weight: 200;
  line-height: 23px;
  text-align: center;
  margin-top: 10px;
}

.single-solution:hover, .single-metrica:hover{
  background-color: transparent;
  background-image: linear-gradient(180deg, #000000 0%, #8600AE21 100%);
  border-color: #8600AE;
}

/* Num Clientes */

.num-clientes{
  width: 100%;
  background-color: #000;
  padding: 60px 0 90px 0;
}

.num-clientes .container{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.num-clientes h3{
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
  width: 40%;
}


/* BG SMALL */

.bg-fundo-small{
  width: 100%;
  height: 200px;
  background-image: url("./images/banner.png");
  background-size: cover;
  background-position: top center;
}


/* Metricas */

.metricas{
  width: 100%;
  padding: 50px 0;
  background-color: #000;
}

.metricas .container{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.single-metrica{
  background-color: #0C0C0C;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 10px;
  border-color: #232323;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
}

.single-metrica i{
  font-size: 35px;
  color: #8600AE;
}

.single-metrica h3{
  color: #FFFFFF;
  font-family: "Sora", Sans-serif;
  font-weight: 600;
  font-size: 50px;
  text-align: center;
  margin-top: 15px;
}

.single-metrica h4{
  color: #FFFFFF;
  font-family: "Sora", Sans-serif;
  font-weight: 400;
  font-size: 19px;
  margin-top: 10px;
}

/* Info */

.info{
  width: 100%;
  padding: 100px 0;
  background-color: #000;
}

.info .container{
  display: flex;
  align-items: center;
  max-width: 1080px;
  flex-wrap: wrap;
}

.info-left, .info-right{
  width: 50%;
  padding: 0 10px;
}

.info-left h3{
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.info-left h2{
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 600;
  line-height: 43px;
  margin-top: 20px;
}

.info-right{
  color: #9C9C9C;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.num-clientes .wrapper-container{
  width: 60%!important;
}

.box{
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box img{
  height: 100%;
  border-radius: 10px;
}

.wrapper-container{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  height: 100%;
  min-width: 100%;
  display: inline-flex;
  overflow: hidden;
  transform: translateX(0);
  transition: all 0.25s ease 0s;
  cursor: grab;
}

.slide{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  user-select: none!important;
}

.nav > button{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 15px;
  background-color: transparent;
  opacity: 0;
  color: white;
  display: inline-block;
  font-size: 22px;
  transition: all 0.3s;
  outline: 0;
  border: 0;
  cursor: pointer;
}

.nav> button.owl-prev{
  left: 5px;
}

.nav > button.owl-next{
  right: 5px;
}

.wrapper-container:hover > .nav > button{
  opacity: 0.7;
}

.wrapper-container > .nav > button:hover{
  opacity: 1;
}

/* MAPA */

.mapa{
  width: 100%;
  padding: 60px 0;
}

.title2 h3::before{
  display: none;
}

.title2 h2{
  position: relative;
}

.title2 h2::before{
  content: "";
  width: 50%;
  position: absolute;
  left: 50%;
  bottom: -40px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}

.wrapper-mapa{
  margin-top: 80px;
  display: flex;
  align-items: center;
}

.mapa-left{
  width: 50%;
}

.mapa-right{
  width: 50%;
}

.mapa-right img{
  height: 600px;
}

.metricas-single{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.metricas-single:nth-of-type(1){
  transform: translateX(-100px);
}

.metricas-single:nth-of-type(3){
  transform: translateX(200px);
}

.metricas-single-right{
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.metricas-single-right h2{
  font-size: 50px;
  color: #FFF;
  font-weight: bolder;
}

.metricas-single-right h4{
  color: #8600AE;
  font-size: 22px;
  margin-top: 5px;
  font-weight: normal;
}

/* Presença digital */

.presenca{
  width: 100%;
  padding: 50px 0;
}

.presenca-box{
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 90px;
}

.single-etapa{
  width: 21%;
  border: 1px solid #8600AE;
  padding: 40px 10px;
  text-align: center;
  border-radius: 10px;
  background-image: url("./images/presenca.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.single-etapa h2{
  font-size: 40px;
  color: #FFF;
  font-weight: bolder;
}

.single-etapa h3, .single-etapa-presencial h3{
  font-size: 19px;
  color: #7B7B7B;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 11px;
}

.single-etapa p{
  font-size: 20px;
  color: #FFF;
  font-weight: normal;
  margin-top: 20px;
  text-align: center;
}

.wrapper-img-flecha{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ENGAJAMENTO */

.engajamento{
  width: 100%;
  padding: 50px 0;
}

.engajamento .container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.title-engajamento{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.title-engajamento span{
  font-size: 120px;
  color: rgba(255,255,255,0.15);
  font-weight: bolder;
  line-height: 110px;
}

.title-engajamento h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 65px;
  font-weight: bolder;
  color: #fff;
}

.engajamento .container > p{
  color: #fff;
  font-size: 20px;
  text-align: center;
  max-width: 600px;
  font-weight: lighter;
  margin-top: 70px;
  position: relative;
}

.engajamento .container > p::after{
  content: "";
  width: 30%;
  position: absolute;
  left: 50%;
  top: -40px;
  height: 1px;
  background-color: #8600AE;
  transform: translateX(-50%);
}

.engajamento .container > img{
  margin-top: 100px;
  width: 70%;
}

.lp{
  width: 100%;
  margin-top: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp img{
  width: 55%;
}

.lp-right{
  width: 40%;
}

.lp-right h5{
  font-size: 24px;
  color: #8600AE;
  letter-spacing: 2px;
  font-weight: normal;
}

.lp-right h1{
  font-size: 45px;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}

.lp-right p{
  font-size: 16px;
  color: #fff;
  line-height: 25px;
  text-align: left;
  margin-top: 20px;
  font-weight: lighter;
  max-width: 370px;
}

.wrapper-lp{
  margin-top: 40px;
}

.single-lp{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.single-lp i{
  font-size: 30px;
  color: #fff;
}

.single-lp-right{
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.single-lp-right h5{
  font-size: 14px;
  color: #8600AE;
}

.single-lp-right h4{
  font-size: 26px;
  color: #fff;
}

.trafego{
  margin-top: 70px;
  width: 100%;
}

.trafego-top{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-trafego{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}

.title-trafego span{
  color: rgba(255,255,255,0.15);
  font-weight: bolder;
  font-size: 70px;
  font-weight: bolder;
  letter-spacing: 10px;
}

.title-trafego h2{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 80px;
  font-weight: bolder;
  color: #fff;
  letter-spacing: 10px;
}

.publico{
  display: flex;
  align-items: center;
  justify-content: center;
}

.publico h3{
  font-size: 30px;
  color: #fff;   
  font-weight: lighter;
  margin-right: 20px;
}

.trafego-bottom{
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trafego-bottom img{
  display: inline-block;
  width: 65%;
  border-radius: 20px;
}

.wrapper-trafego-left, .wrapper-trafego-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
}

.circle-trafego{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #8600AE;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
}

.circle-trafego i{
  color: white;
  font-size: 40px;
}


/* MONETIZATION */

.monetization{
  width: 100%;
  padding: 100px 0;
}

.title-monetization{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 60px;
  width: 100%;
}

.title-monetization span{
  font-size: 120px;
  color: rgba(255,255,255,0.15);
  font-weight: bolder;
  line-height: 120px;
}

.title-monetization span:nth-of-type(2){
  transform: translateX(-150px);
}

.title-monetization h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 65px;
  font-weight: bolder;
  color: #fff;
}

.title-monetization h3{
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 21px;
  font-weight: normal;
  color: #8600AE;
}

.monetization .container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.monetization-top p{
  font-size: 20px;
  max-width: 850px;
  text-align: center;
  margin-top: 35px;
  color: white;
  font-weight: lighter;
  position: relative;
}

.monetization-top p:nth-of-type(1):after{
  content: "";
  width: 30%;
  position: absolute;
  left: 50%;
  top: -40px;
  height: 1px;
  background-color: #8600AE;
  transform: translateX(-50%);
}

.monetization-bottom{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 90px;
}

.single-monetization{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border: 2px solid white;
  border-radius: 8px;
  padding: 35px 25px;
}

.single-monetization h2{
  font-size: 18px;
  font-weight: 300;
  max-width: 250px;
  color: white;
  margin-right: 10px;
}

.single-monetization i{
  font-size: 50px;
  color: #8600AE;
}


/* CERTIFICATION */

.certification{
  width: 100%;
  padding: 50px 0;
}

.certification .container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0;
}

.certification-top{
  width: 100%;
  text-align: center;
}

.certification-top h4{
  font-size: 24px;
  font-weight: 300;
  color: #8600AE;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.certification-top h2{
  font-size: 45px;
  font-weight: 700;
  margin-top: 15px;
  color: #FFF;
}

.certification-bottom{
  margin-top: 75px;
}

.single-certification-bottom{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.single-certification-top{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-certification{
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-certification img{
  max-width:250px;
  max-height: 110px;
  width: auto;
  height: auto;
  padding: 0 40px;
}

/* CERTIFICATION */

.certification{
  width: 100%;
  padding: 50px 0;
}

.certification .container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.certification-top{
  width: 100%;
  text-align: center;
}

.certification-top h4{
  font-size: 24px;
  font-weight: 300;
  color: #8600AE;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.certification-top h2{
  font-size: 45px;
  font-weight: 700;
  margin-top: 15px;
  color: #FFF;
}

.certification-bottom{
  margin-top: 75px;
}

.single-certification-bottom{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.single-certification-top{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-certification{
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-certification img{
  max-width:250px;
  max-height: 110px;
  width: auto;
  height: auto;
  padding: 0 40px;
}

/* WARNINGS */

.warnings{
  width: 100%;
  padding: 70px 0;
}

.wrapper-warnings{
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}

.warnings-left, .warnings-right{
  border: 2px solid white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 0;
  text-align: center;
  background-image: url('./images/warning.png');
  border: 1px solid #8600AE;
}

.warnings-left img, .warnings-right img{
  max-width: 150px;
}

.warnings-left h4, .warnings-right h4{
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-top: 25px;
}

.warnings-left h2, .warnings-right h2{
  font-size: 43px;
  font-weight: 700;
  color: white;
  max-width: 400px;
  margin-top: 15px;
}

.warnings-left p, .warnings-right p{
  font-size: 20px;
  font-weight: lighter;
  color: white;
  max-width: 300px;
  margin-top: 25px;
}


/* DEPOIMENTOS */

.depoimentos{
  width: 100%;
  padding: 60px 0;
  background-color: #000;
}

.depoimentos .wrapper-container{
  padding-bottom: 80px;
  position: relative;
}

.depoimentos .nav{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.depoimentos .prev, .depoimentos .next{
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #8600AE;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}

.depoimentos .prev:hover, .depoimentos .next:hover{
  background-color: #8600AE;
}

.depoimentos .prev i, .depoimentos .next i{
  font-size: 20px;
  color: #fff;
}

.title-depoimentos{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.title-depoimentos h3{
  color: #8600AE;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.title-depoimentos h2{
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 500;
  max-width: 600px;
  text-align: center;
  margin-top: 20px;
}

.single-depoimento{
  border-radius: 10px 10px 10px 10px;
  padding: 0 10px;
  user-select: none!important;
}

.wrapper-img-depoimento{
  width: 100%;
  aspect-ratio: 10/9;
  background-color: #ccc;
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
  position: relative;
  overflow: hidden;
}

.wrapper-img-depoimento img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.content-info-depoimento{
  width: 100%;
  padding: 25px 15px;
  background-color: #0F0F0F;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.content-info-depoimento h4{
  color: #D5B7B7;
  padding-bottom: 8px;
  font-size: 14px;
}

.content-info-depoimento h3{
  color: #FFFFFF;
  font-size: 28px;
}

.content-info-depoimento p{
  color: #DEDEDE;
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  margin-top: 10px;
}


/* Contato */

.contato{
  width: 100%;
  background-color: #000;
  padding: 50px 0;
}

.contato .container{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.contato-left, .contato-right{
  width: 50%;
}

.contato-left h4{
  color: #8600AE;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.contato-left h3{
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 400;
  margin-top: 10px;
}

.contato-left h2{
  color: #FFFFFF;
  font-size: 44px;
  font-weight: 600;
  margin-top: 20px;
  max-width: 80%;
}

.contato-left p{
  color: #E4E4E4;
  font-size: 21px;
  font-weight: 200;
  line-height: 24px;
  max-width: 80%;
  margin-top: 20px;
}

.wrapper-form{
  width: 100%;
  background-color: #101010;
  padding: 50px 20px;
  border-radius: 10px;
}

.single-input{
  width: 100%;
  margin-bottom: 20px;
}

.single-input span{
  color: #fff;
}

input[type="range"] {
  accent-color: #8600AE;
  transition: 0.5s;
  cursor: pointer;
}

.single-input h3{
  color: #CFCFCF;
  font-size: 15px;
  font-weight: 300;
}

.single-input input, textarea{
  background-color: #2A2A2A;
  border-radius: 5px;
  color: #fff;
  border: 0;
  padding: 10px 8px;
  font-size: 16px;
  outline: 0;
  width: 100%;
  margin-top: 10px;
}

textarea{
  resize: none;
  height: 90px;
}

.wrapper-form button{
  width: 100%;
  margin-top: 20px;
  margin-left: 0;
}

.line{
  width: 80%;
  height: 1px;
  background-color: #9C9C9C;
  margin: 40px 0;
}

.contato-info{
  width: 100%;
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.contato-info i{
  font-size: 20px;
  color: #8600AE;
}

.contato-info span{
  color: #D5D5D5;
  font-size: 17px;
  margin-left: 10px;
  line-height: 1.5;
}

/* FOOTER */

footer{
  width: 100%;
  background-color: #000;
  border-top: 1px solid #9C9C9C;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

footer p{
  font-size: 16px;
  color: #fff;
}

/* ENTRADA */

.content-entrada{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: close;
  animation-delay: 3s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  z-index: 999;
}

.entrada{
  width: 100%;
  height: 100%;
  background-color: #030303;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation-name: entrada;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}

.entrada img{
  width: 200px;
  opacity: 0;
  animation-name: img;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: scale(0.5);
}

.letters-entrada{
  text-align: center;
  position: relative;
}

.letters-entrada p{
  display: inline-block;
  width: 21px;
  text-align: right;
  font-size: 24px;
  color: #8600AE;
}

.wrapper-entrada span{
  font-size: 69px;
  font-weight: bold;
  transition: 1s;
  display: inline-block;
}

.h{
  animation-name: h;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  position: relative;
}

.h span{
  position: absolute;
  bottom: 20px;
  left: -20px;
}

.a{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  animation-name: a;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.e{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  animation-name: e;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.s{
  animation-name: s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}




@keyframes entrada{
  0%{
    opacity: 1;
  }
  
  100%{
    opacity: 0;
  }
}

@keyframes close{
  0%{
    display: block;
  } 
  100%{
    display: none;
  }
}

@keyframes img{
  0%{
    opacity: 0;
    transform: scale(0.5);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes a{
  0%{
    transform: translate(-50%,-50%);
    opacity: 0;
  }
  100%{
    opacity: 1;
    transform: translate(75%,-50%);
  }
}

@keyframes h{
  0%{
    transform: translate(0);
  }
  100%{
    transform: translateX(-100%);
  }
}

@keyframes e{
  0%{
    transform: translate(-50%,-50%);
  }
  100%{
    opacity: 1;
    transform: translate(-150%,-50%);
  }
}

@keyframes s{
  0%{
    transform: translate(0);
  }
  100%{
    opacity: 1;
    transform: translateX(150%);
  }
}

[data-anime]{
  opacity: 0;
  transition: 1s;
}

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

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

[data-anime="scale"]{
  transform: scale(0.5);
}

[data-anime].animation{
  opacity: 1;
  transform: translate(0,0) scale(1);
}

.anime-left{
  animation-name: left;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform: translateX(-100px);
}

@keyframes left{
  0%{
    transform: translateX(-100px);
  }
  100%{
    transform: translate(0,0);
  }
}

/* MEDIA QUERYS */

@media screen and (max-width: 800px) {
  .content-entrada{
    display: none;
  }

  .banner img{
    width: 70%;
  }

  .menu-desktop{
    display: none;
  }

  .menu-mobile{
    display: block;
  }

  .logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }

  .banner h2{
    font-size: 38px;
    width: 100%;
    text-align: center;
  }

  .banner h3{
    font-size: 22px;
    width: 100%;
    text-align: center;
  }

  .banner .container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wrapper-img-banner{
    width: 100%;
    text-align: center;
  }

  .sobre-left, .sobre-right{
    width: 100%;
  }

  .sobre-right{
    margin-top: 30px;
    padding: 0 30px;
  }

  .sobre-left{
    align-items: center;
  }

  .sobre-left p{
    text-align: center;
  }

  .sobre-left h2{
    max-width: none;
    text-align: center;
  }
  
  .wrapper-solutions{
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  
  .title h2{
    font-size: 40px;
    text-align: center;
  }

  .title h3{
    font-size: 19px;
    text-align: center;
  }

  .info-left, .info-right{
    width: 100%;
    text-align: center;
  }

  .info-right{
    margin-top: 30px;
  }

  .metricas .container{
    grid-template-columns: 1fr;
  }

  .contato-left, .contato-right{
    width: 100%;
  }

  .contato-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contato-left h2{
    max-width: none;
  }

  .contato-left p{
    max-width: none;
    font-size: 20px;
  }

  .contato-right{
    margin-top: 30px;
  }

  .contato-info{
    justify-content: center;
  }

  .num-clientes h3{
    width: 100%;
    text-align: center;
  }

  .num-clientes .wrapper-container{
    margin-top: 20px;
    width: 100%!important;
  }

  .logo i{
    display: block;
  }

  footer p{
    text-align: center;
  }

  .banner{
    height: auto;
  }

  .banner-left, .banner-right {
    width: 100%;
  }

  .wrapper-banner-left{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wrapper-banner-right{
    margin: 30px 0;
    width: 80%;
  }

  .wrapper-mapa{
    flex-direction: column;
  }

  .mapa-right{
    width: 80%;
    margin-top: 30px;
  }

  .mapa-right img{
    height: auto;
    width: 100%;
  }

  .mapa-left{
    width: 90%;
  }

  .metricas-single{
    transform: translateX(0) !important;
  }

  .presenca-box{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .single-etapa{
    width: 50%;
    margin: 10px 0;
  }

  .wrapper-img-flecha{
    display: none;
  }

  .title-engajamento span{
    font-size: 80px;
  }

  .lp{
    flex-direction: column-reverse;
  }

  .lp-right{
    width: 90%;
  }

  .lp img{
    margin-top: 30px;
    width: 90%;
  }

  .publico{
    display: none;
  }

  .circle-trafego{
    display: none;
  }

  .trafego-bottom img{
    width: 100%;
  }

  .title-monetization span{
    font-size: 90px;
    line-height: 90px;
  }

  .title-monetization h3{
    display: none;
  }

  .monetization-bottom{
    grid-template-columns: 1fr 1fr;
  }

  .certification{
    display: none;
  }

  .wrapper-warnings{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .warnings-left, .warnings-right{
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 640px){
  .monetization-bottom{
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width:580px){
  .single-etapa{
    width: 90%;
  }

  .title-engajamento h2{
    font-size: 35px;
  }

  .title-engajamento span{
    font-size: 60px;
  }

  .engajamento .container > p{
    font-size: 17px;
  }

  .engajamento .container > img{
    width: 85%;
  }

  .title-trafego span{
    font-size: 50px;
  }

  .title-trafego h2{
    font-size: 55px;
  }

  .title-monetization span{
    font-size: 90px;
    line-height: 90px;
  }

  .title-monetization h3{
    display: none;
  }

  .monetization-top p{
    font-size: 17px;
  }
}