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

.quem-confia {
  padding-top: 20px;
  padding-bottom: 60px;
}
.quem-confia h2 {
  color: #414141;
  margin-bottom: 28px;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .quem-confia .depoimentos {
    margin: 0 20px;
  }
}
.quem-confia .depoimentos .swiper-slide {
  background-color: #ECECEC;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);
  padding: 103px 150px;
  display: flex;
  align-items: center;
  gap: 95px;
  opacity: 60%;
  height: auto;
  border-radius: 40px;
}
@media only screen and (max-width: 992px) {
  .quem-confia .depoimentos .swiper-slide {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    border-radius: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .quem-confia .depoimentos .swiper-slide {
    padding: 30px;
  }
}
.quem-confia .depoimentos .swiper-slide .texto-depoimento {
  font-family: "Gotham", sans-serif;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .quem-confia .depoimentos .swiper-slide .texto-depoimento {
    font-size: 1.25rem;
  }
}
.quem-confia .depoimentos .swiper-slide .foto-depoimentos img {
  width: 203px;
  height: 203px;
}
.quem-confia .depoimentos .swiper-slide-active {
  opacity: 100%;
}
.quem-confia .depoimentos .depoimentos-pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .quem-confia .depoimentos .depoimentos-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
  }
}
.quem-confia .depoimentos .depoimentos-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 15px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  margin-top: 30px;
}
.quem-confia .depoimentos .depoimentos-pagination .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}
.quem-confia .agende {
  display: flex;
  justify-content: center;
  margin-top: 72px;
  padding-bottom: 90px;
}

.faq {
  padding: 120px 0;
  background-color: #ECECEC;
  border-radius: 65px;
}
@media only screen and (max-width: 768px) {
  .faq {
    padding: 60px 0;
    overflow-x: hidden;
  }
}
.faq h2 {
  margin-bottom: 48px;
  text-align: center;
}
.faq .faq-holder {
  padding: 20px 0;
  border-bottom-style: solid;
  border-bottom-color: rgba(65, 65, 65, 0.5);
  border-bottom-width: 1px;
}
.faq .faq-holder .faq-title {
  display: flex;
  align-items: center;
  min-height: 46px;
}
.faq .faq-holder .faq-title .pergunta {
  width: 80%;
}
.faq .faq-holder .faq-title .pergunta h4 {
  color: #414141;
  padding: 0;
  margin: 0;
}
.faq .faq-holder .faq-title .chevron {
  width: 20%;
  text-align: right;
}
.faq .faq-holder .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq .faq-holder .faq-title.active .chevron svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq .assinatura-faq {
  text-align: center;
}
.faq .assinatura-faq .h3 {
  color: #414141;
  text-align: center;
  margin: 88px 0 32px 0;
}

.post-vertical {
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  background-color: #fff;
  height: 100%;
  max-width: 410px;
}
.post-vertical .img-holder {
  margin-bottom: 40px;
}
.post-vertical .img-holder img {
  height: 221px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
.post-vertical .post-content {
  padding: 0 20px 40px 20px;
}
.post-vertical .post-content .categoria {
  display: flex;
  margin-bottom: 18px;
}
.post-vertical .post-content .categoria a {
  color: #414141;
  text-decoration: none;
  border-style: solid;
  border-radius: 20px;
  border-color: #19E380;
  padding: 5px 30px;
  border-width: 2px;
}
.post-vertical .post-content .post-link {
  text-decoration: none;
}
.post-vertical .post-content .post-link:hover {
  text-decoration: underline;
}
.post-vertical .post-content h3 {
  color: #414141;
}
.post-vertical .post-content .post-info {
  margin-top: 25px;
  font-family: "Gotham", sans-serif;
}
@media (max-width: 768px) {
  .post-vertical {
    max-width: 100%;
    min-width: 0;
  }
}

.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;
}

#guias-section {
  font-family: gotham, sans-serif;
  margin: 20px;
}
@media (max-width: 992px) {
  #guias-section {
    overflow: scroll;
  }
}

#search-guias {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#guias-table {
  width: 100%;
  border-collapse: collapse;
}

#guias-table th {
  border-width: 0 0 2px 0;
  border-color: #414141;
  text-align: center;
}

#guias-table td {
  text-align: center;
  padding: 15px 10px;
  border: none;
}

#guias-table tr:nth-child(even) {
  background-color: #ECECEC;
}

#guias-pagination-controls {
  margin-top: 20px;
  text-align: center;
}

#prev-page-guias,
#next-page-guias {
  background-color: #19E380;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s;
  width: 30px;
  height: 30px;
}

