.header {
  background-color: rgb(9, 36, 79);
  padding: 32px 0;
  position: sticky;
  top: 0;
  z-index: 999999;
}
.header .row {
  align-items: center;
}
.header .top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 0;
  list-style: none;
}
.header .top-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 100%;
}
.header .top-menu .menu-item a svg {
  margin-left: 5px;
  transition: rotate 0.3s ease-in-out;
}
.header .top-menu .menu-item .sub-menu {
  margin-bottom: 0;
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 15px;
  z-index: 999;
}
.header .top-menu .menu-item .sub-menu li a {
  color: #09244F;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 100%;
}
.header .top-menu .menu-item:hover .sub-menu {
  display: flex;
}
.header .top-menu .menu-item:hover svg {
  rotate: 180deg;
}
.header .botao-verde {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .search-holder .icon-search {
  cursor: pointer;
  z-index: 99;
}
.header .search-holder .icon-search .icon-close {
  display: none;
}
.header .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 0.1s ease-in-out;
  width: 670px;
}
.header .search-holder .search-form-holder.active {
  width: 670px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .search-holder .search-form-holder .search-form label {
  width: 290px;
}
.header .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  height: 40px;
  padding: 10px 20px;
}
.header .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}
.header .search-holder .search-form-holder .search-form .search-submit svg path {
  stroke: #05d758;
}
.header .header-mobile .mobile-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-mobile .mobile-container .hamburger {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  z-index: 9999;
  flex-direction: column;
  align-items: stretch;
  padding: 52px 15px;
}
.header .header-mobile .mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}
.header .header-mobile .mobile-menu .mobile-menu-header .logo-holder img {
  height: 36px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .header-mobile .mobile-menu .mobile-menu-header .menu-close {
  background-color: transparent;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 56px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item {
  padding: 20px;
  border-top: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item:last-child {
  border-bottom: 1px solid #DCDCDC;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item a svg path {
  stroke: #071C3C;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu .menu-item {
  padding: 8px 12px;
  border: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item .sub-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: #071C3C;
  text-decoration: none;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active a svg {
  rotate: 180deg;
}
.header .header-mobile .mobile-menu .mobile-nav .menu-item.active .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .header-mobile .mobile-menu.active {
  display: flex;
}
.header .header-mobile .botao-verde {
  width: 100%;
}
.header .header-mobile .icons-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header-mobile .search-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 999;
}
.header .header-mobile .search-holder .icon-search {
  cursor: pointer;
  z-index: 9999;
  position: relative;
  pointer-events: auto;
}
.header .header-mobile .search-holder .icon-search svg, .header .header-mobile .search-holder .icon-search path {
  pointer-events: none;
}
.header .header-mobile .search-holder .icon-search .icon-close {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active {
  position: absolute;
  right: 15px;
}
.header .header-mobile .search-holder .icon-search.active .icon-lupa {
  display: none;
}
.header .header-mobile .search-holder .icon-search.active .icon-close {
  display: inline;
}
.header .header-mobile .search-holder .search-form-holder {
  position: absolute;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.header .header-mobile .search-holder .search-form-holder.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: rgb(9, 36, 79);
  left: 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field {
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  height: 40px;
  padding: 10px 20px;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::-moz-placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-field::placeholder {
  color: #fff;
}
.header .header-mobile .search-holder .search-form-holder .search-form .search-submit {
  border: none;
  background-color: rgb(9, 36, 79);
}

footer {
  padding: 60px 0 160px 0;
  background-color: #282828;
}
@media only screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
}
footer .logo {
  margin-bottom: 24px;
}
footer .social-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  footer .social-holder {
    justify-content: center;
  }
}
footer .conteudo-footer {
  margin-top: 62px;
}
footer .conteudo-footer .menu-item-holder {
  margin-bottom: 40px;
}
footer .conteudo-footer .menu-item-holder h3 {
  color: #C5C5C5;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 140%;
  font-size: 1rem;
  margin-bottom: 28px;
}
footer .conteudo-footer .menu-item-holder ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a {
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 140%;
}
footer .conteudo-footer .menu-item-holder ul .menu-item a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
footer .copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 1rem;
  color: #fff;
  margin-top: 96px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media only screen and (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
}
h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -1px;
}

h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -1px;
}

p {
  font-family: "Inter", sans-serif;
}

.botao-verde {
  background-color: #05D758;
  color: #09244F;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.botao-verde:hover {
  background-color: #05993B;
  color: #fff;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 991px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex;
  }
}
.topo-home {
  padding-top: 40px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .topo-home {
    padding-top: 24px;
    background-position: bottom right;
  }
}
.topo-home .row {
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .topo-home .row {
    text-align: center;
  }
}
.topo-home h1 {
  color: #fff;
  margin-bottom: 16px;
}
.topo-home p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 48px;
}
.topo-home .botao-verde {
  padding: 20px;
}
.topo-home .botao-verde svg {
  margin-left: 5px;
}
.topo-home .botao-verde svg path {
  transition: stroke 0.3s ease-in-out;
}
.topo-home .botao-verde:hover svg path {
  stroke: #fff;
}
.topo-home .lista-de-icones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 48px;
  padding-left: 0;
}
@media only screen and (max-width: 991px) {
  .topo-home .lista-de-icones {
    align-items: center;
  }
}
.topo-home .lista-de-icones li {
  color: #B4F2D8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topo-home .lista-de-icones li .icone-holder {
  display: inline-flex;
  width: 20px;
  align-items: center;
  justify-content: center;
}
.topo-home .img-holder {
  display: flex;
  justify-content: end;
}
@media only screen and (max-width: 991px) {
  .topo-home .img-holder {
    justify-content: center;
  }
}

