:root {
  --gray-scale-01: #010101;
  --green-01:#0F0F0F;
  --white: #ffffff;
  --gray-scale-03: #494949;
  --green-02: #D2F603;
  --orange-01: #F25637;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  font-family: "Switzer", sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--gray-scale-01);
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  text-decoration: none;
  display: inline-block;
}

p, span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  line-height: 140%;
  font-weight: 500;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 121.6rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  border-bottom: 1px solid #ffffff10;
  position: relative;
}
header .container {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3.2rem 1.5rem;
}
header .container nav {
  width: 100%;
  max-width: 32rem;
}
header .container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .container nav ul li a {
  color: #ffffff;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .container nav ul li a:hover {
  color: #D2F603;
}
header .container .btn-call a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ffffff;
  padding: 0.6rem 0.6rem 0.6rem 2.1rem;
  border-radius: 50rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .container .btn-call a span {
  font-family: "Switzer", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.8rem;
}
header .container .btn-call a:hover {
  background-color: var(--green-02);
  border: 2px solid #D2F603;
}
header .container .btn-call a:hover span {
  color: #010101;
}
header .hamburger {
  cursor: pointer;
  display: none;
  z-index: 2050;
}
header .hamburger.is-active .hamburger-inner,
header .hamburger.is-active .hamburger-inner::before,
header .hamburger.is-active .hamburger-inner::after {
  background-color: white;
}
header .hamburger .hamburger-inner,
header .hamburger .hamburger-inner::before,
header .hamburger .hamburger-inner::after {
  background-color: white;
  width: 3.2rem;
}
header .menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  position: absolute;
  background-color: #010101;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 2048;
  padding: 4rem 1.5rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .menu-mobile ul {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.2rem;
}
header .menu-mobile ul li a {
  color: #ffffff;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
}
header .menu-mobile .btn-call a {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ffffff;
  padding: 0.6rem 0.6rem 0.6rem 2.1rem;
  border-radius: 50rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .menu-mobile .btn-call a span {
  font-family: "Switzer", sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 0.8rem;
}
header .menu-mobile .btn-call a:hover {
  background-color: var(--green-02);
  border: 2px solid #D2F603;
}
header .menu-mobile .btn-call a:hover span {
  color: #010101;
}
@media (max-width: 990px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 1.5rem;
  }
  header .container nav {
    display: none;
  }
  header .container .btn-call {
    display: none;
  }
  header .hamburger {
    display: block;
  }
}

.menu-opened header .menu-mobile {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
}

