html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  cursor: default;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
figcaption,
hr,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
input[type="text"],
textarea {
  width: 100%;
}
input,
textarea,
button {
  border: 1px solid gray;
}
button {
  padding: 0;
  line-height: inherit;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
button * {
  pointer-events: none;
}
img,
iframe,
video,
object,
embed {
  display: block;
  max-width: 100%;
}
svg {
  max-width: 100%;
}
table {
  table-layout: fixed;
  width: 100%;
}
[hidden] {
  opacity: 0;
  visibility: hidden;
}
noscript {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}
[tabindex="-1"] {
  outline: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
* {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
img {
  display: block;
  max-width: 100%;
}
a {
  margin: 0px;
  padding: 0px;
  display: block;
}
table {
  border-spacing: 0px;
}
button {
  border: none;
}
hr {
  border: none;
}
:root {
  --main: #f03906;
  --light: #fff;
  --sec: #4d9900;
  --sec2: #fb6100;
  --dark: #1f1f1f;
  --gradient: linear-gradient(to right, #fb6100 0%, #f03906 100%);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}
@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
html {
  font-size: 16px;
  font-family: "montserrat", sans-serif;
  color: var(--dark);
}
.view {
  transition: 0.6s;
}
a,
svg path,
button {
  transition: 0.3s;
}
.btn {
  background-color: var(--sec);
  box-shadow: 0 0 0 0 var(--sec2), 0 0 0 0 var(--sec2);
  border-radius: 15px;
  padding: 7px 17px;
  color: var(--light);
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.4em;
  max-width: fit-content;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.btn:hover {
  background-color: var(--sec2);
  box-shadow: 0 0 0 3px var(--light), 0 0 0 5px var(--sec2);
  transform: scale(1.02);
}
@media only screen and (max-width: 455px) {
  .btn {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4em;
    padding: 7px 14px;
  }
}
.js-section-scroll {
  transform: translate3d(150px, 0, 0);
  transition: 1.2s ease;
  opacity: 0;
}
.js-section-scroll.ativo {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1;
}
#detail1,
#detail3 {
  position: absolute;
  left: 0;
  top: 0;
  transition: 1.5s;
  z-index: -1;
}
#detail2 {
  position: absolute;
  right: 0;
  top: 0;
  transition: 1.5s;
  z-index: -1;
}
#modal {
  display: none;
  position: fixed;
  max-width: 500px;
  background-color: var(--light);
  z-index: 100;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
}
#modal #close {
  position: absolute;
  right: 0;
  z-index: 101;
  font-size: 1.5rem;
  background-color: var(--light);
  height: 35px;
  width: 35px;
  cursor: pointer;
  transition: 0.3s;
}
#modal #close:hover {
  background-color: var(--sec2);
  color: var(--light);
}
#modal.active {
  display: inherit;
}
@media only screen and (max-width: 630px) {
  #modal {
    right: inherit;
    transform: translate(0, 0);
    top: 0;
  }
}
#modal div span {
  font-size: 24px !important;
}
#modal button {
  height: 45px !important;
}
.header {
  padding: 35px 25px 10px;
}
.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 770px) {
  .header-grid {
    justify-content: center;
  }
}
.main {
  background: url(../img/main-bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 90px 25px;
}
@media only screen and (max-width: 500px) {
  .main {
    padding: 40px 25px 90px;
  }
}
.main-grid {
  display: grid;
  gap: 30px;
  justify-items: center;
  text-align: center;
  max-width: 1000px;
}
.main-grid h1 {
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4em;
  text-transform: uppercase;
  border-radius: 15px;
  padding: 10px;
}
.main-grid h3 {
  font-size: 3.4375rem;
  font-weight: 800;
  line-height: 1em;
}
.main-grid h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4em;
}
.main-grid h2 strong {
  color: var(--sec2);
}
@media only screen and (max-width: 500px) {
  .main-grid h1 {
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.4em;
    padding: 10px 5px;
  }
  .main-grid h3 {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1em;
  }
  .main-grid h2 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.numeros {
  background-color: var(--sec2);
  padding: 40px 25px;
}
.numeros-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px 40px;
}
@media only screen and (max-width: 760px) {
  .numeros-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.um-numero {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 300px;
  color: var(--light);
}
.um-numero div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.um-numero div p,
.um-numero div h3 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1em;
}
.um-numero div h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
}
@media only screen and (max-width: 320px) {
  .um-numero div p,
  .um-numero div h3 {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1em;
  }
  .um-numero div h4 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1em;
  }
}
.politica p,
.termos p {
  margin-top: 10px;
}
.politica h3,
.termos h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}
.politica ul,
.termos ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
.politica ul li,
.termos ul li {
  text-indent: 50px;
}
.politica h2,
.termos h2 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}
.politica,
.termos {
  padding: 10px 10px;
}
.digitalmix {
  text-align: center;
  color: #f2f2f280;
  background-color: #121412;
  padding: 30px 10px;
}
.digitalmix-grid {
  display: grid;
  gap: 15px;
}
.digitalmix-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.digitalmix-grid > p,
.digitalmix-grid > div > p {
  font-size: 1rem !important;
}
@media only screen and (max-width: 360px) {
  .digitalmix-grid > div {
    display: grid;
    justify-items: center;
    gap: 10px;
  }
}
.sistema {
  padding: 80px 25px;
  position: relative;
}
.sistema-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sistema-grid > img:not(#delivery) {
  max-width: 450px;
  filter: drop-shadow(0 0 15px var(--main));
}
@media only screen and (max-width: 470px) {
  .sistema-grid > img:not(#delivery) {
    max-width: 280px;
    width: 100%;
  }
}
.crescimento {
  justify-content: end;
}
#delivery {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 1150px) {
  #delivery {
    display: none;
  }
}
.sistema-content {
  display: grid;
  gap: 25px;
  text-align: right;
  max-width: 700px;
  justify-items: end;
}
.sistema-content > h2 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 7px;
}
.sistema-content h3 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1em;
}
.sistema-content > p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
.sistema-content h6 {
  color: var(--main);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4em;
  font-style: italic;
}
@media only screen and (max-width: 470px) {
  .sistema-content h2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4em;
  }
  .sistema-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1em;
  }
  .sistema-content p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
  }
  .sistema-content h6 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.investir {
  display: grid;
  justify-items: end;
  gap: 30px;
}
.investir-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 460px) {
  .investir-item img {
    max-width: 40px;
  }
}
.investir-item div {
  display: grid;
  max-width: fit-content;
  justify-items: end;
  gap: 5px;
  max-width: 342px;
}
.investir-item div h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4em;
}
.investir-item div p {
  font-weight: 500;
}
@media only screen and (max-width: 460px) {
  .investir-item div h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4em;
  }
}
.investir-item div span {
  width: 200px;
  height: 1px;
  background-color: var(--main);
  display: block;
}
@media only screen and (max-width: 460px) {
  .investir-item div span {
    width: 180px;
    height: 1px;
    background-color: var(--main);
    display: block;
  }
}
.funcional {
  padding: 0 25px 80px;
  position: relative;
}
.funcional-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap-reverse;
}
.funcional-grid > img {
  filter: drop-shadow(0 0 15px var(--main));
}
@media only screen and (max-width: 470px) {
  .funcional-grid > img {
    max-width: 280px;
    width: 100%;
  }
}
.funcional-content {
  display: grid;
  gap: 25px;
  max-width: 580px;
}
.funcional-content h2 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 7px;
}
.funcional-content h4 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1em;
}
.funcional-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
.funcional-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
  overflow: hidden;
}
@media only screen and (max-width: 500px) {
  .funcional-content ul {
    grid-template-columns: 1fr;
  }
}
.funcional-content ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  max-width: fit-content;
}
@media only screen and (max-width: 470px) {
  .funcional-content h2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4em;
  }
  .funcional-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1em;
  }
  .funcional-content h3 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.video {
  padding: 50px 25px;
  position: relative;
}
.video-grid {
  display: grid;
  justify-items: center;
  gap: 25px;
  text-align: center;
}
.video-grid .js-section-scroll {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.video-grid .js-section-scroll::after {
  width: 0;
  height: 6px;
  background-color: rgba(255, 34, 0, 0.137255);
  display: block;
  border-radius: 10px;
  content: "";
  position: absolute;
  right: 3px;
  bottom: 0;
  transition: 0.8s;
}
.video-grid .js-section-scroll.ativo::after {
  width: 190px;
}
.video-grid h3 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 7px;
}
.video-grid h4 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1em;
  position: relative;
}
.video-grid h4::after {
  width: 190px;
  height: 6px;
  background-color: rgba(255, 34, 0, 0.137255);
  display: block;
  border-radius: 10px;
  content: "";
  position: absolute;
  right: 3px;
  bottom: 0;
}
@media only screen and (max-width: 340px) {
  .video-grid h4 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.1em;
  }
}
.video-grid p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
  max-width: 590px;
}
@media only screen and (max-width: 340px) {
  .video-grid p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.video-grid iframe {
  margin: 20px 0;
  max-width: 896px;
  width: 100%;
  border-radius: 48px;
  height: 424px;
}
@media only screen and (max-width: 460px) {
  .video-grid iframe {
    border-radius: 20px;
    height: 240px;
  }
}
.clientes {
  padding: 40px 0;
  background-color: var(--main);
}
.clientes-grid {
  display: grid;
  gap: 30px;
  color: var(--light);
}
.clientes-content {
  padding: 0 10px;
  max-width: 473px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
}
.clientes-content h2 {
  width: 100%;
  background-color: #f05e35;
  max-width: 173px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  border-radius: 7px;
}
.clientes-content h3 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1em;
}
.clientes-content p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
@media only screen and (max-width: 310px) {
  .clientes-content h3 {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.1em;
  }
  .clientes-content p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4em;
  }
}
.moving {
  background: url(../img/moving.png) repeat-x left center;
  box-shadow: 10px 0 10px -10px var(--main) inset,
    -10px 0 10px -10px var(--main) inset;
  height: 200px;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.568627));
}
.faq {
  padding: 80px 25px;
  background: url(../img/faq-bg.webp) no-repeat center center;
  background-size: cover;
  position: relative;
}
.faq h4 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 7px;
  max-width: 102px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  text-align: center;
}
.faq h3 {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1em;
  margin: 0 auto;
  text-align: center;
}
.faq p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
  margin: 0 auto;
  text-align: center;
}
.faq-question {
  background-color: var(--light);
  color: var(--dark);
  border-bottom: 2px solid var(--main);
  padding: 14px 20px;
  padding-right: 50px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1em;
  transition: 0.3s;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 430px) {
  .faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1em;
  }
}
.faq-answer {
  padding: 20px;
  position: absolute;
  background-color: #ffffff1a;
  transition: 0.3s;
  color: var(--light2);
  font-weight: 500;
}
@media only screen and (max-width: 415px) {
  .faq-answer {
    font-size: 0.9375rem;
    padding: 20px 10px;
  }
}
.faq-item {
  overflow: hidden;
  position: relative;
  z-index: 10;
  transition: 0.3s;
}
.faq-item.expanded .faq-answer {
  bottom: 0;
  top: inherit;
}
.faq-item.expanded .faq-question {
  background-color: var(--main);
  color: var(--light);
  border-radius: 10px 10px 0px 0px;
}
.faq-item.expanded {
  padding-bottom: 90px;
  box-shadow: 0px 0px 0px 1px var(--main), 0px 0px 10px #000;
  border-radius: 11px;
}
.faq-item.expanded .mda .mais {
  transform: rotate(-90deg);
}
.faq-item.expanded .mda .menos {
  opacity: 1;
  transform: rotate(0);
}
.faq-guarda {
  position: relative;
}
.faq-grid {
  display: grid;
  gap: 20px;
}
.mda {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--main);
  transition: 0.3s;
}
.mda .menos {
  transition: 0.3s;
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
  z-index: 10;
}
.mda .mais {
  transition: 0.3s;
}
.suporte {
  background: url(../img/suporte-bg.webp) no-repeat center center;
  background-size: cover;
  padding: 120px 25px;
  position: relative;
}
.suporte > img {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 815px) {
  .suporte > img {
    display: none;
  }
}
@media only screen and (max-width: 815px) {
  .suporte {
    padding: 70px 25px;
  }
}
.suporte-grid {
  display: grid;
  justify-items: end;
  text-align: end;
  gap: 20px;
}
.suporte-grid h2 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4em;
  background: var(--gradient);
  max-width: fit-content;
  color: var(--light);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 7px;
}
.suporte-grid h3 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4em;
}
.suporte-grid p {
  max-width: 620px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4em;
}
.footer {
  padding: 60px 25px;
}
.footer-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  font-weight: 500;
}
.redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.redes a:hover {
  transform: scale(1.08);
}