#prev-page-guias:disabled,
#next-page-guias:disabled {
  opacity: 50%;
  cursor: not-allowed;
}

#prev-page-guias:hover,
#next-page-guias:hover {
  background-color: #19E380;
}

#current-page-guias {
  font-size: 10px;
  margin: 0 10px;
}

.planos {
  padding: 60px 0 10px 0;
}
.planos h2 {
  text-align: center;
  color: #414141;
  margin-bottom: 32px;
}
.planos .planos-nav {
  border-style: solid;
  border-width: 0 0 2px 0;
  border-color: rgba(65, 65, 65, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.planos .planos-nav button {
  background-color: transparent;
  border: none;
  margin-bottom: -4px;
  padding-bottom: 16px;
}
.planos .planos-nav button.active {
  border-style: solid;
  border-width: 0 0 6px 0;
  border-color: #19E380;
}
.planos .swiper-slide {
  padding: 0 5px;
}
.planos .swiper-slide .row {
  justify-content: center;
}
.planos .swiper-slide .title {
  text-align: center;
  margin-bottom: 25px;
}
.planos .swiper-slide .plano {
  border-radius: 4px;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .planos .swiper-slide .plano .plano-top {
    height: 245px;
  }
  .planos .swiper-slide .plano .plano-middle {
    height: 45px;
  }
  .planos .swiper-slide .plano .plano-bottom {
    height: 315px;
  }
}
.planos .swiper-slide .plano h3 {
  text-align: left;
  margin-bottom: 4px;
  font-size: 24px;
  width: 100%;
}
.planos .swiper-slide .plano .tag-reforco-area {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  padding-bottom: 15px;
}
.planos .swiper-slide .plano .tag-reforco-area .icone-plano {
  width: 56px;
  -o-object-fit: cover;
     object-fit: cover;
}
.planos .swiper-slide .plano .tag-reforco-area .tag-reforco {
  border: 1px solid #333;
  border-radius: 30px;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.planos .swiper-slide .plano .plano-titulo {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
}
.planos .swiper-slide .plano .plano-titulo span {
  font-weight: 400;
  font-size: 16px;
}
.planos .swiper-slide .plano .taxa-de-ativacao {
  margin-top: 20px;
  color: #414141;
  font-size: 15px;
}
.planos .swiper-slide .plano .valor {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #414141;
  margin-bottom: 0;
}
.planos .swiper-slide .plano .valor span {
  font-size: 2.25rem;
  font-weight: 600;
}
.planos .swiper-slide .plano .complemento {
  margin-bottom: 20px;
}
.planos .swiper-slide .plano .sob-consulta {
  margin-top: 54px;
}
.planos .swiper-slide .plano .contrate {
  padding: 8px 15px;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 30px;
  background-color: #00a55b;
  color: #fff;
  font-size: 0.8rem;
}
.planos .swiper-slide .plano .contrate img {
  filter: invert(100%) sepia(17%) saturate(5382%) hue-rotate(179deg) brightness(112%) contrast(93%);
  width: 20px;
  margin-left: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.planos .swiper-slide .plano .reforco-tipo-contratacao {
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #414141;
  display: block;
}
.planos .swiper-slide .plano .reforco-tipo-contratacao img {
  width: 16px;
  margin-right: 8px;
}
.planos .swiper-slide .plano .fale {
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.planos .swiper-slide .plano .lista-funcionalidades {
  list-style: none;
  margin: 0;
  padding: 0;
}
.planos .swiper-slide .plano .lista-funcionalidades .linha-func {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.35;
  color: #333;
}
.planos .swiper-slide .plano .lista-funcionalidades .linha-func .icone {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planos .swiper-slide .plano .lista-funcionalidades .linha-func .icone svg {
  display: block;
}
.planos .swiper-slide .plano .lista-funcionalidades .linha-func .texto a {
  color: #235DE8;
  text-decoration: underline;
  font-weight: 400;
}
.planos .swiper-slide .plano .lista-funcionalidades .linha-func .texto a:hover {
  opacity: 0.8;
}
.planos .swiper-slide .plano-personalizado .contrate {
  background-color: #818181 !important;
}
.planos .swiper-slide .compare {
  padding: 160px 0 56px 0;
}
.planos .swiper-slide .tabela-comparativa {
  height: 400px;
  overflow: scroll;
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos {
  width: 100%;
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos thead {
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos th {
  min-width: 120px;
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos tr {
  border-bottom: 1px solid #ECECEC;
  line-height: 60px;
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos td {
  font-family: "Gotham", sans-serif;
}
.planos .swiper-slide .tabela-comparativa .comparativo-planos .center {
  text-align: center;
}
.planos .swiper-slide .tabela-comparativa-info {
  display: flex;
  gap: 25px;
  padding-top: 20px;
}
.planos .video-section {
  padding: 120px 0;
  text-align: center;
}
.planos .video-section .video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.planos .video-section .video-thumb img {
  height: 458px;
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}
@media only screen and (max-width: 992px) {
  .planos .video-section .video-thumb img {
    height: 300px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .planos .video-section .video-thumb img {
    height: 201px;
  }
}
.planos .video-section .video-thumb .play-button {
  position: absolute;
}
.planos .video-section .video-frame iframe {
  height: 458px;
  width: 80%;
  margin-bottom: 50px;
  border-radius: 40px;
}

.hero {
  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);
  min-height: 493px;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 65px;
  border-bottom-right-radius: 65px;
}
@media only screen and (max-width: 992px) {
  .hero {
    padding: 60px 0;
  }
}
.hero .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .hero .row {
    flex-direction: column-reverse;
  }
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .breadcrumb-holder p,
.hero .breadcrumb-holder a {
  color: #fff;
}
.hero .video-wrapper {
  position: relative;
  max-width: 100%;
  height: 460px;
  margin-bottom: -200px;
}
@media only screen and (max-width: 992px) {
  .hero .video-wrapper {
    margin: 60px 0 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero .video-wrapper {
    height: 373px;
  }
}
@media only screen and (max-width: 586px) {
  .hero .video-wrapper {
    height: 280px;
  }
}
.hero .video-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  border-style: solid;
  border-color: #414141;
  border-width: 2px;
}
@media only screen and (max-width: 768px) {
  .hero .video-wrapper::before {
    top: -30px;
    right: -30px;
  }
}
@media only screen and (max-width: 586px) {
  .hero .video-wrapper::before {
    width: 90%;
    right: 0;
  }
}
.hero .video-thumb {
  position: relative;
  cursor: pointer;
  z-index: 9;
}
.hero .video-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: block;
}
@media only screen and (max-width: 586px) {
  .hero .video-thumb img {
    width: 90%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}
.hero .video-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 992px) {
  .hero .video-thumb .play-button {
    left: 45%;
  }
}
.hero .video-frame {
  position: relative;
  height: 460px;
  z-index: 9;
}
.hero .video-frame iframe {
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
@media only screen and (max-width: 767px) {
  .hero .video-frame iframe {
    height: 383px;
  }
}
@media only screen and (max-width: 586px) {
  .hero .video-frame iframe {
    height: 290px;
  }
}

.imagem-direita {
  padding: 254px 0 166px 0;
}
@media only screen and (max-width: 992px) {
  .imagem-direita {
    padding: 56px 0;
  }
}
.imagem-direita .row {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .imagem-direita .row {
    flex-direction: column-reverse;
  }
  .imagem-direita .row img {
    margin-top: 56px;
  }
}
.imagem-direita h2 {
  color: #414141;
  margin-bottom: 24px;
}
.imagem-direita li {
  font-family: "Gotham", sans-serif;
}

.como-funciona {
  background-color: #ECECEC;
  padding: 120px 0;
  border-radius: 65px;
}
@media only screen and (max-width: 992px) {
  .como-funciona {
    padding: 60px 0;
  }
}
.como-funciona h2 {
  text-align: center;
  color: #414141;
  margin-bottom: 48px;
}
.como-funciona .como-funciona-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 72px;
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-color: #19E380 transparent;
  scrollbar-width: thin;
}
.como-funciona .como-funciona-nav button {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #414141;
  white-space: nowrap;
  opacity: 0.5;
  border-color: transparent;
  transition: border-color 0.3s ease;
}
.como-funciona .como-funciona-nav button .index {
  font-family: "Gotham", sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  color: #414141;
}
.como-funciona .como-funciona-nav button .separador {
  color: #19E380;
  font-size: 1.5rem;
  font-weight: 800;
}
.como-funciona .como-funciona-nav .active {
  opacity: 1;
  border-style: solid;
  border-width: 1px;
  border-color: #19E380;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.como-funciona .como-funciona-nav::-webkit-scrollbar {
  height: 4px;
}
.como-funciona .como-funciona-nav::-webkit-scrollbar-track {
  background: transparent;
}
.como-funciona .como-funciona-nav::-webkit-scrollbar-thumb {
  background-color: #19E380;
  border-radius: 10px;
  background-clip: content-box;
}
@media (max-width: 768px) {
  .como-funciona .como-funciona-nav {
    justify-content: flex-start;
  }
}
.como-funciona .swiper-como-funciona .swiper-slide {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .como-funciona .swiper-como-funciona .swiper-slide {
    flex-direction: column-reverse;
  }
}
.como-funciona .swiper-como-funciona .swiper-slide .img-slide {
  width: 49%;
  margin-right: 4%;
}
@media only screen and (max-width: 992px) {
  .como-funciona .swiper-como-funciona .swiper-slide .img-slide {
    width: 100%;
    margin: 40px 0 0 0;
  }
}
.como-funciona .swiper-como-funciona .swiper-slide .conteudo-slide {
  width: 47%;
}
@media only screen and (max-width: 992px) {
  .como-funciona .swiper-como-funciona .swiper-slide .conteudo-slide {
    width: 100%;
  }
}
.como-funciona .swiper-como-funciona .swiper-slide .h3 {
  color: #414141;
  margin-bottom: 33px;
}
.como-funciona .swiper-como-funciona .swiper-slide .h3 .separador {
  color: #19E380;
  font-size: 1.5rem;
  font-weight: 800;
}
.como-funciona .swiper-como-funciona .como-funciona-pagination {
  margin-top: 30px;
}
@media only screen and (max-width: 992px) {
  .como-funciona .swiper-como-funciona .como-funciona-pagination {
    margin: 48px 0 66px 0;
    display: flex;
    justify-content: center;
  }
}
.como-funciona .swiper-como-funciona .como-funciona-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 15px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
  margin-top: 30px;
}
.como-funciona .swiper-como-funciona .como-funciona-pagination .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}

.tuor-interativo {
  padding: 60px 0 30px 0;
}
.tuor-interativo .tuor-interativo-content {
  background-color: #ECECEC;
  padding: 120px 0;
  border-radius: 65px;
  text-align: center;
  padding: 90px 40px;
}
.tuor-interativo .tuor-interativo-content h3 {
  margin-top: 20px;
  color: #414141;
}
.tuor-interativo .tuor-interativo-content .wrapper-figma {
  position: relative;
  width: 75%;
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
  margin-top: 40px;
  /* botão fullscreen */
  /* garante que o botão fique clicável no modo fullscreen */
}
.tuor-interativo .tuor-interativo-content .wrapper-figma iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
  height: 570px;
  width: 100%;
}
.tuor-interativo .tuor-interativo-content .wrapper-figma:fullscreen iframe, .tuor-interativo .tuor-interativo-content .wrapper-figma:-webkit-full-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
}
.tuor-interativo .tuor-interativo-content .wrapper-figma .figma-fullscreen-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  background: #0ea85f;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  opacity: 0.95;
}
.tuor-interativo .tuor-interativo-content .wrapper-figma .figma-fullscreen-btn:hover {
  transform: scale(1.03);
  opacity: 1;
}
.tuor-interativo .tuor-interativo-content .wrapper-figma .figma-fullscreen-btn svg {
  width: 22px;
  height: 22px;
}
:fullscreen .tuor-interativo .tuor-interativo-content .wrapper-figma .figma-fullscreen-btn, :-webkit-full-screen .tuor-interativo .tuor-interativo-content .wrapper-figma .figma-fullscreen-btn {
  z-index: 3;
}
@media (max-width: 992px) {
  .tuor-interativo .tuor-interativo-content {
    padding: 60px 20px;
  }
  .tuor-interativo .tuor-interativo-content .wrapper-figma {
    width: 100%;
    height: 410px;
  }
}
@media (max-width: 767px) {
  .tuor-interativo {
    padding: 100px 0 60px 0;
  }
  .tuor-interativo .tuor-interativo-content .wrapper-figma {
    height: 240px;
  }
  .tuor-interativo .tuor-interativo-content .wrapper-figma iframe {
    height: 350px;
  }
}

.diferenciais {
  padding: 200px 0;
}
.diferenciais h2 {
  color: #414141;
  margin-bottom: 80px;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .diferenciais h2 {
    margin-bottom: 30px;
  }
}
.diferenciais .dif-holder {
  text-align: center;
  padding: 0 3%;
}
@media only screen and (max-width: 992px) {
  .diferenciais .dif-holder {
    padding: 20px;
  }
}
.diferenciais .dif-holder img {
  width: 127px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 23px;
}
.diferenciais .dif-holder h3 {
  color: #414141;
  text-transform: none;
}

.slide-lateral {
  background-color: #ECECEC;
  padding: 120px 0;
  border-radius: 65px;
}
.slide-lateral .row {
  align-items: center;
}
.slide-lateral h2 {
  color: #414141;
  margin-bottom: 48px;
}
.slide-lateral .slide-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 35px;
}
.slide-lateral .slide-menu .slide-menu-item {
  display: flex;
  align-items: center;
  gap: 48px;
  border: none;
  background-color: transparent;
  text-align: left;
  padding: 31px 27px;
}
.slide-lateral .slide-menu .slide-menu-item img {
  width: 67px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-lateral .slide-menu .slide-menu-item .conteudo-slide h3 {
  color: #414141;
}
.slide-lateral .slide-menu .slide-menu-item .conteudo-slide p {
  color: #414141;
  margin-bottom: 0;
}
.slide-lateral .slide-menu .slide-menu-item.active {
  border-style: solid;
  border-color: #19E380;
  border-width: 2px;
  border-radius: 24px;
}
@media only screen and (max-width: 992px) {
  .slide-lateral .swiper-slide-lateral {
    margin-top: 73px;
  }
}
@media (max-width: 762px) {
  .slide-lateral {
    overflow-x: hidden;
  }
}

.detalhes {
  padding: 144px 0;
}
@media only screen and (max-width: 992px) {
  .detalhes .row {
    gap: 30px;
  }
}
.detalhes p {
  margin-bottom: 0;
}
.detalhes .linha-verde {
  display: flex;
  height: 5px;
  width: 30%;
  background-color: #19E380;
  margin-bottom: 15px;
}
.detalhes h2 {
  color: #414141;
  margin-bottom: 76px;
  text-align: center;
}
.detalhes .quadro-verde {
  padding: 60px;
  border-style: solid;
  border-width: 1px;
  border-color: #19E380;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
}
.detalhes .quadro-verde .item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .detalhes .quadro-verde .item {
    flex-direction: column;
  }
}
.detalhes .quadro-verde .item img {
  width: 89px;
  -o-object-fit: cover;
     object-fit: cover;
}
.detalhes .quadro-verde .item .titulo-icone {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #414141;
  margin-bottom: 13px;
}
.detalhes .quadro-verde .item.first {
  margin-top: 40px;
}

.especialistas {
  padding: 200px 0 40px 0;
}
.especialistas h2 {
  font-family: "Gotham", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: #414141;
}
.especialistas .row {
  align-items: center;
}
.especialistas .e-holder {
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .especialistas .e-holder {
    flex-direction: column-reverse;
  }
  .especialistas .e-holder .foto-especialista {
    display: flex;
    align-items: center;
    margin-top: 56px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .especialistas .e-holder .foto-especialista img {
    width: 70%;
  }
}
.especialistas .infos-holder {
  width: 80%;
  padding: 34px 0 0 51px;
}
@media only screen and (max-width: 767px) {
  .especialistas .infos-holder {
    width: 60%;
  }
}
.especialistas .form-holder {
  align-items: center;
}
.especialistas .form-holder img {
  width: 87px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 60px;
}

.pesquisa-de-guias {
  padding: 0 0 200px 0;
}
@media only screen and (max-width: 992px) {
  .pesquisa-de-guias {
    padding: 0 0 100px 0;
  }
}
.pesquisa-de-guias h3 {
  margin-bottom: 32px;
}
.pesquisa-de-guias input {
  margin-top: 64px;
  font-family: "Gotham", sans-serif;
}
.pesquisa-de-guias .pesquisa-guias-cta {
  padding-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pesquisa-de-guias .pesquisa-guias-cta span {
  font-size: 24px;
  margin-bottom: 20px;
}

.blog {
  padding: 160px 0;
}
.blog .h2 {
  text-align: center;
  color: #414141;
  margin-bottom: 48px;
}
.blog .swiper-button-next:after,
.blog .swiper-button-prev:after {
  font-size: 30px;
}
.blog .swiper-button-next,
.blog .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 0px);
}
.blog .swiper-button-prev,
.blog .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 0px);
}
.blog .swiper-button-next,
.blog .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 35%);
  color: #19e380;
}
.blog .pagination-blog-solucoes {
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .blog .pagination-blog-solucoes {
    margin: 48px 0 66px 0;
    display: flex;
    justify-content: center;
  }
}
.blog .pagination-blog-solucoes .swiper-pagination-bullet {
  width: 80px;
  background-color: #414141;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
}
.blog .pagination-blog-solucoes .swiper-pagination-bullet-active {
  background-color: #19E380;
  width: 92px;
}/*# sourceMappingURL=single-solucao.css.map */