* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "NotoSans";
  src: url("../../assets/fonts/Noto_Sans/static/NotoSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NotoSans";
  src: url("../../assets/fonts/Noto_Sans/static/NotoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/* Fonte Quantico normal */
@font-face {
  font-family: "Quantico";
  src: url("../../assets/fonts/Quantico/Quantico-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Fonte Quantico bold */
@font-face {
  font-family: "Quantico";
  src: url("../../assets/fonts/Quantico/Quantico-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
header {
  width: 100%;
  height: 15.625rem;
  background: #00040c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 6.25rem;
}
header #logoMenu {
  width: 17.5rem;
  height: auto;
  display: block;
  overflow: hidden;
}
header #logoMenu > a {
  height: 100%;
  display: block;
}
header #logoMenu > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
header #menuMobile {
  display: none;
}
header #menu > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
}
header #menu > ul li a {
  font-family: "Quantico";
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  display: block;
  position: relative;
}
header #menu > ul li.normalItens a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  height: 2px;
  background: #07e9eb;
  transition: all 100ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
header #menu > ul li.normalItens a:hover::before {
  width: 100%;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
header #menu > ul li.ctaMenu {
  border: 2px solid #07e9eb;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
header #menu > ul li.ctaMenu a {
  width: 100%;
  height: 100%;
  padding: 1rem 1.5rem;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
header #menu > ul li.ctaMenu:hover {
  background: #07e9eb;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
header #menu > ul li.ctaMenu:hover a {
  color: #00040c;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

@media screen and (max-width: 1400px) {
  header {
    padding: 3rem;
  }
  header #logoMenu {
    width: 12rem;
  }
  header #menu > ul li a {
    font-size: 1rem;
    line-height: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  header {
    height: 5rem;
    padding: 0 1rem;
  }
  header #menuMobile {
    display: block;
    background: transparent;
    border: none;
    font-size: 3rem;
    cursor: pointer;
  }
  header #menuMobile > i {
    color: #fff;
  }
  header #menu {
    width: 0;
    max-width: 20rem;
    overflow: hidden;
    position: fixed;
    top: 5rem;
    height: 100vh;
    right: 0;
    background: #00040c;
    z-index: 99;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  }
  header #menu > ul {
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem;
  }
  header #menu > ul .ctaMenu {
    width: 230px;
  }
  header #menu.menu-open {
    width: 80%;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  }
}
#footer {
  padding: 2rem 6.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer #logoFoter {
  width: 17.5rem;
  height: auto;
  display: block;
  overflow: hidden;
}
#footer #logoFoter > a {
  height: 100%;
  display: block;
}
#footer #logoFoter > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .listSocial {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
#footer .listSocial > li > a {
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
}
#footer .listSocial > li > a:hover {
  color: #07e9eb;
}
#footer > p {
  width: 400px;
  font-size: 0.75rem;
}

@media screen and (max-width: 1400px) {
  #footer {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 1400px) {
  #footer {
    padding: 2rem 1rem;
    flex-direction: column;
    gap: 2rem;
  }
  #footer > p {
    text-align: center;
  }
}
#section01 {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(7, 12, 20, 0) 0%, rgb(7, 12, 20) 100%);
}
#section01 #bg01 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
#section01 #bg01 > img {
  object-fit: contain;
  object-position: center;
  width: 90%;
  height: 100%;
}
#section01 .ContainerCols {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0 6.25rem;
  z-index: 1;
}
#section01 .ContainerCols .col01 {
  padding: 6rem 0;
  width: 50%;
}
#section01 .ContainerCols .col01 .title {
  font-size: 3rem;
  font-family: "Quantico";
  font-weight: normal;
  line-height: 1.1em;
  margin: 4rem 0;
}
#section01 .ContainerCols .col01 .title > span {
  color: #07e9eb;
}
#section01 .ContainerCols .col01 .title .titleStrong {
  font-weight: bold;
  font-size: 3.75rem;
  line-height: 1.5em;
}
#section01 .ContainerCols .col01 .subTitle {
  font-size: 2rem;
  font-family: "Quantico";
  font-weight: normal;
  line-height: 1.1em;
}
#section01 .ContainerCols .col01 > p {
  width: 80%;
  font-size: 1.5rem;
  margin-bottom: 4rem;
}
#section01 .ContainerCols .col01 .containButtonBanner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  width: auto;
  height: 4rem;
}
#section01 .ContainerCols .col01 .containButtonBanner span {
  border: 2px solid #07e9eb;
  height: 4rem;
  display: flex;
  align-items: center;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
