@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%;
}

.escritorios {
  padding: 160px 0;
  background-color: #ECECEC;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .escritorios {
    padding: 56px 0 88px 0;
  }
}
.escritorios .content-holder {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 992px) {
  .escritorios .content-holder {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media only screen and (max-width: 767px) {
  .escritorios .content-holder {
    text-align: left;
  }
}
.escritorios h2 {
  margin-bottom: 22px;
}
.escritorios .escritorios-holder {
  margin-top: 95px;
  position: relative;
}
.escritorios .escritorios-holder .row {
  row-gap: 25px;
}
.escritorios .escritorios-holder .row > .col-xl-6:nth-last-child(1):nth-child(odd) {
  margin-left: auto;
  margin-right: auto;
}
.escritorios .escritorios-holder .escritorio-card {
  position: relative;
  height: 100%;
  min-height: 220px;
  transition: 0.4s;
}
.escritorios .escritorios-holder .escritorio-card .escritorio-frente,
.escritorios .escritorios-holder .escritorio-card .escritorio-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  border-radius: 64px;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 992px) {
  .escritorios .escritorios-holder .escritorio-card .escritorio-frente,
  .escritorios .escritorios-holder .escritorio-card .escritorio-fundo {
    position: relative;
  }
}
.escritorios .escritorios-holder .escritorio-card .escritorio-frente {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 2;
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .escritorios .escritorios-holder .escritorio-card .escritorio-frente {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.escritorios .escritorios-holder .escritorio-card .escritorio-frente .escritorio-content {
  width: -webkit-fill-available;
  text-align: left;
}
.escritorios .escritorios-holder .escritorio-card .escritorio-frente .escritorio-content .endereco-mobile, .escritorios .escritorios-holder .escritorio-card .escritorio-frente .escritorio-content .link-mapa-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .escritorios .escritorios-holder .escritorio-card .escritorio-frente .escritorio-content .endereco-mobile, .escritorios .escritorios-holder .escritorio-card .escritorio-frente .escritorio-content .link-mapa-mobile {
    display: inline-flex;
  }
}
.escritorios .escritorios-holder .escritorio-card .escritorio-frente img {
  width: 137px;
  -o-object-fit: cover;
     object-fit: cover;
}
.escritorios .escritorios-holder .escritorio-card .escritorio-fundo {
  background-color: #19E380;
  color: #414141;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .escritorios .escritorios-holder .escritorio-card .escritorio-fundo {
    display: none;
  }
}
.escritorios .escritorios-holder .escritorio-card:hover .escritorio-frente {
  opacity: 0;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .escritorios .escritorios-holder .escritorio-card:hover .escritorio-frente {
    opacity: 1;
  }
}
.escritorios .escritorios-holder .escritorio-card:hover .escritorio-fundo {
  opacity: 1;
  z-index: 2;
}
.escritorios .escritorios-holder .escritorio-card .esquerda {
  flex: 1;
}
.escritorios .escritorios-holder .escritorio-card .direita {
  flex: 1;
  text-align: left;
}
.escritorios .escritorios-holder .escritorio-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #414141;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
}
.escritorios .grafismo-direita {
  position: absolute;
  right: 0;
  top: 0;
}
.escritorios .grafismo-esquerda {
  position: absolute;
  left: 0;
  bottom: 20%;
}

.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;
}
.hero .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .hero .row {
    flex-direction: column-reverse;
  }
  .hero .row img {
    margin-bottom: 48px;
  }
}
.hero h1 {
  margin-bottom: 26px;
}

.secao-icones {
  padding: 180px 0;
}
@media only screen and (max-width: 992px) {
  .secao-icones {
    padding: 10px 0;
  }
}
.secao-icones .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}
.secao-icones .cards img {
  max-width: 127px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 32px;
}
.secao-icones .cards h3 {
  margin-bottom: 18px;
  text-transform: none;
}

.secao-video {
  padding: 0 0 80px 0;
  margin-bottom: -300px;
}
@media only screen and (max-width: 992px) {
  .secao-video {
    padding: 70px 0;
  }
}
.secao-video .video-wrapper {
  border-radius: 64px;
  overflow: hidden;
}
.secao-video .video-wrapper .video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.secao-video .video-wrapper .video-thumb .play-button {
  position: absolute;
}
.secao-video .video-wrapper .video-frame iframe {
  width: 100%;
  height: 661px;
}
@media only screen and (max-width: 992px) {
  .secao-video .video-wrapper .video-frame iframe {
    height: 339px;
  }
}

.nossa-historia {
  padding: 350px 0;
  background-color: #ECECEC;
}
@media only screen and (max-width: 992px) {
  .nossa-historia {
    padding: 350px 0 200px 0;
  }
}
.nossa-historia h2 {
  margin-bottom: 52px;
  text-align: center;
}
.nossa-historia .linha-tempo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
  margin-bottom: 76px;
}
@media only screen and (max-width: 992px) {
  .nossa-historia .linha-tempo-nav {
    justify-content: flex-start;
    overflow-x: scroll;
  }
}
.nossa-historia .linha-tempo-nav button {
  background-color: #ECECEC;
  padding: 5px 20px;
  border-style: solid;
  border-color: #19E380;
  border-radius: 64px;
  color: #414141;
  position: relative;
  z-index: 1;
}
.nossa-historia .linha-tempo-nav button.active {
  background-color: #19E380;
}
.nossa-historia .linha-tempo-nav button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 20px;
  height: 2px;
  background-color: #19E380;
  transform: translateY(-50%);
  z-index: 0;
}
.nossa-historia .linha-tempo-nav button:last-child::after {
  display: none;
}
.nossa-historia .swiper-slide .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .nossa-historia .swiper-slide .row {
    flex-direction: column-reverse;
  }
  .nossa-historia .swiper-slide .row img {
    margin-top: 56px;
  }
}
.nossa-historia .swiper-slide h3 {
  margin-bottom: 16px;
}

