html {
  scroll-behavior: smooth;
}

* {
  font-family: "Poppins", sans-serif !important;
  box-sizing: border-box;
}

body header {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  backdrop-filter: blur(15px);
  background: rgba(17, 48, 88, 0.5);
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

body header .logo {
  height: 30px;
}

body header .logo a {
  float: left;
  width: 100%;
  height: 100%;
}

body header .logo a svg {
  height: 100%;
  width: auto;
}

body header nav {
  width: 452px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}

body header nav ul {
  display: flex;
  gap: 50px;
}

body header nav ul li a {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
}

body header nav ul li a:hover {
  text-decoration: none;
  color: #45aadd;
}

body .wppFlutuante {
  position: fixed;
  width: 70px;
  height: 70px;
  right: 50px;
  z-index: 5;
  bottom: 50px;
}

body .voltaTopo {
  position: fixed;
  right: 0;
  bottom: 200px;
  transition: ease all .2s;
  z-index: 10;
}


body .wppFlutuante a {
  float: left;
  width: 100%;
}

body .wppFlutuante a svg {
  width: 100%;
  height: auto;
}

body .banner {
  float: left;
  width: 100%;
  position: relative;
}

body .banner img {
  float: left;
  width: 100%;
}

body .banner .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-direction: column;
  text-align: center;
}

body .banner .txt h2 {
  font-size: 40px;
  color: #fff;
  line-height: 55px;
  font-weight: 900;
  letter-spacing: 1px;
}

body .banner .txt .botao {
  width: 500px;
  background: #0087CA;
  background: linear-gradient(90deg, rgba(0, 135, 202, 1) 0%, rgba(113, 193, 233, 1) 100%);
  height: 65px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  line-height: 65px;
  text-transform: uppercase;
  font-weight: 870;
  letter-spacing: 3px;
}

body .container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

body main {
  float: left;
  width: 100%;
  background: #1d1d1d;
}

body main .servicos {
  float: left;
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

body main .servicos .tit {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

body main .servicos .tit .title {
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
  background-size: 100%;
  height: 50px;
  z-index: 1;
  position: absolute;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 50px;
}

body main .servicos .tit img {
  border-radius: 20px;
  float: left;
  width: 100%;
}

body main .servicos .boxesServ {
  float: left;
  width: 100%;
  display: flex;
  text-align: left;
  gap: 30px;
}

body main .servicos .boxesServ .boxServ {
  background: #2F2F2F;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  transition: ease all .3s;
}

body main .servicos .boxesServ .boxServ:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 12px 5px rgba(35, 69, 114, 0.3);
}

body main .servicos .boxesServ .boxServ svg {
  float: left;
}

body main .servicos .boxesServ .boxServ h2 {
  float: left;
  width: 100%;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  margin: 20px 0;
}

body main .servicos .boxesServ .boxServ p {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  line-height: 25px;
  letter-spacing: 3px;
}

body main .servicos .mais {
  display: inline-block;
  width: 270px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  height: 50px;
  line-height: 46px;
  margin: 50px auto 0;
  border-radius: 30px;
}

body main .clientes {
  float: left;
  width: 100%;
  padding: 50px 0;
  position: relative;
}

body main .clientes .container {
  position: relative;
  z-index: 1;
}

body main .clientes .container .title {
  width: 100%;
  text-align: left;
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

body main .clientes .container .slider {
  overflow: hidden;
  width: 100%;
}

body main .clientes .container .slider .rotate {
  width: 100%;
  display: flex;
  gap: 45px;
  animation: 35s infinite slide linear;
}


body main .clientes .container .slider .rotate:hover {
  animation-play-state: paused;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1140px);
  }
}


body main .clientes .container .slider img {
  width: 150px;
  border-radius: 20px;
}

body main .clientes .container .slider .slick-track .slick-slide {
  padding: 40px;
}

body main .clientes .container .slider .slick-prev {
  width: 27px;
  height: 32px;
  left: -77px;
}

body main .clientes .container .slider .slick-prev::before {
  background: url("../images/seta-esq.svg");
  float: left;
  width: 100%;
  height: 100%;
  content: "";
}

body main .clientes .container .slider .slick-next::before {
  background: url("../images/seta-dir.svg");
  float: left;
  width: 100%;
  height: 100%;
  content: "";
}

body main .clientes .container .slider .slick-next {
  width: 27px;
  height: 32px;
  right: -77px;
}

body main .clientes .container .slider .slick-dots {
  display: none !important;
}

body main .clientes .container .slider .slick-dots li button {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #242B36;
  border-radius: 4px;
}