#section01 .ContainerCols .col01 .containButtonBanner .iconBt {
  background: linear-gradient(45deg, rgb(28, 35, 47) 0%, rgb(44, 49, 57) 100%);
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 50%;
  border: 1px solid #07e9eb;
  color: #07e9eb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}
#section01 .ContainerCols .col01 .containButtonBanner:hover span {
  color: #00040c;
  background: #07e9eb;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
#section01 .ContainerCols .col02 {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#section01 .ContainerCols .col02 .paralaxMsg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
#section01 .ContainerCols .col02 .paralaxMsg .msg {
  border: 1px solid #07e9eb;
  border-radius: 8px;
  text-wrap: nowrap;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 1rem;
  color: #fff;
  position: absolute;
  transform-origin: center;
  perspective: 1000px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite;
}
#section01 .ContainerCols .col02 .paralaxMsg .msg.msg01 {
  top: 20%;
  left: 60%;
  transform: matrix3d(1, 0, 0, 0, -0.6, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate3d(1, 1, 1, -3deg);
}
#section01 .ContainerCols .col02 .paralaxMsg .msg.msg02 {
  top: 45%;
  left: 15%;
  transform: matrix3d(1, 0, 0, 0, -0.6, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate3d(1, 1, 1, -3deg);
}
#section01 .ContainerCols .col02 .paralaxMsg .msg.msg03 {
  top: 55%;
  left: 53%;
  transform: matrix3d(1, 0, 0, 0, -0.6, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) rotate3d(1, 1, 1, -3deg);
}
#section01 .ContainerCols .col02 .chip {
  width: 17rem;
  height: 8rem;
  position: absolute;
  top: 15%;
  left: 8%;
}
#section01 .ContainerCols .col02 .chip > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#section01 .ContainerCols .col02 .cell {
  width: 100%;
  height: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  z-index: 3;
}
#section01 .ContainerCols .col02 .cell > img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#section01 .ContainerCols .col02 .circle {
  width: 90%;
  height: 90%;
  position: absolute;
  bottom: -2rem;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#section01 .ContainerCols .col02 .circle > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#section01 .ContainerCols .col02 .x {
  position: absolute;
  width: 20px;
  height: 20px;
}
#section01 .ContainerCols .col02 .x > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#section01 .ContainerCols .col02 .x01 {
  bottom: 40%;
  right: 6%;
}
#section01 .ContainerCols .col02 .x02 {
  bottom: 0;
  left: 18%;
}

