@charset "UTF-8";
img {
  width: 100%;
}

/* fonts */
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Light.woff2") format("woff2"), url("../../fonts/Gotham-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-LightItalic.woff2") format("woff2"), url("../../fonts/Gotham-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Book.woff2") format("woff2"), url("../../fonts/Gotham-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-BookItalic.woff2") format("woff2"), url("../../fonts/Gotham-BookItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Medium.woff2") format("woff2"), url("../../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-MediumItalic.woff2") format("woff2"), url("../../fonts/Gotham-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Bold.woff2") format("woff2"), url("../../fonts/Gotham-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-BoldItalic.woff2") format("woff2"), url("../../fonts/Gotham-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
/* heading tags style */
.display {
  font-family: "Gotham", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
  color: #414141;
}
@media only screen and (max-width: 1200px) {
  .display {
    font-size: 2.5rem;
  }
}

.h1 {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  color: #414141;
}
@media only screen and (max-width: 992px) {
  .h1 {
    font-size: 2rem;
  }
}

.h2 {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #414141;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .h2 {
    font-size: 1.5rem;
  }
}

.h3 {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #414141;
  text-transform: uppercase;
}
@media only screen and (max-width: 992px) {
  .h3 {
    font-size: 1.25rem;
  }
}

.h4 {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #414141;
  text-transform: uppercase;
}

p {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #414141;
  overflow-wrap: break-word;
}

a {
  color: #000;
  font-family: "Gotham", sans-serif;
  font-weight: 600;
}
a :hover {
  color: #ECECEC;
}

/* Botões */
button {
  font-family: "Gotham", sans-serif;
}