body main .clientes .container .slider .slick-dots li.slick-active button {
  background: #242B36
}

body main .clientes .container .slider .slick-dots li button:before {
  display: none;
}

body main .clientes .container .vejaMais {
  float: right;
  border: 1px solid #fff;
  width: 300px;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 3px;
  color: #fff;
  height: 50px;
  text-align: center;
  line-height: 48px;
  border-radius: 25px;
  background: #1d1d1d;
  margin-top: 50px;
}

body main .clientes .detail {
  position: absolute;
  top: 0;
  right: 0;
}

body footer {
  float: left;
  width: 100%;
  background: url("../images/detail-footer.png") no-repeat #1d1d1d;
  height: 469px;
}

body footer .container {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

body footer .container .top {
  width: 100%;
  float: left;
  padding: 50px 0;
  text-align: left;
}

body footer .container .top .telEnd {
  float: left;
  width: 560px;
}

body footer .container .top .telEnd .tel {
  float: left;
  margin-bottom: 20px;
}

body footer .container .top .telEnd .tel svg {
  float: left;
  margin-right: 15px;
}

body footer .container .top .telEnd .tel p {
  float: left;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 30px;
}

body footer .container .top .telEnd .end {
  float: left;
  font-style: normal;
}

body footer .container .top .telEnd .end svg {
  float: left;
  margin-right: 15px;
  width: 32px;
}

body footer .container .top .telEnd .end address {
  float: left;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 30px;
}

body footer .container .top .logo-redes {
  float: right;
  width: 300px;
}

body footer .container .top .logo-redes .logo {
  width: 100%;
  float: left;
}

body footer .container .top .logo-redes .logo a {
  width: 100%;
  height: 100%;
  float: left;
}

body footer .container .top .logo-redes .logo a svg {
  width: 100%;
  height: auto;
}

body footer .container .top .logo-redes .redes {
  float: right;
  gap: 20px;
  margin-top: 30px;
  display: flex;
}

body footer .container .top .logo-redes .redes a {
  width: 25px;
  height: 25px;
}

body footer .container .top .logo-redes .redes a svg {
  width: 100%;
  height: 100%;
  max-height: 25px;
}

body footer .container .top .logo-redes .redes a.mail {
  width: 35px;
}

body footer .container .bottom {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
}

body footer .container .bottom a {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  text-decoration:
    none;
}

body footer .container .bottom p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}

/*=== === SERVIÇOS === ===*/

.servicos .serv-accordion button {
  background: none;
  border: none;
  color: #fff;
  border-radius: 0;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  width: 100%;
  margin: 50px 0 30px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 20px;
}

.servicos .serv-accordion button .titulo {
  width: 381px;
}

.servicos .serv-accordion button .titulo h2 {
  font-size: 19px;
  text-transform: none;
  letter-spacing: 2px;
  font-weight: bold;
  float: left;
  width: 300px;
  background: #2F2F2F;
  height: 77px;
  line-height: 77px;
  margin: 0 3px 0 0;
  border-radius: 10px;
  text-align: center;
}

.servicos .serv-accordion button .titulo svg {
  padding: 10px;
  background: #2F2F2F;
  height: 77px;
  width: 77px;
  float: left;
  border-radius: 10px;
}

.servicos .serv-accordion .linha {
  height: 3px;
  background: #2f2f2f;
  display: inline-block;
  width: 801px;
}

.servicos .serv-accordion .conteudo {
  text-align: left;
  padding: 0 30px;
}

.servicos .serv-accordion .conteudo p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 17px;
}

.servicos .btn-primary span {
  color: #FFF;
  font-size: 26px;
  top: 0;
}

.servicos .collapsed #iconMinus {
  display: none;
}

.servicos #iconMinus {
  font-size: 32px;
}

.servicos .collapsed #iconPlus {
  display: block !important;
}

.servicos .btn-primary #iconPlus {
  display: none;
}

.servicos .serv-accordion button .titulo h2.rig {
  margin: 0 0 0 3px;
}

/*=== === CLIENTES === ===

#clientes .clientes {}

#clientes .clientes .title {
  text-align: center;
}

#clientes .clientes .boxClientes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
  width: 100%;
}

#clientes .clientes .boxClientes .border {}

#clientes .clientes .boxClientes .border img {
  float: left;
  width: 100%;
}

/*=== === NÚMEROS === ===*/

.numeros {
  float: left;
  width: 100%;
}

.numeros .container {
  position: relative;
}

.numeros .container .imgBg {
  border-radius: 20px;
  width: 100%;
}

.numeros .container .num {
  position: absolute;
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 13px rgb(50, 208, 249);
}