@media screen and (max-width: 1400px) {
  #section01 .ContainerCols {
    padding: 0 3rem;
  }
  #section01 .ContainerCols .col01 .title {
    font-size: 2rem;
  }
  #section01 .ContainerCols .col01 .title .titleStrong {
    font-size: 2.75rem;
  }
  #section01 .ContainerCols .col01 .subTitle {
    font-size: 1.5rem;
  }
  #section01 .ContainerCols .col01 > p {
    width: 100%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  #section01 .ContainerCols {
    padding: 0 1rem;
    flex-direction: column;
  }
  #section01 .ContainerCols .col01 {
    padding: 3rem 0;
    width: 100%;
  }
  #section01 .ContainerCols .col01 .title {
    font-size: 2rem;
  }
  #section01 .ContainerCols .col01 .title .titleStrong {
    font-size: 2.75rem;
  }
  #section01 .ContainerCols .col01 .subTitle {
    font-size: 1.5rem;
  }
  #section01 .ContainerCols .col01 > p {
    width: 100%;
    font-size: 1.5rem;
  }
  #section01 .ContainerCols .col02 {
    width: 100%;
  }
}
#section02 {
  padding: 4rem 6.25rem;
}
#section02 .subTitle {
  width: 100%;
  font-size: 2rem;
  font-family: "Quantico";
  font-weight: normal;
  line-height: 1.1em;
  text-align: center;
  margin-bottom: 6.25rem;
}
#section02 #listaDesafios {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  list-style: none;
}
#section02 #listaDesafios li {
  width: calc(33.333% - 2rem);
  border: 1px solid #07e9eb;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(7, 233, 235, 0.3) 100%);
  border-radius: 8px;
  padding: 3.75rem 9rem 1rem 1rem;
  position: relative;
}
#section02 #listaDesafios li .num {
  width: 3.75rem;
  height: 3.75rem;
  background: #070c14;
  border: 1px solid #07e9eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: #07e9eb;
  font-family: "Quantico";
  font-weight: 600;
  line-height: 1em;
  position: absolute;
  top: -2rem;
}
#section02 #listaDesafios li h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-family: "NotoSans";
  font-weight: 600;
  line-height: 1.1em;
}
#section02 #listaDesafios li p {
  font-size: 1rem;
}
#section02 .btnCta {
  padding: 1rem 1.5rem;
  background: #07e9eb;
  display: table;
  width: auto;
  font-size: 1.5rem;
  margin: 4rem auto;
  text-decoration: none;
  color: #070c14;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  border: 1px solid transparent;
  text-align: center;
}
#section02 .btnCta:hover {
  background: transparent;
  color: #07e9eb;
  border: 1px solid #07e9eb;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

@media screen and (max-width: 1400px) {
  #section02 {
    padding: 4rem 3rem;
  }
  #section02 .subTitle {
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }
  #section02 #listaDesafios {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
  }
  #section02 #listaDesafios li {
    padding: 3.75rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 1240px) {
  #section02 #listaDesafios li {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 1000px) {
  #section02 #listaDesafios li {
    width: 100%;
  }
}
#section03 {
  padding: 4rem 6.25rem;
}
#section03 h2 {
  width: 100%;
  font-size: 3.75rem;
  font-family: "Quantico";
  font-weight: normal;
  line-height: 1.1em;
  text-align: center;
  margin-bottom: 6.25rem;
  color: #07e9eb;
}
#section03 #listaFerramentas {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
  padding: 0 10rem;
  margin-bottom: 2rem;
}
#section03 #listaFerramentas li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  overflow: hidden;
}
#section03 #listaFerramentas li > span {
  z-index: 1;
  position: relative;
  display: block;
  color: #fff;
  background: #070c14;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  padding: 1rem 3rem;
  border-radius: 4rem;
  white-space: nowrap;
}
#section03 #listaFerramentas li > div {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, rgb(19, 55, 68) 0%, rgb(7, 233, 235) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#section03 .boxImgPc {
  width: 100%;
  height: auto;
  position: relative;
}
#section03 .boxImgPc > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center;
}
#section03 .boxImgPc .boxText {
  width: 38%;
  position: absolute;
  top: 0;
  right: 0;
}
#section03 .boxImgPc .boxText > h3 {
  font-size: 4rem;
  color: #fff;
  font-weight: 100;
  font-family: "Quantico";
  text-align: right;
  margin: 3rem 0 2.5rem;
}
#section03 .boxImgPc .boxText > h3 > span {
  color: #07e9eb;
  font-weight: bold;
}
#section03 .boxImgPc .boxText p {
  text-align: right;
  font-size: 1.5rem;
}
#section03 .boxImgPc .boxText .ctaQuero {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: auto;
  text-decoration: none;
  border: 1px solid #07e9eb;
  width: 230px;
  height: 60px;
  color: #fff;
  border-radius: 6px;
  gap: 1rem;
  float: right;
  margin-top: 3rem;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