.clientes {
  padding: 32px 0;
  text-align: center;
}
.clientes h2 {
  margin-bottom: 32px;
}
.clientes .swiper-wrapper {
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .clientes .swiper-wrapper {
    justify-content: unset;
  }
}

.avaliacao-clientes {
  background-color: #071C3C;
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  .avaliacao-clientes {
    padding: 88px 0 104px 0;
  }
}
.avaliacao-clientes .row {
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .avaliacao-clientes .row {
    flex-direction: column-reverse;
  }
}
.avaliacao-clientes .velocimetro {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  margin: auto;
}
.avaliacao-clientes .velocimetro svg {
  width: 100%;
  height: auto;
}
.avaliacao-clientes .velocimetro path {
  fill: none;
  stroke-width: 20;
}
.avaliacao-clientes .velocimetro .bg {
  stroke: #B4F2D8;
  stroke-linecap: round;
  stroke-dashoffset: 1;
}
.avaliacao-clientes .velocimetro .progress {
  stroke: #00e676;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s ease;
  stroke-linecap: round;
}
.avaliacao-clientes .velocimetro .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -2px;
}
@media only screen and (max-width: 991px) {
  .avaliacao-clientes .velocimetro .number {
    font-size: 7.5rem;
  }
}
.avaliacao-clientes .velocimetro .number small {
  font-size: 1.3rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.avaliacao-clientes h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .avaliacao-clientes h2 {
    margin-bottom: 52px;
    text-align: center;
  }
}

.falar-com-especialistas {
  background-color: #09244F;
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .falar-com-especialistas {
    padding: 96px 0;
  }
}
.falar-com-especialistas .row {
  align-items: center;
}
.falar-com-especialistas .content-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.falar-com-especialistas .content-holder h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  margin-bottom: 15px;
}
.falar-com-especialistas .content-holder h2 span {
  background: linear-gradient(90deg, #2050E8, #05D758);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.falar-com-especialistas .content-holder .subtitulo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .falar-com-especialistas .content-holder .subtitulo {
    text-align: center;
  }
}
.falar-com-especialistas .content-holder .botao-verde {
  padding: 10px 30px;
}
.falar-com-especialistas img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .falar-com-especialistas img {
    margin-top: 62px;
  }
}