.cta {
  margin-top: -150px;
}
.cta .row {
  align-items: center;
  background-color: #19E380;
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .cta .row {
    flex-direction: column-reverse;
  }
}
.cta .img-holder {
  padding-left: 0;
}
@media only screen and (max-width: 992px) {
  .cta .img-holder {
    padding: 0;
  }
}
.cta .img-holder img {
  border-radius: 40px;
}
@media only screen and (max-width: 992px) {
  .cta .img-holder img {
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  .cta .img-holder img {
    height: 169px;
  }
}
.cta a {
  text-decoration: none;
  margin-top: 40px;
}
@media only screen and (max-width: 992px) {
  .cta .content-holder {
    padding: 70px 20px;
  }
}

.secao-video-direita {
  padding: 247px 0 180px 0;
}
@media only screen and (max-width: 992px) {
  .secao-video-direita {
    padding: 88px 0;
  }
}
.secao-video-direita .row {
  align-items: center;
}
.secao-video-direita h2 {
  margin-bottom: 24px;
}
.secao-video-direita .video-wrapper {
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .secao-video-direita .video-wrapper {
    margin-top: 56px;
  }
}
.secao-video-direita .thumb-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.secao-video-direita .thumb-holder .play-button {
  position: absolute;
}
.secao-video-direita .video-frame iframe {
  width: 100%;
  height: 414px;
}

.fundadores {
  padding: 0 0 180px 0;
}
@media only screen and (max-width: 992px) {
  .fundadores {
    padding: 0 0 45px 0;
  }
}
.fundadores h2 {
  margin-bottom: 40px;
}
.fundadores .card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fundadores .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  border-radius: 40px;
  overflow: hidden;
}
.fundadores .card-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;
}
.fundadores .card-hover:hover .card-content {
  opacity: 1;
}
.fundadores .card-hover:hover .card-image img {
  opacity: 0;
}
@media (max-width: 992px) {
  .fundadores .card-hover:hover .card-image img {
    opacity: 1;
  }
}
.fundadores .card-hover.mobile {
  margin-bottom: 40px;
}
.fundadores .card-hover.mobile .card-image {
  position: relative;
  z-index: 5;
}
.fundadores .card-hover.mobile .card-content {
  position: relative;
  opacity: 1;
  padding: 80px 20px 30px 20px;
  margin-top: -50px;
  z-index: 4;
}

.premios {
  padding: 0 0 180px 0;
}
@media only screen and (max-width: 992px) {
  .premios {
    padding: 45px 0;
  }
}
.premios h2 {
  margin-bottom: 25px;
}
.premios .swiper-premios {
  margin-top: 93px;
}
.premios .swiper-premios .swiper-wrapper {
  padding: 0 10%;
}
@media only screen and (max-width: 1199px) {
  .premios .swiper-premios .swiper-wrapper {
    padding: 0;
  }
}
.premios .swiper-premios .premio-hover {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.premios .swiper-premios .premio-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  border-radius: 40px;
  overflow: hidden;
}
.premios .swiper-premios .premio-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;
}
.premios .swiper-premios .premio-hover:hover .premio-content {
  opacity: 1;
}
.premios .swiper-premios .premio-hover:hover .premio-image img {
  opacity: 0;
}
@media (max-width: 992px) {
  .premios .swiper-premios .premio-hover:hover .premio-image img {
    opacity: 1;
  }
}
.premios .swiper-premios .premio-hover.mobile {
  margin-bottom: 40px;
}
.premios .swiper-premios .premio-hover.mobile .premio-image {
  position: relative;
  z-index: 5;
}
.premios .swiper-premios .premio-hover.mobile .premio-content {
  position: relative;
  opacity: 1;
  padding: 80px 20px 30px 20px;
  margin-top: -50px;
  z-index: 4;
  background-color: #dfdfdf;
}
.premios .swiper-premios .premios-pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .premios .swiper-premios .premios-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
}
.premios .swiper-premios .premios-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 15px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  margin-top: 30px;
}
.premios .swiper-premios .premios-pagination .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}

.trabalhe {
  padding: 446px 0 160px 0;
}
@media only screen and (max-width: 992px) {
  .trabalhe {
    padding-bottom: 80px;
  }
}
.trabalhe .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .trabalhe img {
    max-width: 50%;
    margin-right: 20px;
  }
  .trabalhe .especialista-holder {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
}
.trabalhe .infos-holder {
  margin-top: 28px;
}
.trabalhe .infos-holder .nome {
  margin-bottom: 12px;
}
.trabalhe h2 {
  margin-bottom: 22px;
}
.trabalhe a {
  margin-top: 60px;
}/*# sourceMappingURL=quem-somos.css.map */