#section03 .boxImgPc .boxText .ctaQuero > div {
  width: 36px;
  height: 36px;
  border: 1px solid #07e9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #07e9eb;
  background: #070c14;
}
#section03 .boxImgPc .boxText .ctaQuero:hover {
  background: #07e9eb;
  color: #070c14;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

@media screen and (max-width: 1830px) {
  #section03 .boxImgPc > img {
    width: 60%;
  }
  #section03 .boxImgPc .boxText {
    width: 40%;
  }
}
@media screen and (max-width: 1740px) {
  #section03 #listaFerramentas {
    padding: 0;
  }
  #section03 .boxImgPc {
    min-height: 500px;
  }
  #section03 .boxImgPc > img {
    width: 40%;
  }
  #section03 .boxImgPc .boxText {
    width: 60%;
  }
}
@media screen and (max-width: 1480px) {
  #section03 {
    padding-bottom: 6rem;
  }
  #section03 .boxImgPc > img {
    width: 40%;
  }
  #section03 .boxImgPc .boxText {
    width: 60%;
    position: relative;
    float: right;
  }
}
@media screen and (max-width: 1400px) {
  #section03 {
    padding: 0 3rem 6rem;
  }
  #section03 > h2 {
    font-size: 2.75rem;
  }
  #section03 #listaFerramentas li > span {
    font-size: 1rem;
  }
  #section03 .boxImgPc .boxText > h3 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1232px) {
  #section03 {
    padding-bottom: 10rem;
  }
  #section03 #listaFerramentas {
    padding: 0;
  }
  #section03 .boxImgPc {
    min-height: 500px;
  }
  #section03 .boxImgPc > img {
    width: 100%;
  }
  #section03 .boxImgPc .boxText {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  #section03 .boxImgPc .boxText > h3 {
    width: 40rem;
  }
}
@media screen and (max-width: 1000px) {
  #section03 {
    padding: 0 1rem 10rem;
  }
  #section03 > h2 {
    font-size: 2.5rem;
  }
  #section03 #listaFerramentas li > span {
    text-align: center;
    font-size: 1rem;
  }
  #section03 .boxImgPc > img {
    width: 100%;
  }
  #section03 .boxImgPc .boxText {
    width: 100%;
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #section03 .boxImgPc .boxText > h3 {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
  }
  #section03 .boxImgPc .boxText > p {
    text-align: center;
  }
  #section03 .boxImgPc .boxText .ctaQuero {
    float: none;
  }
}
#section04 {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0rem 6.25rem;
}
#section04 .iconTR {
  width: 600px;
  top: 0;
  right: -300px;
  position: absolute;
  z-index: -1;
}
#section04 .iconTR > img {
  transform: rotate(90deg);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#section04 .iconBL {
  width: 600px;
  bottom: 0;
  left: -300px;
  position: absolute;
  z-index: -1;
}
#section04 .iconBL > img {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#section04 .boxListWhite {
  width: 100%;
  height: auto;
  background: #fff;
  z-index: 2;
  display: block;
  border-radius: 0 1rem 0 1rem;
  padding: 2rem;
}
#section04 .boxListWhite h2,
#section04 .boxListWhite h3 {
  color: #070c14;
  text-align: center;
}
#section04 .boxListWhite h2 {
  font-size: 2.5rem;
}
#section04 .boxListWhite h3 {
  font-size: 3.75rem;
  margin-bottom: 1rem;
}
#section04 .boxListWhite .list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 1rem;
  margin: 3rem 0;
}
#section04 .boxListWhite .list > li {
  border: 1px solid #07e9eb;
  padding: 1.5rem;
  border-radius: 4px;
  background: linear-gradient(45deg, rgb(7, 233, 235) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  min-height: 550px;
}
#section04 .boxListWhite .list > li .boxIcon {
  width: 80px;
  height: 80px;
  border: 1px solid #070c14;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #070c14;
}
#section04 .boxListWhite .list > li > h4 {
  margin: 2rem 0;
  font-weight: 600;
  font-size: 2rem;
  color: #070c14;
}
#section04 .boxListWhite .list > li > p {
  color: #070c14;
  font-size: 1.5rem;
}