.sobre-nos {
  padding: 120px 0 96px 0;
  background-color: #071C3C;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .sobre-nos {
    padding: 88px 0 104px 0;
  }
}
.sobre-nos h2 {
  color: #fff;
  margin-bottom: 11px;
}
.sobre-nos p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  margin-bottom: 47px;
}
.sobre-nos .video-wrapper {
  height: 678px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper {
    height: 300px;
  }
}
.sobre-nos .video-wrapper img {
  border-radius: 15px;
  height: 678px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper img {
    height: 300px;
  }
}
.sobre-nos .video-wrapper .video-frame {
  height: 678px;
}
@media only screen and (max-width: 991px) {
  .sobre-nos .video-wrapper .video-frame {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .sobre-nos .video-wrapper .video-frame {
    height: 300px;
  }
}
.sobre-nos .video-wrapper .video-frame iframe {
  height: 100%;
  width: -webkit-fill-available;
}

.depoimentos {
  padding: 80px 0 136px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .depoimentos {
    padding: 80px 0 104px 0;
  }
}
.depoimentos .circulo-bg {
  position: absolute;
  top: 40%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 386px;
  height: 386px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.depoimentos .conteudo {
  position: relative;
  z-index: 1;
}
.depoimentos h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 32px;
}
.depoimentos .swiper-depoimentos .swiper-slide {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder {
  text-align: left;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .depoimento {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .assinatura-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.depoimentos .swiper-depoimentos .swiper-slide .depoimento-holder .assinatura-holder p {
  margin-bottom: 0;
}
.depoimentos .depoimentos-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  gap: 32px;
}
.depoimentos .depoimentos-navigation .swiper-button-disabled {
  opacity: 0.2;
}
.depoimentos .funcionario .depoimentos-holder {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(391px, 1fr));
  gap: 48px;
}
@media only screen and (max-width: 1200px) {
  .depoimentos .funcionario .depoimentos-holder {
    grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
  }
}
@media only screen and (max-width: 991px) {
  .depoimentos .funcionario .depoimentos-holder {
    gap: 32px;
  }
}
.depoimentos .funcionario .depoimentos-holder .depoimento-card {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.depoimentos .funcionario .depoimentos-holder .depoimento {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
}
.depoimentos .funcionario .depoimentos-holder .assinatura-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.depoimentos .funcionario .depoimentos-holder .assinatura-holder p {
  margin-bottom: 0;
}
.depoimentos .funcionario .depoimentos-holder > *:last-child:nth-child(odd) {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 50%;
}
@media only screen and (max-width: 991px) {
  .depoimentos .funcionario .depoimentos-holder > *:last-child:nth-child(odd) {
    justify-self: unset;
    max-width: 100%;
  }
}

.fale-com-especialista {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista {
    padding: 88px 0;
  }
}
.fale-com-especialista .circulo-bg {
  position: absolute;
  top: 70%;
  left: 65%;
  transform: translate(-50%, -50%);
  width: 508px;
  height: 508px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.fale-com-especialista .row {
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .row {
    flex-direction: column-reverse;
  }
}
.fale-com-especialista .formulario {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .formulario {
    margin-top: 40px;
  }
}
.fale-com-especialista .formulario form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fale-com-especialista .conteudo {
  color: #fff;
  padding-left: 40px;
}
.fale-com-especialista .conteudo .pre-titulo {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}
.fale-com-especialista .conteudo h2 {
  margin: 16px 0;
}
.fale-com-especialista .conteudo p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}
.fale-com-especialista .conteudo .imagem {
  margin-top: 24px;
}
@media only screen and (max-width: 991px) {
  .fale-com-especialista .conteudo .imagem {
    display: none;
  }
}
.fale-com-especialista .conteudo .imagem img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .fale-com-especialista .conteudo {
    padding-left: 0;
  }
}
.fale-com-especialista .wpcf7-form label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  color: #282828;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fale-com-especialista .sucesso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.fale-com-especialista .sucesso.hidden {
  display: none;
}
.fale-com-especialista .modal-conteudo {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.fale-com-especialista .modal-conteudo .botao-verde {
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 1rem;
  color: #09244F;
}
.fale-com-especialista .fechar-x {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.na-midia {
  background-color: #09244F;
  padding: 100px 0 120px 0;
}
@media only screen and (max-width: 991px) {
  .na-midia {
    padding: 88px 0 104px 0;
  }
}
.na-midia h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .na-midia h2 {
    margin-bottom: 33px;
  }
}
.na-midia .navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .na-midia .navigation {
    justify-content: center;
    margin-bottom: 32px;
  }
}
.na-midia .navigation .swiper-button-disabled {
  opacity: 0.5;
}
.na-midia .navigation .swiper-button-disabled svg rect, .na-midia .navigation .swiper-button-disabled svg path {
  stroke: #DCDCDC;
}
.na-midia .swiper-na-midia .midia-card {
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.na-midia .swiper-na-midia .midia-card .logo-holder {
  margin-bottom: 24px;
}
.na-midia .swiper-na-midia .midia-card .content-holder h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 32px;
  letter-spacing: 1px;
  min-height: 150px;
}
.na-midia .swiper-na-midia .midia-card .content-holder a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
}
.na-midia .swiper-na-midia .midia-card .content-holder a svg {
  margin-left: 10px;
}
.na-midia .swiper-na-midia .midia-card .content-holder a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.na-midia .midia-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.na-midia .midia-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.4);
  width: 14px;
  height: 14px;
}
.na-midia .midia-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.faq {
  padding: 120px 0;
  position: relative;
  background-color: #071C3C;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .faq {
    padding: 88px 0;
  }
}
.faq .circulo-bg {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 938px;
  height: 938px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.faq .conteudo {
  position: relative;
  z-index: 1;
}
.faq h2 {
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}
.faq .faq-holder {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.faq .faq-holder .faq-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq .faq-holder .faq-title h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 140%;
  color: #fff;
  margin-bottom: 0;
  transition: margin-bottom 0.5s ease-in-out;
}
.faq .faq-holder .faq-title .icon {
  margin-left: 20px;
}
.faq .faq-holder .faq-title svg {
  transition: rotate 0.5s ease-in-out;
}
.faq .faq-holder .faq-title.active h3 {
  margin-bottom: 8px;
}
.faq .faq-holder .faq-title.active svg {
  rotate: 135deg;
}
.faq .faq-holder .faq-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.faq .faq-holder .faq-content.active {
  max-height: 1000px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-card .img-holder img {
  border-radius: 16px;
  height: 160px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card .post-content .cat-holder {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.post-card .post-content .cat-holder a {
  color: #05993B;
  background-color: rgba(180, 242, 216, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 140%;
}
.post-card .post-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 16px;
}
.post-card .post-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #282828;
  margin-bottom: 24px;
}
.post-card .post-content .continuar-lendo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
}
.post-card .post-content .continuar-lendo svg {
  margin-left: 12px;
}

.fundo-escuro .post-card .post-content h3 {
  color: #fff;
}
.fundo-escuro .post-card .post-content p {
  color: rgba(255, 255, 255, 0.7);
}
.fundo-escuro .post-card .post-content .continuar-lendo {
  color: #fff;
}

.blog-carrossel {
  background-color: #09244F;
  padding: 100px 0 120px 0;
}
@media only screen and (max-width: 991px) {
  .blog-carrossel {
    padding: 88px 0 104px 0;
  }
}
.blog-carrossel .row {
  align-items: center;
}
.blog-carrossel h2 {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .blog-carrossel h2 {
    text-align: center;
    margin-bottom: 32px;
  }
}
.blog-carrossel .navigation-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .blog-carrossel .navigation-holder {
    justify-content: center;
  }
}
.blog-carrossel .navigation-holder .swiper-button-disabled {
  opacity: 0.5;
}
.blog-carrossel .navigation-holder .swiper-button-disabled svg rect, .blog-carrossel .navigation-holder .swiper-button-disabled svg path {
  stroke: #fff;
}
.blog-carrossel .destaque-home {
  margin-top: 48px;
}

.modulos-que-compoe {
  padding: 80px 0;
  background-color: #09244F;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe {
    padding: 64px 0 0 0;
  }
}
.modulos-que-compoe .container {
  position: relative;
  z-index: 1;
}
.modulos-que-compoe .circulo-bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 970px;
  height: 970px;
  border-radius: 50%;
  background: rgba(22, 72, 205, 0.4);
  filter: blur(130px);
  z-index: 0;
}
.modulos-que-compoe h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 58px;
}
.modulos-que-compoe .slider-holder {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe .slider-holder {
    margin: 0;
  }
}
.modulos-que-compoe .slider-holder h3 {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe .slider-holder h3 {
    text-align: center;
    margin-bottom: 24px;
  }
}
.modulos-que-compoe .slider-holder .navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe .slider-holder .navigation {
    justify-content: center;
  }
}
.modulos-que-compoe .slider-holder .navigation .swiper-button-disabled {
  opacity: 0.5;
}
.modulos-que-compoe .slider-holder .navigation .swiper-button-disabled svg rect, .modulos-que-compoe .slider-holder .navigation .swiper-button-disabled svg path {
  stroke: #DCDCDC;
}
.modulos-que-compoe .slider-holder .swiper-modulos {
  margin: 35px 0 48px 0;
}
.modulos-que-compoe .slider-holder .swiper-modulos .swiper-slide {
  display: flex;
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card h4 {
  color: #fff;
  margin-bottom: 5px;
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card p {
  color: rgba(255, 255, 255, 0.7);
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card.vertical img {
  margin-bottom: 24px;
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card.horizontal {
  display: flex;
  align-items: center;
}
.modulos-que-compoe .slider-holder .swiper-modulos .modulo-card.horizontal img {
  margin-right: 24px;
}
.modulos-que-compoe .slider-holder .modulos-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modulos-que-compoe .slider-holder .modulos-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.4);
  width: 14px;
  height: 14px;
}
.modulos-que-compoe .slider-holder .modulos-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.modulos-que-compoe .dev-kit {
  align-items: center;
  margin-top: 82px;
  padding: 24px;
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe .dev-kit {
    margin-top: 0;
  }
}
.modulos-que-compoe .dev-kit h3 {
  color: #fff;
  margin-bottom: 5px;
}
.modulos-que-compoe .dev-kit p {
  color: rgba(255, 255, 255, 0.5);
}
.modulos-que-compoe .dev-kit .icon-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .modulos-que-compoe .dev-kit .icon-holder {
    margin-top: 24px;
    justify-content: flex-start;
  }
}

.cards-de-solucao {
  background-color: #09244F;
  padding: 58px 0 162px 0;
}
@media only screen and (max-width: 991px) {
  .cards-de-solucao {
    padding: 22px 0 62px 0;
  }
}
.cards-de-solucao h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 64px;
}
.cards-de-solucao .row {
  align-items: stretch;
}
@media only screen and (max-width: 991px) {
  .cards-de-solucao .cards-holder {
    gap: 56px;
  }
}
.cards-de-solucao .card-solucao {
  position: relative;
  z-index: 1;
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
  height: -webkit-fill-available;
}
@media only screen and (max-width: 991px) {
  .cards-de-solucao .card-solucao {
    padding: 16px;
  }
}
.cards-de-solucao .card-solucao h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 24px;
}
.cards-de-solucao .card-solucao h3 span {
  padding: 0 15px;
  border-radius: 12px;
  margin-left: 10px;
}
.cards-de-solucao .card-solucao h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 8px;
}
.cards-de-solucao .card-solucao p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 53px;
}
.cards-de-solucao .card-solucao a {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 100%;
  color: #fff;
  border-style: solid;
  border-radius: 5px;
  border-width: 1px;
  padding: 10px 12px;
  text-decoration: none;
}
.cards-de-solucao .card-solucao img {
  margin-top: 32px;
  border-radius: 16px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.onde-atuamos {
  background-color: #071C3C;
  padding: 100px 0 120px 0;
}
@media only screen and (max-width: 991px) {
  .onde-atuamos {
    padding: 80px 0 104px 0;
  }
}
.onde-atuamos h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 62px;
}
.onde-atuamos .atuacao-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.onde-atuamos .atuacao-holder .linha {
  width: 100%;
  display: flex;
  justify-content: center;
}
.onde-atuamos .atuacao-holder .atuacao {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.onde-atuamos .atuacao-holder .atuacao a {
  color: inherit;
  text-decoration: none;
}
.onde-atuamos .atuacao-holder .atuacao a:hover {
  text-decoration: underline;
}
.onde-atuamos .atuacao-holder .atuacao.destaque {
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  background: linear-gradient(270deg, rgba(5, 215, 88, 0) 0%, rgba(5, 215, 88, 0.32) 100%), linear-gradient(152.37deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 28px 40px;
}

form input[type=text], form input[type=email], form input[type=tel], form select {
  background-color: #F2F4F4;
  border: solid 1px #DCDCDC;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
}
form .texto-legal p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 0.9rem;
  color: #999;
  margin: 32px 0;
}
form .botao-verde {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 100%;
  font-size: 1rem;
  color: #09244F;
}/*# sourceMappingURL=home.css.map */