footer {
  padding-top: 9rem;
  padding-bottom: 5rem;
}
footer .container .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 17rem;
}
footer .container .content-box .area-left h3 {
  line-height: 130%;
  font-weight: 500;
  width: 100%;
  max-width: 48.5rem;
  color: white;
  font-size: 3.6rem;
}
footer .container .content-box .area-left .links-uteis {
  width: 100%;
  max-width: 36.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .container .content-box .area-left .links-uteis h5 {
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 2.8rem;
}
footer .container .content-box .area-left .links-uteis ul {
  margin-top: 2.6rem;
}
footer .container .content-box .area-left .links-uteis ul li:not(:last-child) {
  margin-bottom: 1.3rem;
}
footer .container .content-box .area-left .links-uteis ul li a {
  color: rgba(255, 255, 255, 0.601);
  font-size: 1.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .container .content-box .area-left .links-uteis ul li a:hover {
  color: var(--green-02);
}
footer .container .content-box .area-right {
  width: 100%;
  max-width: 40.5rem;
}
footer .container .content-box .area-right h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2.6rem;
}
footer .container .content-box .area-right .sociais {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .container .content-box .area-right .sociais .insta-rede a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.3rem 2rem;
  background-color: #1A1A1A;
  border-radius: 5rem;
  margin-right: 1.4rem;
}
footer .container .content-box .area-right .sociais .insta-rede a:hover {
  background-color: #1a1a1a93;
}
footer .container .content-box .area-right .sociais .insta-rede a span {
  font-family: "Switzer", sans-serif;
  color: white;
  text-transform: uppercase;
  margin-left: 1.3rem;
  font-size: 1.2rem;
}
footer .container .content-box .area-right .sociais ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .container .content-box .area-right .sociais ul li {
  width: 4.8rem;
  height: 4.8rem;
  background-color: #1A1A1A;
  padding: 1.3rem 1.3rem;
  border-radius: 5rem;
}
footer .container .content-box .area-right .sociais ul li:not(:last-child) {
  margin-right: 1.46rem;
}
footer .container .content-box .area-right .sociais ul li:hover {
  background-color: #1a1a1a93;
  cursor: pointer;
}
footer .container .content-box .area-right .contato-area {
  margin-top: 2.6rem;
  background-color: #1A1A1A;
  border-radius: 1.6rem;
  padding: 2.6rem 4.4rem 2.6rem 2.7rem;
}
footer .container .content-box .area-right .contato-area h4, footer .container .content-box .area-right .contato-area h3 {
  color: white;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
footer .container .content-box .area-right .contato-area a {
  width: 20.8rem;
  margin-top: 3.2rem;
  background-color: white;
  padding: 1.5rem 4rem;
  text-align: center;
  font-size: 1.4rem;
  color: #010101;
  border-radius: 5rem;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .container .content-box .area-right .contato-area a:hover {
  background-color: var(--green-02);
}
footer .bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #1A1A1A;
  padding-top: 3rem;
  padding: 5rem 1.5rem 0rem 1.5rem;
}
footer .bottom-footer .info-contato p {
  color: rgba(255, 255, 255, 0.701);
  font-size: 1.3rem;
}
footer .bottom-footer .copy p {
  color: rgba(255, 255, 255, 0.701);
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 940px) {
  footer .container .content-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  footer .container .contato-box {
    margin-bottom: 10rem !important;
  }
  footer .bottom-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer .bottom-footer .info-contato {
    text-align: center;
    margin-top: 2.4rem;
  }
  footer .bottom-footer .copy {
    margin-top: 2.4rem;
  }
  footer .bottom-footer .copy p {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 360px) {
  footer .container .content-box {
    margin-bottom: 10rem;
  }
  footer .container .content-box .area-right .sociais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.4rem;
  }
  footer .container .content-box .area-right .contato-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.6re, 2.6rem;
  }
  footer .container .content-box .area-right .contato-area h4, footer .container .content-box .area-right .contato-area h3 {
    text-align: center;
  }
}

.hero .container {
  padding-top: 18.8rem;
  padding-bottom: 8rem;
}
.hero .container .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero .container .hero-content h1 {
  font-size: 8rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}
.hero .container .hero-content h1 span {
  font-family: "Switzer", sans-serif !important;
  color: var(--green-02);
}
.hero .container .hero-content p {
  font-size: 2rem;
  margin-top: 2.4rem;
  text-align: center;
  color: #EAEBF4;
  max-width: 73.7rem;
}
.hero .container .hero-content a {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--green-02);
  padding: 1.8rem 4.4rem;
  border-radius: 10rem;
  font-size: 1.4rem;
  color: #010101;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero .container .hero-content a img {
  margin-left: 0.8rem;
  width: 1.3rem;
  height: 1.3rem;
}
.hero .container .hero-content a:hover {
  background-color: white;
}
.hero .container .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10.2rem;
}
.hero .container .info .left p {
  max-width: 24.6rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 150%;
  color: #eaebf48b;
}
.hero .container .info .left p strong {
  color: white;
}
.hero .container .info .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}
.hero .container .info .right span {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
}
.hero .container .info .right img {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 100%;
  margin-left: 0.8rem;
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero .container {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .hero .container .hero-content h1 {
    font-size: 7rem;
  }
}
@media (max-width: 560px) {
  .hero .container .hero-content h1 {
    font-size: 4.4rem;
  }
  .hero .container .hero-content p {
    max-width: 36rem;
    font-size: 1.6rem;
  }
  .hero .container .info {
    margin-top: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hero .container .info .left {
    margin-bottom: 4rem;
  }
  .hero .container .info .left p {
    text-align: center;
  }
}
@media (max-width: 360px) {
  .hero .container .hero-content h1 {
    font-size: 3.6rem;
  }
}

.solutions {
  background-color: white;
}
.solutions .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 8rem;
  margin: 0 auto;
}
.solutions .container h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #010101;
}
.solutions .container .card-solutions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.2rem;
  margin-top: 5rem;
}
.solutions .container .card-solutions .card-one {
  width: 100%;
  max-width: 38.4rem;
  height: 100%;
  min-height: 18rem;
  max-height: 22rem;
  position: relative;
  border: 2px solid #161616;
  border-radius: 0.8rem;
  padding: 2.5rem 1.8rem 2.4rem 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.solutions .container .card-solutions .card-one:hover {
  background-color: #D2F603;
  border: 2px solid #D2F603;
  cursor: pointer;
}
.solutions .container .card-solutions .card-one p {
  font-family: "Switzer", sans-serif;
  color: #0F0F0F;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 1.2rem;
}
.solutions .container .card-solutions .card-one span {
  color: #494949;
  font-size: 1.6rem;
  line-height: 130%;
  font-weight: 500;
}
.solutions .container .brands {
  max-width: 61.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.2rem;
  margin-top: 5rem;
}
.solutions .container .brands img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.solutions .container .brands img:hover {
  cursor: pointer;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media (max-width: 990px) {
  .solutions .container .card-solutions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .solutions .container .card-solutions .card-one {
    width: 100%;
    max-width: 76.8rem;
  }
  .solutions .container .brands {
    max-width: 48rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
}
@media (max-width: 768px) {
  .solutions .container .card-solutions {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .solutions .container .brands {
    max-width: 48rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
}
@media (max-width: 560px) {
  .solutions .container .brands {
    max-width: 56rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .solutions .container .brands img {
    width: 100%;
    max-width: 6.4rem;
  }
}

.cases {
  background-color: white;
}
.cases .container h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #010101;
}
.cases .container p {
  width: 100%;
  max-width: 55.8rem;
  padding-top: 2.4rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  line-height: 130%;
  margin: 0 auto;
}
.cases .container .card-cases {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  grid-gap: 3.2rem;
}
.cases .container .card-cases .card img {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cases .container .card-cases .card img:hover {
  -webkit-transform: translateX(0) scale(1.03);
  transform: translateX(0) scale(1.03);
}
.cases .container .card-cases .card .img-card video {
  border-radius: 2.4rem;
  width: 100%;
  height: 100%;
}
.cases .container .card-cases .card .info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 1rem;
  margin-top: 2.4rem;
}
.cases .container .card-cases .card .info-card .info-nome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cases .container .card-cases .card .info-card .info-nome h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
}
.cases .container .card-cases .card .info-card .info-nome span {
  font-size: 1.6rem;
  color: #010101b0;
  font-weight: 700;
}
.cases .container .card-cases .card .info-card a {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  color: #28292fc2;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 100px;
  padding: 1rem 2rem;
}
.cases .container .card-cases .card .info-card a:hover {
  color: #010101;
  text-decoration: underline;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.cases .container .card-cases .card-4 .img-card {
  background-color: #1D1D1D;
  border-radius: 2.4rem;
}
@media (max-width: 768px) {
  .cases .container .card-cases {
    grid-template-columns: repeat(1, 1fr);
  }
  .cases .container .card-cases .card img {
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .cases .container .card-cases .card img:hover {
    -webkit-transform: translateX(0) scale(1.03);
    transform: translateX(0) scale(1.03);
  }
  .cases .container .card-cases .card .info-card {
    padding-right: 0px;
  }
}
@media (max-width: 360px) {
  .cases .container .card-cases .card .info-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cases .container .card-cases .card .info-card .info-nome {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.6rem;
  }
  .cases .container .card-cases .card .info-card .info-nome h4 {
    font-size: 1.8rem;
  }
  .cases .container .card-cases .card .info-card .info-nome span {
    font-size: 1.4rem;
  }
}

.infinit {
  overflow-x: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 17rem;
  background-color: white;
}
.infinit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: move-left 60s linear infinite;
  animation: move-left 60s linear infinite;
}
.infinit ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
  white-space: nowrap;
}
.infinit ul li span {
  font-size: 13.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #e2e2e2be;
  margin-right: 10px;
}
.infinit ul li img {
  margin-top: -2.6rem;
  padding-left: 8rem;
  padding-right: 16rem;
}
@-webkit-keyframes move-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes move-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.process .container {
  padding-top: 10rem;
  padding-bottom: 14rem;
}
.process .container .title-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.process .container .title-info h2 {
  width: 100%;
  max-width: 41rem;
  font-size: 3.6rem;
  color: white;
  margin-bottom: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.process .container .title-info p {
  width: 100%;
  max-width: 48.9rem;
  font-size: 1.8rem;
  color: #DADADA;
}
.process .container .process-body {
  margin-top: 8rem;
}
.process .container .process-body ul {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.2rem;
}
.process .container .process-body ul li {
  background-color: #ffffff06;
  width: 100%;
  max-width: 37.4rem;
  height: 100%;
  max-height: 20rem;
  border: 2px solid #e4e4e449;
  padding: 3rem 3.6rem;
  border-radius: 0.8rem;
}
.process .container .process-body ul li .head-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}
.process .container .process-body ul li .head-info h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  font-size: 2rem;
  font-weight: 600;
}
.process .container .process-body ul li p {
  margin-top: 1.6rem;
  color: #DADADA;
  font-size: 1.6rem;
}
@media (max-width: 990px) {
  .process .container {
    padding-top: 8rem;
    padding-bottom: 12rem;
  }
  .process .container .title-info h2 {
    max-width: 36rem;
    font-size: 2.4rem;
  }
  .process .container .title-info p {
    max-width: 32rem;
    font-size: 1.6rem;
  }
  .process .container .process-body ul {
    grid-template-columns: repeat(2, 2fr);
  }
  .process .container .process-body ul li {
    max-width: 46.3rem;
  }
}
@media (max-width: 768px) {
  .process .container {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
  .process .container .title-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .process .container .title-info h2 {
    max-width: 60rem;
    text-align: center;
    font-size: 2.8rem;
  }
  .process .container .title-info p {
    max-width: 40rem;
    text-align: center;
    font-size: 1.5rem;
  }
  .process .container .process-body ul {
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 1.6rem;
  }
  .process .container .process-body ul li {
    padding: 2rem 2.4rem;
  }
  .process .container .process-body ul li p {
    margin-top: 1.6rem;
    color: #DADADA;
    font-size: 1.6rem;
  }
}
@media (max-width: 560px) {
  .process .container {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }
  .process .container .title-info h2 {
    font-size: 2.4rem;
  }
  .process .container .title-info p {
    font-size: 1.4rem;
  }
  .process .container .process-body {
    margin-top: 3.2rem;
    gap: 2rem;
  }
  .process .container .process-body ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .process .container .process-body ul li {
    padding: 2.4rem 2.8rem;
    max-width: 100%;
    max-height: auto;
  }
}
@media (max-width: 360px) {
  .process .container {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .process .container .title-info h2 {
    font-size: 2rem;
  }
  .process .container .title-info p {
    font-size: 1.4rem;
  }
  .process .container .process-body {
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
  .process .container .process-body ul li {
    padding: 2rem 2.4rem;
  }
  .process .container .process-body ul li .head-info {
    gap: 1.6rem;
  }
  .process .container .process-body ul li .head-info h5 {
    font-size: 1.8rem;
  }
  .process .container .process-body ul li p {
    font-size: 1.4rem;
  }
}

.depoiments {
  background-color: white;
  padding-bottom: 6rem;
  padding-top: 10rem;
}
.depoiments .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.depoiments .container h2 {
  width: 100%;
  max-width: 29.4rem;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #0F0F0F;
}
.depoiments .container p.apoio-dep {
  width: 100%;
  max-width: 53.2rem;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 4rem;
}
.depoiments .slide-coments {
  overflow-x: hidden;
  padding: 0rem 1.5rem;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 61rem;
  border-radius: 1.6rem;
  border: 2px solid #010101;
  padding: 3.5rem 2.2rem;
  height: auto;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide p {
  color: #0F0F0F;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 2.4rem;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments img {
  margin-right: 1rem;
  width: 4.8rem;
  height: 4.8rem;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo {
  width: 100%;
  max-width: 56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo .nome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80%;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo .nome h3 {
  font-size: 1.6rem;
  color: #010101;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo .nome span {
  font-size: 1.6rem;
  color: #28292F;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide .clientes-depoiments .name-and-cargo .star img {
  width: 1.8rem;
  margin-right: 0.4rem;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide.swiper-slide-active {
  background-color: #010101;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide.swiper-slide-active p {
  color: white;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide.swiper-slide-active .name-and-cargo .nome h3 {
  color: #D2F603;
}
.depoiments .slide-coments .swiper-wrapper .swiper-slide.swiper-slide-active .name-and-cargo .nome span {
  color: #ccc;
}
.depoiments .swipper-navegation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 4rem;
}
.depoiments .swipper-navegation .btn-next, .depoiments .swipper-navegation .btn-prev {
  cursor: pointer;
}
.depoiments .swipper-navegation .btn-next img, .depoiments .swipper-navegation .btn-prev img {
  width: 4rem;
  height: 4rem;
}
.depoiments .swipper-navegation .swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.depoiments .swiper-pagination {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: absolute;
  gap: 8px;
}
.depoiments .swiper-pagination-bullet {
  width: 0.8rem !important;
  height: 0.8rem !important;
  background: #010101 !important;
  -webkit-transition-property: width, background, border;
  transition-property: width, background, border;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.depoiments .swiper-pagination .swiper-pagination-bullet-active {
  width: 36px !important;
  height: 0.8rem !important;
  border-radius: 4px;
  background: #D2F603 !important;
}

.faq {
  background-color: white;
}
.faq .container {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.faq .container .body-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 18rem;
}
.faq .container .body-faq .left-area {
  width: 100%;
  max-width: 42.7rem;
}
.faq .container .body-faq .left-area h3 {
  color: #010101;
  font-size: 5.2rem;
  line-height: 130%;
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.faq .container .body-faq .left-area p {
  font-size: 1.8rem;
  margin-bottom: 16.5rem;
  font-weight: 500;
}
.faq .container .body-faq .right-area .faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 2.4rem 0;
  cursor: pointer;
}
.faq .container .body-faq .right-area .faq-item:last-child {
  border-bottom: none;
}
.faq .container .body-faq .right-area .faq-item.open .faq-answer {
  max-height: 30rem;
  padding-top: 1rem;
}
.faq .container .body-faq .right-area .faq-item .faq-question {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #010101;
}
.faq .container .body-faq .right-area .faq-item .faq-answer {
  font-family: "Plus Jakarta Sans", sans-serif;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding-top 0.4s ease;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  font-size: 1.4rem;
  font-weight: 400;
  color: #7d7d7d;
  padding-top: 0;
}
.faq .container .body-faq .right-area .faq-item .faq-icon {
  font-size: 1.6rem;
  font-weight: bold;
  color: #7d7d7d;
  padding-left: 2.4rem;
}
.faq .container .info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 35.6rem;
}
.faq .container .info-footer span {
  font-size: 1.6rem;
  color: #3D3E56;
  margin-bottom: 0.8rem;
}
.faq .container .info-footer a {
  color: #5F6074;
  font-size: 1.4rem;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq .container {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .faq .container .body-faq {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
  .faq .container .body-faq .left-area p {
    margin-bottom: 2rem;
  }
  .faq .container .info-footer {
    margin-top: 2rem;
    max-width: 76.8rem;
  }
}