@media screen and (max-width: 1400px) {
  #section04 {
    padding: 0 3rem;
  }
  #section04 .boxListWhite h2 {
    font-size: 2rem;
  }
  #section04 .boxListWhite h3 {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 1185px) {
  #section04 {
    padding: 0 3rem;
  }
  #section04 .boxListWhite h2 {
    font-size: 2rem;
  }
  #section04 .boxListWhite h3 {
    font-size: 2.75rem;
  }
  #section04 .boxListWhite .list {
    grid-template-columns: repeat(2, 1fr);
    margin: 2rem 0;
  }
  #section04 .boxListWhite .list > li {
    min-height: 300px;
  }
  #section04 .boxListWhite .list > li > h4 {
    font-size: 1.75rem;
  }
  #section04 .boxListWhite .list > li > p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  #section04 {
    padding: 0 1rem;
  }
  #section04 .boxListWhite h2 {
    font-size: 2rem;
  }
  #section04 .boxListWhite h3 {
    font-size: 2.75rem;
  }
  #section04 .boxListWhite .list {
    grid-template-columns: repeat(1, 1fr);
    margin: 2rem 0;
  }
  #section04 .boxListWhite .list > li {
    min-height: 300px;
  }
  #section04 .boxListWhite .list > li > h4 {
    font-size: 1.75rem;
  }
  #section04 .boxListWhite .list > li > p {
    font-size: 1.5rem;
  }
}
#section05 {
  position: relative;
  overflow: hidden;
  height: 1500px;
}
#section05 .bg02 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
#section05 .bg02 > img {
  object-fit: contain;
  object-position: center;
  width: 90%;
  height: 100%;
}
#section05 .containImgs {
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  height: 1130px;
}
#section05 .containImgs #tela01 {
  width: 461px;
  position: absolute;
  top: 0;
  left: 6.25rem;
}
#section05 .containImgs #tela01 > img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#section05 .containImgs #tela02 {
  width: 571px;
  position: absolute;
  top: 100px;
  left: calc(6.25rem + 300px);
}
#section05 .containImgs #tela02 > img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#section05 .containImgs #mao {
  width: 60%;
  position: absolute;
  right: 0;
  bottom: 50px;
}
#section05 .containImgs #mao > img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#section05 .boxText {
  width: 38%;
  position: absolute;
  top: 4rem;
  right: 6.25rem;
}
#section05 .boxText > h3 {
  font-size: 4rem;
  color: #fff;
  font-weight: 100;
  font-family: "Quantico";
  text-align: right;
  margin: 3rem 0 2.5rem;
}
#section05 .boxText > h3 > span {
  color: #07e9eb;
  font-weight: bold;
}
#section05 .boxText p {
  text-align: right;
  font-size: 1.5rem;
}
#section05 .boxText .ctaQuero {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: auto;
  text-decoration: none;
  border: 1px solid #07e9eb;
  width: 230px;
  height: 60px;
  color: #fff;
  border-radius: 6px;
  gap: 1rem;
  float: right;
  margin-top: 3rem;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
#section05 .boxText .ctaQuero > div {
  width: 36px;
  height: 36px;
  border: 1px solid #07e9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #07e9eb;
  background: #070c14;
}
#section05 .boxText .ctaQuero:hover {
  background: #07e9eb;
  color: #070c14;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
#section05 .miniSection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 24rem;
  background: linear-gradient(to right, #070c14 0%, rgb(255, 255, 255) 10%, rgb(255, 255, 255) 90%, #070c14 100%);
}
#section05 .miniSection > h3 {
  color: #070c14;
  font-family: "Quantico";
  font-weight: 100;
  font-size: 2.5rem;
  text-align: center;
}
#section05 .miniSection > h3 > span {
  font-weight: bold;
}