.botao-verde {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: #19E380;
  color: #414141;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.botao-amarelo {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: #ffe300;
  color: #414141;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}

.botao-verde:hover {
  background-color: #414141;
  color: #19E380;
}

.botao-branco {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: #fff;
  color: #414141;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.botao-branco:hover {
  background-color: #414141;
  color: #19E380;
}

.botao-branco-fundo-escuro {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: #fff;
  color: #414141;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.botao-branco-fundo-escuro:hover {
  background-color: #19E380;
  color: #fff;
}

.botao-preto {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: #414141;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
.botao-preto:hover {
  background-color: #fff;
  color: #414141;
}

.botao-secundario {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background-color: transparent;
  color: #000;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: #19E380;
  text-align: center;
}
.botao-secundario :hover {
  border-color: #000;
}

.header {
  background-color: #fff;
  min-height: 80px;
  position: sticky;
  top: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .header .container {
    min-height: 60px;
    display: grid;
  }
  .header .container.active {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
    z-index: 999;
  }
  .header .row {
    align-items: center;
  }
  .header .logo-holder img {
    width: 166px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .menu-hamburguer-holder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.header .logo-holder .logo {
  width: 166px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.header .menu-holder {
  display: flex;
  align-items: center;
}
.header .categorias-menu {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  list-style: none;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .header .categorias-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
  }
}
.header .categorias-menu a {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
}
.header .categorias-menu .menu-item-has-children {
  position: relative;
}
.header .categorias-menu .menu-item-has-children .seta {
  display: inline-block;
  width: 14px;
  height: 9px;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L7 7L13 1" stroke="%2319E380" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  flex-shrink: 0;
}
.header .categorias-menu .menu-item-has-children:hover > .sub-menu {
  display: flex;
}
.header .categorias-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .categorias-menu .sub-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px;
  box-shadow: 0px 20px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  list-style: none;
  width: 230px;
  gap: 10px;
  border-radius: 16px;
}
.header .categorias-menu .sub-menu a {
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .header .categorias-menu .sub-menu .sub-menu {
    margin-left: 98%;
    top: 0%;
  }
}
.header .contato-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header .fale-conosco {
  font-family: "Gotham", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 2px 15px;
  border-style: solid;
  border-color: #19E380;
  border-width: 2px;
  border-radius: 16px;
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 992px) {
  .header .fale-conosco {
    width: -moz-fit-content;
    width: fit-content;
    margin: 48px 0 18px 0;
  }
}
.header .social-holder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .social-holder img {
  width: 100%;
  height: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .menu-hamburguer-holder .hamburguer-icon {
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .menu-hamburguer-holder .hamburguer-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #19e380;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .menu-hamburguer-holder .hamburguer-icon.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  position: absolute;
}
.header .menu-hamburguer-holder .hamburguer-icon.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-hamburguer-holder .hamburguer-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 8px;
  position: absolute;
}
.header .menu-mobile-holder {
  position: fixed;
  top: var(--header-height, 0px);
  left: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 997;
  transition: left 0.3s ease-in-out;
  height: calc(100vh - var(--header-height, 0px));
  transform: translateX(-100%);
}
.header .menu-mobile-holder.active {
  left: 0;
  transform: translateX(0);
}
.header .menu-mobile-holder .menu-mobile {
  height: 100%;
  width: 60%;
  background-color: #fff;
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.header .menu-mobile-holder .menu-mobile .seta {
  margin-left: 35px;
}
.header .menu-mobile-holder .menu-mobile .sub-menu {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: none;
}
.header.header-blog {
  background-color: #19E380;
}
.header.header-blog .menu-hamburguer-holder .hamburguer-icon span {
  background: #fff;
}
.header.header-blog .search-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #414141;
  border-radius: 16px;
  padding: 5px 15px;
  max-width: 300px;
}
@media only screen and (max-width: 1400px) {
  .header.header-blog .search-box {
    max-width: 200px;
  }
}
@media only screen and (max-width: 1400px) {
  .header.header-blog .search-box {
    display: none;
  }
}
.header.header-blog .search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #414141;
}
@media only screen and (max-width: 1400px) {
  .header.header-blog .search-input {
    width: 20%;
  }
}
.header.header-blog .search-input::-moz-placeholder {
  color: #414141;
  opacity: 0.5;
}
.header.header-blog .search-input::placeholder {
  color: #414141;
  opacity: 0.5;
}
.header.header-blog .search-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.header.header-blog .categorias-menu {
  gap: 20px;
}
.header.header-blog .categorias-menu .menu-item-has-children::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23414141' stroke-width='2'/%3E%3C/svg%3E");
}
@media (min-width: 992px) {
  .header.header-blog .categorias-menu .menu-item-has-children .seta {
    filter: brightness(100);
  }
}

.footer {
  padding: 96px 0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 992px) {
  .footer .footer-holder {
    gap: 40px;
  }
}
.footer .logo {
  margin-bottom: 34px;
  width: 166px;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .footer .logo {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.footer .social-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
}
@media only screen and (max-width: 992px) {
  .footer .social-holder {
    justify-content: flex-start;
    max-width: -moz-fit-content;
    max-width: fit-content;
    gap: 30px;
  }
}
.footer .social-holder img {
  width: 100%;
  height: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .footer .social-holder img {
    height: 30px;
  }
}
.footer .solucoes-footer .linha-verde {
  width: 40%;
}
@media only screen and (max-width: 992px) {
  .footer .solucoes-footer .linha-verde {
    width: 20%;
  }
}
.footer .a-dootax-footer .linha-verde,
.footer .parceiros-footer .linha-verde {
  width: 90%;
}
@media only screen and (max-width: 992px) {
  .footer .a-dootax-footer .linha-verde,
  .footer .parceiros-footer .linha-verde {
    width: 20%;
  }
}
.footer .escritorios-footer .linha-verde {
  width: 20%;
}
.footer .linha-verde {
  background-color: #19E380;
  display: flex;
  height: 2px;
  margin-bottom: 8px;
}
.footer .h4 {
  margin-bottom: 16px;
  text-transform: none;
  font-weight: 500;
}
.footer .categorias-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}
.footer .categorias-menu a {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #414141;
  text-decoration: none;
}
.footer .categorias-menu a:hover {
  text-decoration: underline;
}
.footer .escritorios-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
}
@media only screen and (max-width: 992px) {
  .footer .escritorios-holder {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.footer .escritorios-holder .escritorio-card .escritorio-nome {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 3px;
}
.footer .escritorios-holder .escritorio-card .nome-predio,
.footer .escritorios-holder .escritorio-card .endereco {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0;
}
.footer .footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom ul {
  display: flex;
  flex-direction: row;
}
.footer .footer-bottom-powered {
  text-align: center;
  padding-top: 20px;
}
.footer .footer-bottom-powered p,
.footer .footer-bottom-powered a {
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  color: #414141;
  text-decoration: none;
  list-style: none;
}

.top {
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 999;
}

@media only screen and (max-width: 992px) {
  .desk {
    display: none !important;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .mobile {
    display: block;
  }
}

.breadcrumb-config a {
  list-style: none;
  text-decoration: none;
  font-weight: 400;
}
.breadcrumb-config p,
.breadcrumb-config .last {
  font-weight: bold;
}

.s-automacao {
  background-color: #ECECEC;
  padding: 0 0 200px 0;
  position: relative;
}
.s-automacao .container {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .s-automacao {
    padding: 88px 0 200px 0;
  }
}
.s-automacao h2 {
  text-align: center;
  margin-bottom: 72px;
  color: #414141;
}
@media only screen and (max-width: 992px) {
  .s-automacao h2 {
    margin-bottom: 0;
  }
}
.s-automacao .bloco-wrapper {
  position: relative;
  margin-bottom: -500px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper {
    margin-bottom: -400px;
  }
}
.s-automacao .bloco-wrapper .bloco {
  position: sticky;
  background-color: #fff;
  margin: 60px auto;
  padding: 115px 40px;
  border-radius: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco {
    padding: 56px 30px;
    margin: 30px auto;
    position: relative;
  }
  .s-automacao .bloco-wrapper .bloco img {
    margin-top: 56px;
  }
}
.s-automacao .bloco-wrapper .bloco h3 {
  color: #414141;
  margin-bottom: 32px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco h3 {
    margin-bottom: 20px;
  }
}
.s-automacao .bloco-wrapper .bloco .card-solucao {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .s-automacao .bloco-wrapper .bloco .card-solucao {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .card-solucao {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
    max-width: 60%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item {
  text-decoration: none;
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item .linha-verde {
  display: flex;
  background-color: #19E380;
  height: 5px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item .linha-verde {
    height: 8px;
  }
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item a, .s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item h4, .s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item p {
  color: #414141;
  text-decoration: none;
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item .h3 {
  font-size: 1.2rem;
  text-transform: none;
  font-weight: 500;
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item a:hover {
  color: #414141;
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item .conteudo {
  margin-top: 25px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item .conteudo {
    margin-top: 13px;
  }
}
.s-automacao .bloco-wrapper .bloco .card-solucao .card-solucao-item:hover {
  text-decoration: none;
  color: #414141 !important;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao {
  margin-top: 40px;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item {
  max-width: 60%;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item .linha-verde {
  display: flex;
  background-color: #19E380;
  height: 5px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item .linha-verde {
    height: 8px;
  }
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item a, .s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item h4 {
  color: #414141;
  text-decoration: none;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item .h3 {
  font-size: 1.2rem;
  text-transform: none;
  font-weight: 500;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item a:hover, .s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item h4:hover {
  text-decoration: underline;
  color: #414141;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item .conteudo {
  margin-top: 25px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-item .conteudo {
    margin-top: 13px;
  }
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 15px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  margin-top: 30px;
}
.s-automacao .bloco-wrapper .bloco .swiper-card-solucao .card-solucao-pagination .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}
.s-automacao .bloco-wrapper .even {
  background-color: #414141;
}
.s-automacao .bloco-wrapper .even h3, .s-automacao .bloco-wrapper .even h4, .s-automacao .bloco-wrapper .even p, .s-automacao .bloco-wrapper .even a {
  color: #fff !important;
}
.s-automacao .bloco-wrapper .even .card-solucao-pagination .swiper-pagination-bullet {
  background-color: #ECECEC !important;
}
.s-automacao .bloco-wrapper .even .card-solucao-pagination .swiper-pagination-bullet-active {
  background-color: #19E380 !important;
}
.s-automacao .grafismo-esquerda {
  position: absolute;
  left: 0;
  z-index: 0;
}
.s-automacao .grafismo-esquerda svg {
  max-width: 100%;
}
.s-automacao .grafismo-direita {
  position: absolute;
  right: 0;
  z-index: 0;
  bottom: 3%;
}

.conteudo-seo {
  padding: 40px 0 200px 0;
}
.conteudo-seo h2 {
  margin-bottom: 20px;
}
.conteudo-seo .conteudo-oculto {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.conteudo-seo .conteudo-oculto.ativo {
  max-height: 1000px;
}
.conteudo-seo button {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-decoration: underline;
  color: #19E380;
  background-color: transparent;
  border: none;
}
.conteudo-seo button:hover, .conteudo-seo button:active {
  color: #414141;
}

.hero {
  padding: 63px 0;
}
@media only screen and (max-width: 400px) {
  .hero {
    padding: 63px 0 0 0;
  }
}
.hero .breadcrumb-config p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 992px) {
  .hero .row {
    flex-direction: column-reverse;
  }
  .hero .row img {
    margin-bottom: 40px;
  }
}
.hero h1 {
  color: #414141;
  font-weight: 500;
  font-size: 2.625rem;
  text-align: center;
  margin-bottom: 2.625rem;
}
.hero h2 {
  padding-top: 3.25rem;
}
.hero p {
  max-width: 60%;
  margin-bottom: 10rem;
}
.hero img {
  border-radius: 24px;
  width: 482px;
  height: 394px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-parceiros-pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .hero .hero-parceiros-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
}
.hero .hero-parceiros-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 15px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  margin-top: 30px;
}
.hero .hero-parceiros-pagination .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}

.cadastre {
  padding: 120px 0 180px 0;
}
@media only screen and (max-width: 992px) {
  .cadastre {
    padding: 56px 0 80px 0;
  }
}
.cadastre .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .cadastre .row {
    flex-direction: column-reverse;
  }
}
.cadastre h2 {
  color: #414141;
  text-transform: none;
}
.cadastre .titulo-cadastre {
  margin-bottom: 39px;
}
.cadastre .coluna-form {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .cadastre .coluna-form {
    margin-top: 40px;
  }
}
.cadastre .coluna-form .bg-verde {
  background: rgb(25, 227, 128);
  background: linear-gradient(-90deg, rgb(25, 227, 128) 0%, rgb(0, 145, 135) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#19e380", endColorstr="#009187", GradientType=1);
  height: 600px;
  content: "";
  border-radius: 64px;
}
@media only screen and (max-width: 992px) {
  .cadastre .coluna-form .bg-verde {
    display: none;
  }
}
.cadastre .coluna-form .form-holder {
  background-color: #fff;
  border-radius: 64px;
  position: absolute;
  margin: 50px 0 0 50px;
  padding: 50px;
  min-height: 500px;
  max-width: 600px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 992px) {
  .cadastre .coluna-form .form-holder {
    position: relative;
    margin: 0;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.secao-video {
  padding: 0 0 200px 0;
}
@media only screen and (max-width: 992px) {
  .secao-video {
    padding-bottom: 86px;
    overflow: hidden;
  }
}
.secao-video .row {
  align-items: center;
}
.secao-video h2 {
  margin-bottom: 24px;
  text-transform: none;
  font-size: 1.8rem;
}
.secao-video .botao-verde {
  margin-top: 74px;
}
.secao-video .coluna-video {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .secao-video .coluna-video {
    margin-top: 56px;
  }
}
.secao-video .coluna-video .box-verde {
  background: rgb(25, 227, 128);
  background: linear-gradient(-90deg, rgb(25, 227, 128) 0%, rgb(0, 145, 135) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#19e380", endColorstr="#009187", GradientType=1);
  height: 330px;
  content: "";
  border-radius: 64px;
  margin: 50px 0 0 50px;
}
@media only screen and (max-width: 1400px) {
  .secao-video .coluna-video .box-verde {
    height: 270px;
  }
}
@media only screen and (max-width: 1200px) {
  .secao-video .coluna-video .box-verde {
    height: 220px;
  }
}
@media only screen and (max-width: 992px) {
  .secao-video .coluna-video .box-verde {
    height: 460px;
  }
}
@media only screen and (max-width: 768px) {
  .secao-video .coluna-video .box-verde {
    height: 330px;
  }
}
@media only screen and (max-width: 526px) {
  .secao-video .coluna-video .box-verde {
    height: 300px;
  }
}
@media only screen and (max-width: 491px) {
  .secao-video .coluna-video .box-verde {
    height: 280px;
  }
}
@media only screen and (max-width: 460px) {
  .secao-video .coluna-video .box-verde {
    height: 255px;
  }
}
@media only screen and (max-width: 440px) {
  .secao-video .coluna-video .box-verde {
    height: 240px;
  }
}
@media only screen and (max-width: 400px) {
  .secao-video .coluna-video .box-verde {
    height: 210px;
  }
}
@media only screen and (max-width: 370px) {
  .secao-video .coluna-video .box-verde {
    height: 190px;
    margin: 30px 0 0 30px;
  }
}
.secao-video .coluna-video .thumb-holder {
  position: absolute;
  border-radius: 64px;
  overflow: hidden;
  margin: 0 50px 50px 0;
  cursor: pointer;
  z-index: 2;
}
.secao-video .coluna-video .thumb-holder .play-button {
  position: absolute;
  top: 40%;
  left: 40%;
}
.secao-video .coluna-video .video-frame {
  position: absolute;
  border-radius: 64px;
  overflow: hidden;
  margin: 0 50px 50px 0;
  width: 598px;
  height: 418px;
  z-index: 1;
}
.secao-video .coluna-video .video-frame iframe {
  width: 100%;
  height: 100%;
}

.big-numbers {
  padding: 0 0 160px 0;
}
@media only screen and (max-width: 992px) {
  .big-numbers {
    padding-bottom: 96px;
  }
  .big-numbers .row {
    gap: 24px;
  }
}
.big-numbers .number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  border-style: solid;
  border-width: 2px;
  border-color: #19E380;
  border-radius: 40px;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .big-numbers .number-card {
    padding: 56px 40px;
  }
}
.big-numbers .number-card .number {
  color: #414141;
  text-align: center;
}
.big-numbers .number-card .number-text {
  font-size: 1.5rem;
  text-align: center;
}

.secao-icones {
  padding: 0 0 160px 0;
}
.secao-icones .row {
  align-items: center;
}
.secao-icones h2 {
  color: #414141;
  margin-bottom: 24px;
  text-transform: none;
}
.secao-icones .card-holder {
  margin-top: 40px;
}
.secao-icones .card-holder .icone-card {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .secao-icones .card-holder .icone-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.secao-icones .card-holder .icone-card img {
  width: 92px;
  -o-object-fit: cover;
     object-fit: cover;
}
.secao-icones .card-holder .icone-card h3 {
  color: #414141;
  margin-bottom: 16px;
  text-transform: none;
}
.secao-icones .card-holder .icone-card p {
  margin-bottom: 24px;
}
.secao-icones .card-holder .icone-card .botao-icone {
  border-style: solid;
  border-width: 1px;
  border-color: #19E380;
  border-radius: 40px;
  padding: 10px 25px;
  text-decoration: none;
  font-family: "Gotham", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.parceiros {
  padding: 145px 0;
  background-color: #ECECEC;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .parceiros {
    padding: 56px 0;
  }
}
.parceiros h2 {
  color: #414141;
  margin-bottom: 24px;
  text-transform: none;
}
.parceiros .swiper-parceiros {
  margin-top: 94px;
  /*.parceiro-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: opacity 0.5s ease;
          border-radius: 40px;
          overflow: hidden;
      }*/
}
@media only screen and (max-width: 992px) {
  .parceiros .swiper-parceiros {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .parceiros .swiper-parceiros {
    margin-top: 32px;
  }
}
.parceiros .swiper-parceiros .swiper-wrapper {
  padding: 0 10%;
}
.parceiros .swiper-parceiros .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 40px;
}
@media (max-width: 992px) {
  .parceiros .swiper-parceiros .swiper-wrapper .swiper-slide {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .parceiros .swiper-parceiros .swiper-wrapper {
    padding: 0;
  }
}
.parceiros .swiper-parceiros .parceiro-hover {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.parceiros .swiper-parceiros .parceiro-image {
  min-height: 323px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dedede;
}
@media only screen and (max-width: 1600px) {
  .parceiros .swiper-parceiros .parceiro-image {
    min-height: 300px;
  }
}
@media only screen and (max-width: 1500px) {
  .parceiros .swiper-parceiros .parceiro-image {
    min-height: 250px;
  }
}
@media only screen and (max-width: 992px) {
  .parceiros .swiper-parceiros .parceiro-image {
    min-height: auto;
    width: auto;
    padding: 20px;
  }
}
.parceiros .swiper-parceiros .parceiro-image img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.parceiros .swiper-parceiros .parceiro-content {
  position: absolute;
  inset: 0;
  background-color: #19E380;
  color: #414141;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.parceiros .swiper-parceiros .parceiro-hover:hover .parceiro-content {
  opacity: 1;
}
.parceiros .swiper-parceiros .parceiro-hover.mobile {
  margin-bottom: 40px;
}
.parceiros .swiper-parceiros .parceiro-hover.mobile .parceiro-image {
  position: relative;
  z-index: 5;
}
.parceiros .swiper-parceiros .parceiro-hover.mobile .parceiro-content {
  position: relative;
  opacity: 1;
  padding: 80px 20px 30px 20px;
  margin-top: -50px;
  z-index: 4;
  background-color: #dedede;
}
.parceiros .grafismo-direita {
  position: absolute;
  right: 0;
  top: 0;
}

.faq {
  padding: 350px 0 236px 0;
}
@media only screen and (max-width: 992px) {
  .faq {
    padding: 350px 0 85px 0;
  }
}
.faq .faq-bg {
  margin-top: 32px;
  background-color: #ECECEC;
  padding: 64px 59px;
  border-radius: 64px;
}
.faq .faq-bg .faq-holder {
  padding: 20px 0;
  border-bottom-style: solid;
  border-bottom-color: rgba(65, 65, 65, 0.5);
  border-bottom-width: 1px;
}
.faq .faq-bg .faq-holder .faq-title {
  display: flex;
  align-items: center;
  min-height: 46px;
}
.faq .faq-bg .faq-holder .faq-title .pergunta {
  width: 80%;
}
.faq .faq-bg .faq-holder .faq-title .pergunta h4 {
  color: #414141;
  text-transform: none;
  padding: 0;
  margin: 0;
}
.faq .faq-bg .faq-holder .faq-title .chevron {
  width: 20%;
  text-align: right;
}
.faq .faq-bg .faq-holder .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq .faq-bg .faq-holder .faq-title.active .chevron svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}/*# sourceMappingURL=parceiros.css.map */