.numeros .container .numero1 {
  top: 145px;
  width: 150px;
  left: -388px;
  right: 0;
  margin: auto;
}

.numeros .container .numero2 {
  top: 312px;
  left: 145px;
}

.numeros .container .numero3 {
  top: 313px;
  right: 199px;
}

.numeros .container .numero4 {
  bottom: 120px;
  width: 293px;
  right: -87px;
  left: 0;
  margin: auto;
}

/*=== === EMPRESA === ===*/

.empresa {
  padding: 50px 0;
}

.empresa .tit {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}

.empresa .tit .title {
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
  background-size: 100%;
  height: 50px;
  z-index: 1;
  position: absolute;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 50px;
}

.empresa .tit img {
  border-radius: 20px;
  float: left;
  width: 100%;
}

.empresa .boxTexto {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.empresa .boxTexto p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #fff;
}

.empresa .boxesMVV {
  float: left;
  width: 100%;
  display: flex;
  text-align: left;
  gap: 30px;
}

.empresa .boxesMVV .box {
  border-radius: 10px;
  width: 100%;
  /*transition: ease all .3s;*/
  padding: 1px;
  background: #708FA3;
  background: linear-gradient(90deg, rgb(112, 143, 163) 0%, rgb(33, 99, 151) 100%);
}

.empresa .boxesMVV .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 12px 5px rgba(35, 69, 114, 0.3);
}

.empresa .boxesMVV .box .innerBox {
  padding: 20px;
  float: left;
  height: 100%;
  position: relative;
  background: #0C0D11;
  background: linear-gradient(90deg, rgb(12, 13, 17) 0%, rgb(9, 123, 211) 100%);
  border-radius: 10px;
}

.empresa .boxesMVV .box .innerBox svg {
  position: absolute;
  right: 20px;
  top: 20px;
}

.empresa .boxesMVV .box h2 {
  float: left;
  width: 100%;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 50px 0 20px;
}

.empresa .boxesMVV .box p {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  line-height: 21px;
  letter-spacing: 1px;
}

.empresa .boxesMVV .box ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  line-height: 21px;
  letter-spacing: 3px;
}

/*=== === CONTATO === ===*/
.contato {
  float: left;
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

.contato .container {
  position: relative;
  display: inline-block;
  margin: auto;
}

.contato .title {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

.contato .map {
  float: left;
  width: 50%;
}

.contato .map iframe {
  float: left;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
}

.contato .formulario {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato .formulario h2 {
  font-size: 24px;
  color: #fff;
  margin: 0 0 20px;
  float: left;
  text-align: left;
  width: 100%;
}

.contato .formulario form {
  float: left;
  width: 100%;
}

.contato .formulario form ::placeholder {
  opacity: 1;
  color: #fff;
}

.contato .formulario form input {
  height: 45px;
  width: 100%;
  background: #2A3A54;
  border: none;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 20px;
}

.contato .formulario form textarea {
  height: 120px;
  width: 100%;
  background: #2A3A54;
  border: none;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 20px;
}

.contato .formulario form button {
  width: 250px;
  background: #0087CA;
  background: linear-gradient(90deg, rgba(0, 135, 202, 1) 0%, rgba(113, 193, 233, 1) 100%);
  height: 65px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  line-height: 44px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  border: none;
  font-size: 21px;
}

.bannerDepoimento {
  width: 100%;
  float: left;
  margin: 0 0 100px;
}

.bannerDepoimento .carousel .carousel-indicators {
  bottom: -35px;
  width: auto;
  margin: 0;
  left: 0;
  right: 0;
}

.bannerDepoimento .carousel img {
  border-radius: 20px;
  width: 100%;
}

.google {
  width: 100%;
  float: left;
}

.google .container {}

.google .container img {
  float: left;
  width: 100%;
  border-radius: 20px;
}


/*=== === AVISO DE PRIVACIDADE === ===*/
#aviso .aviso {
  float: left;
  width: 100%;
  padding: 50px 0;
  border-bottom: 1px solid #2c2c2c;
}

#aviso .aviso .container .title {
  float: left;
  width: 100%;
  text-align: center;
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 4px;
}

#aviso .aviso .container .boxTexto h3 {
  font-size: 25px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 17px;
}

#aviso .aviso .container .boxTexto h4 {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 17px;
}

#aviso .aviso .container .boxTexto p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 17px;
}

#aviso .aviso .container .boxTexto ul {
  float: left;
  width: 100%;
  padding-left: 30px;
  margin-bottom: 15px;
}

#aviso .aviso .container .boxTexto ul li {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  list-style: disc;
}