@media screen and (max-width: 1700px) {
  #section05 .containImgs #tela01 {
    width: 361px;
  }
  #section05 .containImgs #tela02 {
    width: 471px;
    left: calc(6.25rem + 200px);
  }
  #section05 .containImgs #mao {
    right: -30px;
    bottom: 0px;
  }
  #section05 .miniSection {
    padding: 1rem 12rem;
  }
}
@media screen and (max-width: 1400px) {
  #section05 .containImgs #tela01 {
    width: 361px;
    left: 3rem;
  }
  #section05 .containImgs #tela02 {
    width: 471px;
    left: calc(3rem + 200px);
  }
  #section05 .containImgs #mao {
    right: -30px;
    bottom: 0px;
  }
  #section05 .boxText {
    width: 40%;
    position: absolute;
    top: 4rem;
    right: 3rem;
  }
  #section05 .boxText > h3 {
    font-size: 2.75rem;
  }
  #section05 .boxText p {
    text-align: right;
    font-size: 1.5rem;
  }
  #section05 .miniSection {
    padding: 1rem 12rem;
  }
}
@media screen and (max-width: 1300px) {
  #section05 {
    height: 1200px;
  }
  #section05 .containImgs #tela01 {
    width: 261px;
    left: 3rem;
  }
  #section05 .containImgs #tela02 {
    width: 300px;
    left: calc(3rem + 100px);
  }
  #section05 .containImgs #mao {
    right: -30px;
    bottom: 200px;
  }
  #section05 .boxText {
    width: 50%;
    position: absolute;
    top: 4rem;
    right: 3rem;
  }
  #section05 .boxText > h3 {
    font-size: 2.75rem;
  }
  #section05 .boxText p {
    text-align: right;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  #section05 {
    height: 1600px;
  }
  #section05 .containImgs {
    height: 800px;
  }
  #section05 .containImgs #tela01 {
    width: 261px;
    left: 1rem;
  }
  #section05 .containImgs #tela02 {
    width: 370px;
    left: calc(1rem + 100px);
  }
  #section05 .containImgs #mao {
    right: -30px;
    bottom: 200px;
  }
  #section05 .boxText {
    width: 100%;
    top: 900px;
    right: 0;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #section05 .boxText > h3 {
    font-size: 2.75rem;
    text-align: center;
  }
  #section05 .boxText p {
    text-align: center;
    font-size: 1.5rem;
  }
  #section05 .boxText .ctaQuero {
    float: none;
  }
  #section05 .miniSection {
    padding: 1rem 1.5rem;
  }
  #section05 .miniSection > h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 860px) {
  #section05 {
    height: 1700px;
  }
}
@media screen and (max-width: 660px) {
  #section05 {
    height: 1800px;
  }
}
@media screen and (max-width: 560px) {
  #section05 {
    height: 1900px;
  }
}
@media screen and (max-width: 500px) {
  #section05 {
    height: 2100px;
  }
}
#section06 {
  overflow: hidden;
  position: relative;
  min-height: 800px;
}
#section06 #bg03 {
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
#section06 #bg03 > img {
  object-fit: cover;
  object-position: center;
  width: calc(100% + 100px);
  height: 100%;
}
#section06 .boxText {
  width: 40%;
  position: absolute;
  top: 4rem;
  left: 6.25rem;
}
#section06 .boxText > h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 100;
  font-family: "Quantico";
  text-align: left;
  margin: 3rem 0 2.5rem;
}
#section06 .boxText > h3 > span {
  color: #07e9eb;
  font-weight: bold;
}
#section06 .boxText p {
  text-align: left;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}
#section06 .boxText .containButtonBanner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  width: 426.3px;
  height: 4rem;
  flex-shrink: 1;
}
#section06 .boxText .containButtonBanner span {
  border: 2px solid #07e9eb;
  height: 4rem;
  display: flex;
  align-items: center;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
#section06 .boxText .containButtonBanner .iconBt {
  background: linear-gradient(45deg, rgb(28, 35, 47) 0%, rgb(44, 49, 57) 100%);
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 50%;
  border: 1px solid #07e9eb;
  color: #07e9eb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
}
#section06 .boxText .containButtonBanner:hover span {
  color: #00040c;
  background: #07e9eb;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}

@media screen and (max-width: 1400px) {
  #section06 #bg03 {
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }
  #section06 #bg03 > img {
    object-fit: contain;
    object-position: bottom;
    height: 100%;
  }
  #section06 .boxText {
    width: 60%;
    position: absolute;
    top: 4rem;
    left: 3rem;
  }
  #section06 .boxText > h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: 100;
    font-family: "Quantico";
    text-align: left;
    margin: 3rem 0 2.5rem;
  }
  #section06 .boxText > h3 > span {
    color: #07e9eb;
    font-weight: bold;
  }
  #section06 .boxText p {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
  #section06 .boxText .containButtonBanner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    width: auto;
    height: 4rem;
  }
  #section06 .boxText .containButtonBanner span {
    border: 2px solid #07e9eb;
    height: 4rem;
    display: flex;
    align-items: center;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  #section06 .boxText .containButtonBanner .iconBt {
    background: linear-gradient(45deg, rgb(28, 35, 47) 0%, rgb(44, 49, 57) 100%);
    width: 3.85rem;
    height: 3.85rem;
    border-radius: 50%;
    border: 1px solid #07e9eb;
    color: #07e9eb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    flex-shrink: 0;
  }
  #section06 .boxText .containButtonBanner:hover span {
    color: #00040c;
    background: #07e9eb;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
  }
}
@media screen and (max-width: 1000px) {
  #section06 .boxText {
    width: 100%;
    left: 0;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #section06 .boxText > h3 {
    text-align: center;
  }
}
#section07 {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
#section07 #bg04 {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#section07 #bg04 > img {
  object-fit: contain;
  width: 100%;
  object-position: right;
}
#section07 #bg05 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 20%;
}
#section07 #bg05 > img {
  object-fit: contain;
  width: 100%;
  object-position: left;
}
#section07 .containerCols {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 6.25rem 4rem;
  gap: 6.25rem;
}
#section07 .containerCols .colLogo {
  display: block;
}
#section07 .containerCols .col-50 {
  width: 50%;
}
#section07 .containerCols .col-50 .logoIAuto {
  width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 4rem;
}
#section07 .containerCols .col-50 > h3 {
  color: #07e9eb;
  font-family: "Quantico";
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
}
#section07 .containerCols .col-50 .accordion {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
#section07 .containerCols .col-50 .accordion-item {
  border: 1px solid #07e9eb;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
#section07 .containerCols .col-50 .accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  background: transparent;
  padding: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
}
#section07 .containerCols .col-50 .accordion .accordion-header .containIcon {
  border: 1px solid #07e9eb;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
#section07 .containerCols .col-50 .accordion .accordion-header .containIcon i {
  color: #07e9eb;
  transition: transform 0.3s ease-in-out;
}
#section07 .containerCols .col-50 .accordion .accordion-header.active .containIcon i {
  transform: rotate(90deg);
}
#section07 .containerCols .col-50 .accordion-content {
  display: none;
  padding: 15px;
  background: transparent;
}
.active + #section07 .containerCols .col-50 .accordion-content {
  display: block;
}

@media screen and (max-width: 1400px) {
  #section07 .containerCols {
    padding: 0 3rem 4rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  #section07 .containerCols {
    padding: 0 1rem 4rem;
    gap: 1rem;
  }
  #section07 .containerCols .colLogo {
    display: none !important;
  }
  #section07 .containerCols .col-50 {
    width: 100%;
  }
}
body {
  font-family: "NotoSans";
  color: #fff;
  background-color: #070c14;
  line-height: 1.4;
  position: relative;
  height: auto;
}

/*# sourceMappingURL=style.css.map */
