/* MIXINS RESPONSIVO */
.menu {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00572f;
}

.hamburger {
  display: block;
  background: #fff;
  height: 3px;
  width: 25px;
  position: relative;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger::before,
.hamburger::after {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

#menu-hamburger {
  display: none;
}

.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 88;
  top: 0;
  left: 0;
  background: #00572f;
  overflow-y: hidden;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .overlay {
    background: #00572f;
  }
}

.overlay-content {
  position: relative;
  top: 0;
  width: 100%;
  text-align: center;
  margin-top: 0;
}

.overlay-content .social-mobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  .overlay-content .social-mobile {
    display: flex;
  }
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 2.5rem;
  color: #fff;
  display: block;
  transition: 0.3s;
  text-align: left;
  font-family: texto;
  font-weight: bold;
  letter-spacing: 4px;
}

@media only screen and (max-width: 900px) {
  .overlay a {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

.overlay a:hover,
.overlay a:focus {
  color: #419983;
}

.overlay .closebtn {
  border: none;
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

header .cont-menu {
  border-left: solid 18px #e6d41b;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  header .cont-menu {
    display: none;
  }
}

header .cont-menu ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

header .cont-menu ul .logo {
  width: 100%;
}

header .cont-menu ul li {
  width: 10%;
  height: 73px;
  line-height: 73px;
  transition: all ease-in-out 0.5s;
  text-align: center;
}

header .cont-menu ul li:hover {
  background: #e6d41b;
}

header .cont-menu ul li a {
  font-family: titulo;
  color: #00572f;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  width: 100%;
  text-align: center;
  height: 73px;
}

header .cont-menu ul .link-logo {
  width: 22%;
  margin: 0 1rem;
  background: #fff;
  z-index: 999;
  position: relative;
  margin-top: 16px;
  margin-bottom: 1rem;
}

header .cont-menu ul .link-logo:hover {
  background: #fff !important;
}

header .cont-mobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  header .cont-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
}

header .cont-mobile .logo-mobile {
  width: 100%;
  z-index: 99999;
  background: #fff;
  position: relative;
}

header .cont-mobile .logo-mobile img {
  width: 100%;
}

header .cont-mobile .menu-icon {
  display: none;
}

@media only screen and (max-width: 900px) {
  header .cont-mobile .menu-icon {
    display: block;
    margin-top: 1.35rem;
  }
}

.hr-header {
  border-bottom: solid 2px #e6d41b;
  margin: 0;
  border-top: 0;
  position: absolute;
  top: 71px;
  z-index: 99;
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .hr-header {
    position: unset;
  }
}

.footer {
  background-color: #00974d;
}

.footer .container-footer {
  border-left: solid 18px #e6d41b;
}

.footer .cont-footer {
  display: flex;
  padding: 2rem 15px;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer {
    flex-direction: column;
    max-width: inherit;
  }
}

.footer .cont-footer .mapa-empresa {
  font-family: leve;
  width: 25%;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer .mapa-empresa {
    width: 100%;
    text-align: center;
  }
}

.footer .cont-footer .mapa-empresa a {
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

.footer .cont-footer .mapa-empresa a:hover {
  color: #e6d41b;
}

.footer .cont-footer .mapa-servicos {
  width: 41%;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer .mapa-servicos {
    width: 100%;
    text-align: center;
  }
}

.footer .cont-footer .mapa-servicos a {
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  font-family: texto;
  font-size: 0.84rem;
}

.footer .cont-footer .mapa-servicos a:hover {
  color: #e6d41b;
}

.footer .cont-footer .mapa-servicos li:nth-child(1) a {
  font-family: leve;
  font-size: 1.75rem;
}

.footer .cont-footer .mapa-programacao {
  width: 41%;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer .mapa-programacao {
    width: 100%;
    text-align: center;
  }
}

.footer .cont-footer .mapa-programacao a {
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  font-family: texto;
  font-size: 0.84rem;
}

.footer .cont-footer .mapa-programacao a:hover {
  color: #e6d41b;
}

.footer .cont-footer .mapa-programacao li:nth-child(1) a {
  font-family: leve;
  font-size: 1.75rem;
}

.footer .cont-footer .mapa-multi {
  width: 25%;
  font-family: leve;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer .mapa-multi {
    width: 100%;
    text-align: center;
  }
}

.footer .cont-footer .mapa-multi a {
  color: #fff;
  font-size: 1.75rem;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

.footer .cont-footer .mapa-multi a:hover {
  color: #e6d41b;
}

.footer .cont-footer .social-footer {
  padding-left: 1.5rem;
  border-left: solid 4px #e6d41b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

@media only screen and (max-width: 900px) {
  .footer .cont-footer .social-footer {
    border-left: none;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1.3rem;
    padding: 0;
  }
}

.footer .cont-footer .social-footer li {
  margin-bottom: 0.85rem;
}

.footer .cont-footer .social-footer li img {
  width: 35px;
}

.footer .footer-assina {
  background-color: #00572f;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .footer .footer-assina {
    padding: 1.5rem 0;
  }
}

.footer .footer-assina img {
  width: 285px;
}

@media only screen and (max-width: 900px) {
  .footer .footer-assina img {
    width: 185px;
  }
}

.footer .assina-zaite {
  background: #00572f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0.5rem 15px;
  font-size: 0.84rem;
}

.footer .assina-zaite img {
  width: 120px;
}

.page-home .slide-home img {
  width: 100%
}

@media only screen and (max-width: 900px) {
  .page-home .slide-home img {
    height: 170px;
    object-fit: contain;
  }
}

.page-home .slide-home .carousel-control-prev .carousel-control-prev-icon {
  background-image: url("../icons/icon-seta.png");
  width: 35px;
  height: 60px;
}

.page-home .slide-home .carousel-control-next .carousel-control-next-icon {
  background-image: url("../icons/icon-seta.png");
  width: 35px;
  height: 60px;
  transform: rotate(180deg);
}

.page-home .chamada-servicos {
  padding: 2rem 0 3.5rem 0;
  border-left: solid 18px #e6d41b;
}

.page-home .chamada-servicos .cont-chamada-servicos {
  display: flex;
  padding-top: 2rem;
  max-width: 750px;
  margin: 0 auto;
  border-top: solid 4px #e6d41b;
  border-bottom: solid 4px #00974d;
}

@media only screen and (max-width: 900px) {
  .page-home .chamada-servicos .cont-chamada-servicos {
    flex-direction: column;
    border: none;
  }
}

.page-home .chamada-servicos .cont-chamada-servicos article {
  width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 900px) {
  .page-home .chamada-servicos .cont-chamada-servicos article {
    width: 95%;
  }
}

.page-home .chamada-servicos .cont-chamada-servicos article .icone-servico {
  background: #daece0;
  width: 160px;
  border-radius: 50%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .chamada-servicos .cont-chamada-servicos article .icone-servico img {
  width: 135px;
}

.page-home .chamada-servicos .cont-chamada-servicos article h3 {
  color: #00572f;
  font-family: texto;
  font-size: 1.15rem;
  margin-top: 0.85rem;
}

.page-home .chamada-servicos .cont-chamada-servicos article:nth-child(1) h3 {
  max-width: 190px;
}

.page-home .chamada-servicos .cont-chamada-servicos article:nth-child(2) h3 {
  max-width: 190px;
}

.page-home .chamada-servicos .cont-chamada-servicos article:nth-child(3) h3 {
  max-width: 100px;
}

.page-home .noticias-home {
  padding: 4.5rem auto;
  border-left: solid 18px #e6d41b;
}

.page-home .noticias-home h3 {
  color: #00572f;
  font-family: leve;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 0;
}

.page-home .noticias-home .outras-noticias {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
  justify-content: center;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

.page-home .noticias-home .outras-noticias li {
  width: 250px;
  background: #f6f0af;
  padding: 1.5rem;
  margin: 0 0.5rem 1.3rem 0.5rem;
  transition: all ease-in-out 0.5s;
}

.page-home .noticias-home .outras-noticias li:hover {
  background: #a5d0b3;
}

.page-home .noticias-home .outras-noticias li a {
  text-decoration: none;
}

.page-home .noticias-home .outras-noticias li img {
  width: 100%;
}

.page-home .noticias-home .outras-noticias li h5 {
  margin: 0.85rem 0;
  color: #00572f;
  font-family: texto;
  font-size: 0.9rem;
  font-weight: bold;
}

.page-home .noticias-home .outras-noticias li p {
  color: #0c1b33;
  font-family: texto;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.page-home .nosso-time-home {
  padding: 4.5rem auto;
  border-left: solid 18px #e6d41b;
}

.page-home .nosso-time-home .cont-nosso-time-home {
  display: flex;
  padding-bottom: 20px;
}

@media only screen and (max-width: 900px) {
  .page-home .nosso-time-home .cont-nosso-time-home {
    flex-direction: column;
  }
}

.page-home .nosso-time-home h3 {
  color: #0c1b33;
  font-family: leve;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 4rem;
}

.page-home .nosso-time-home ul {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  .page-home .nosso-time-home ul {
    width: 100%;
    margin-bottom: 2.3rem;
  }
}

.page-home .nosso-time-home ul .ativo-lista-equipe {
  border: solid 7px #00572f;
  height: max-content;
}

.page-home .nosso-time-home ul li {
  width: 20%;
  margin: 0 0.8rem 1rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
}

.page-home .nosso-time-home ul li img {
  width: 100%;
  border-radius: 50%;
}

.page-home .nosso-time-home .conteudo {
  width: 100%;
  background: #daece0;
  border-radius: 45px;
  padding: 1rem;
  height: max-content;
}

.page-home .nosso-time-home .conteudo .col-img {
  width: 35%;
}

.page-home .nosso-time-home .conteudo .col-img img {
  width: 100%;
}

.page-home .nosso-time-home .conteudo .col-info {
  width: 60%;
  margin-left: 1rem;
  align-self: flex-start;
}

@media only screen and (max-width: 900px) {
  .page-home .nosso-time-home .conteudo .col-info {
    width: 100%;
  }
}

.col-info-h4 {
  font-family: titulo;
  font-size: 1.7rem;
  color: #00572f;
  margin-bottom: 0;
}

.cargo {
  margin: 0.5rem 0;
}

.cargo p {
  margin-bottom: 0;
  color: #0c1b33;
  font-family: texto;
  font-size: 0.9rem;
}

.page-home .nosso-time-home .conteudo .col-info .content-info p {
  color: #0c1b33;
  font-family: texto;
  font-size: 0.9rem;
}

.page-home hr {
  background: #00572f;
  max-width: 750px;
  margin: 0 auto;
  height: 4px;
}

.js-tabcontent {
  width: 40%;
}

@media only screen and (max-width: 900px) {
  .js-tabcontent {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.js-tabcontent section {
  display: none;
}

.js-tabcontent .ativo-content-equipe {
  display: block !important;
  animation: show 0.5s forwards;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.page-contato .contato {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato {
    padding-left: 0.5rem;
  }
}

.page-contato .contato h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-contato .contato .cont-contato {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato {
    flex-direction: column-reverse;
  }
}

.page-contato .contato .cont-contato .col-infos {
  width: 50%;
  padding-right: 1rem;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato .col-infos {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: solid 4px #00974d;
  }
}

.page-contato .contato .cont-contato .col-infos .mapa {
  margin-top: 1rem;
}

.page-contato .contato .cont-contato .col-infos .mapa iframe {
  width: 100%;
  height: 370px;
  border-radius: 12px;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato .col-infos .mapa iframe {
    display: none;
  }
}

.page-contato .contato .cont-contato .col-infos ul li {
  margin-bottom: 0.5rem;
}

.page-contato .contato .cont-contato .col-infos ul li img {
  width: 25px;
  margin-right: 1.3rem;
}

.page-contato .contato .cont-contato .col-infos ul li a {
  color: #0c1b33;
  font-family: texto;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato .col-infos ul li a {
    font-size: 0.9rem;
  }
}

.page-contato .contato .cont-contato .col-infos ul li a:hover {
  color: #00974d;
}

.page-contato .contato .cont-contato .col-infos ul li:nth-child(3) {
  display: flex;
  align-items: flex-start;
}

.page-contato .contato .cont-contato hr {
  height: 459px;
  /* width: 100%; */
  width: 4px;
  background: #00974d;
  display: block;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato hr {
    display: none;
  }
}

.page-contato .contato .cont-contato .col-form {
  width: 50%;
  padding: 0 2rem;
}

@media only screen and (max-width: 900px) {
  .page-contato .contato .cont-contato .col-form {
    width: 100%;
    padding: 0 0.2rem;
  }
}

.page-contato .contato .cont-contato .col-form form .input-duo {
  display: flex;
  margin-bottom: 0.8rem;
}

.page-contato .contato .cont-contato .col-form form .input-duo .input-item {
  margin: 0 2px;
}

.page-contato
  .contato
  .cont-contato
  .col-form
  form
  .input-duo
  .input-item
  label {
  color: #0c1b33;
  font-family: texto;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
}

.page-contato .contato .cont-contato .col-form form .input-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.page-contato .contato .cont-contato .col-form form .input-content label {
  color: #0c1b33;
  font-family: texto;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
}

.page-contato .contato .cont-contato .col-form form .input-content input {
  padding: 0.8rem 0.8rem;
  border-radius: 30px;
  border: solid 1px #a5d0b3;
}

.page-contato .contato .cont-contato .col-form form .input-content textarea {
  padding: 0.8rem 0.8rem;
  border-radius: 30px;
  border: solid 1px #a5d0b3;
}

.page-contato .contato .cont-contato .col-form form .btn-enviar {
  display: flex;
  justify-content: flex-end;
}

.page-contato .contato .cont-contato .col-form form .btn-enviar button {
  padding: 0.7rem 3rem;
  border-radius: 30px;
  border: none;
  background: #00572f;
  color: #fff;
  font-family: texto;
  transition: all ease-in-out 0.5s;
}

.page-contato .contato .cont-contato .col-form form .btn-enviar button:hover {
  background: #00974d;
}

.page-noticia-destaque .noticia {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque .noticia {
    padding-left: 0.5rem;
  }
}

.page-noticia-destaque .noticia h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque .noticia h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-noticia-destaque article {
  max-width: 750px;
  margin: 0 auto;
}

.page-noticia-destaque article .titulos h3 {
  color: #00572f;
  font-family: texto;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque article .titulos h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

.page-noticia-destaque article .titulos h4 {
  color: #0c1b33;
  font-family: texto;
  font-size: 1rem;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque article .titulos h4 {
    font-size: 0.85rem;
  }
}

.page-noticia-destaque article .data-autor {
  color: #0c1b33;
  font-family: texto;
  font-size: 1rem;
  margin: 1.4rem 0;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque article .data-autor {
    text-align: center;
  }
}

.page-noticia-destaque article .img-noticia {
  margin-bottom: 3rem;
}

.page-noticia-destaque article .img-noticia img {
  width: 100%;
  object-fit: cover;
  height: 540px;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque article .img-noticia img {
    height: 225px;
  }
}

.page-noticia-destaque article .conteudo-noticia p {
  color: #0c1b33;
  font-family: texto;
  font-size: 0.9rem;
}

.page-noticia-destaque aside {
  margin: 4.5rem 0;
}

.page-noticia-destaque aside h4 {
  color: #00572f;
  font-family: leve;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
}

.page-noticia-destaque aside .outras-noticias {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
}

@media only screen and (max-width: 900px) {
  .page-noticia-destaque aside .outras-noticias {
    justify-content: center;
  }
}

.page-noticia-destaque aside .outras-noticias li {
  width: 250px;
  background: #f6f0af;
  padding: 1.5rem;
  margin: 0 0.5rem 1.3rem 0.5rem;
  transition: all ease-in-out 0.5s;
}

.page-noticia-destaque aside .outras-noticias li:hover {
  background: #a5d0b3;
}

.page-noticia-destaque aside .outras-noticias li a {
  text-decoration: none;
}

.page-noticia-destaque aside .outras-noticias li img {
  width: 100%;
}

.page-noticia-destaque aside .outras-noticias li h5 {
  margin: 0.85rem 0;
  color: #00572f;
  font-family: texto;
  font-size: 0.9rem;
  font-weight: bold;
}

.page-noticia-destaque aside .outras-noticias li p {
  color: #0c1b33;
  font-family: texto;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.page-clientes .clientes {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-clientes .clientes {
    padding-left: 0.5rem;
  }
}

.page-clientes .clientes h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-clientes .clientes h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-clientes .clientes .cont-clientes ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1015px;
  margin: 0 auto;
  margin-bottom: 3.5rem;
}

@media only screen and (max-width: 900px) {
  .page-clientes .clientes .cont-clientes ul {
    justify-content: center;
  }
}

.page-clientes .clientes .cont-clientes ul li {
  width: 13.3%;
  margin: 1rem;
}

@media only screen and (max-width: 900px) {
  .page-clientes .clientes .cont-clientes ul li {
    width: 40%;
    margin: 0.5rem;
  }
}

.page-clientes .clientes .cont-clientes ul li img {
  width: 100%;
}

.page-quem-somos .quem-somos {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-quem-somos .quem-somos {
    padding-left: 0.5rem;
  }
}

.page-quem-somos .quem-somos h2,
.page-quem-somos .quem-somos h3 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

.page-quem-somos .quem-somos h3 {
  font-size: 1.7rem;
}

@media only screen and (max-width: 900px) {
  .page-quem-somos .quem-somos h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-quem-somos .quem-somos .cont-quem-somos {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .page-quem-somos .quem-somos .cont-quem-somos {
    flex-direction: column;
  }
}

.page-quem-somos .quem-somos .cont-quem-somos .col-info {
  width: 61%;
  padding-right: 1rem;
}

@media only screen and (max-width: 900px) {
  .page-quem-somos .quem-somos .cont-quem-somos .col-info {
    width: 100%;
  }
}

.page-quem-somos .quem-somos .cont-quem-somos .col-info p {
  color: #0c1b33;
  font-family: texto;
  font-size: 1rem;
  font-weight: bold;
}

.page-quem-somos .quem-somos .cont-quem-somos .col-img {
  width: 39%;
}

@media only screen and (max-width: 900px) {
  .page-quem-somos .quem-somos .cont-quem-somos .col-img {
    width: 100%;
  }
}

.page-quem-somos .quem-somos .cont-quem-somos .col-img img {
  width: 100%;
  margin-bottom: 2rem;
}

.menu {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00572f;
}

.hamburger {
  display: block;
  background: #fff;
  height: 3px;
  width: 25px;
  position: relative;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger::before,
.hamburger::after {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s ease-in-out;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

#menu-hamburger {
  display: none;
}

.overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 88;
  top: 0;
  left: 0;
  background: #00572f;
  overflow-y: hidden;
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

#instafeed {
  display: flex;
  gap: 1rem;
}

#instafeed img {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .overlay {
    background: #00572f;
  }
}

.overlay-content {
  position: relative;
  top: 0;
  width: 100%;
  text-align: center;
  margin-top: 0;
}

.overlay-content .social-mobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  .overlay-content .social-mobile {
    display: flex;
  }
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 2.5rem;
  color: #fff;
  display: block;
  transition: 0.3s;
  text-align: left;
  font-family: texto;
  font-weight: bold;
  letter-spacing: 4px;
}

@media only screen and (max-width: 900px) {
  .overlay a {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

.overlay a:hover,
.overlay a:focus {
  color: #419983;
}

.overlay .closebtn {
  border: none;
}

@media screen and (max-height: 450px) {

  .overlay {
    overflow-y: auto;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.page-programacao .programacao {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-programacao .programacao {
    padding-left: 0.5rem;
  }
}

.page-programacao .programacao h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-programacao .programacao h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-programacao .cont-programacao {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .page-programacao .cont-programacao {
    flex-direction: column-reverse;
  }
}

.page-programacao .cont-programacao .col-info {
  width: 100%;
  padding-left: 1rem;
}

@media only screen and (max-width: 900px) {
  .page-programacao .cont-programacao .col-info {
    width: 100%;
  }
}

.page-programacao .cont-programacao .col-info p {
  color: #0c1b33;
  font-family: texto;
  font-size: 1rem;
  font-weight: bold;
}

.page-programacao .cont-programacao .col-info h3 {
  color: #00572f;
  font-family: titulo;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-programacao .cont-programacao .col-img {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .page-programacao .cont-programacao .col-img {
    width: 100%;
  }
}

.page-programacao .cont-programacao .col-img img {
  width: 100%;
  margin-bottom: 2rem;
}

.page-multi .multi {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-multi .multi {
    padding-left: 0.5rem;
  }
}

.page-multi .multi h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-multi .multi h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-multi .cont-multi {
  display: flex;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi {
    flex-direction: column;
  }
}

.page-multi .cont-multi .col-img {
  width: 60%;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi .col-img {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.page-multi .cont-multi .col-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi .col-img img {
    height: 250px;
  }
}

.page-multi .cont-multi .col-video {
  width: 40%;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi .col-video {
    width: 100%;
  }
}

.page-multi .cont-multi .col-video iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi .col-video iframe {
    height: 190px;
  }
}

.page-multi .cont-multi:nth-child(odd) {
  display: flex;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 900px) {
  .page-multi .cont-multi:nth-child(odd) {
    flex-direction: column;
  }
}

.page-servicos .servicos {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-servicos .servicos {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.page-servicos .servicos h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-servicos .servicos h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-servicos .cont-servicos {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 900px) {
  .page-servicos .cont-servicos {
    flex-direction: column;
  }
}

.page-servicos .cont-servicos .navegacao {
  width: 32%;
}

@media only screen and (max-width: 900px) {
  .page-servicos .cont-servicos .navegacao {
    width: 100%;
  }
}

.page-servicos .cont-servicos .navegacao .lista-nav {
  margin-bottom: 0;
}

.page-servicos .cont-servicos .navegacao .lista-nav .ativo-lista-servicos {
  background: #349552;
  color: #fff;
}

.page-servicos
  .cont-servicos
  .navegacao
  .lista-nav
  .ativo-lista-servicos::after {
  content: " ";
  width: 33px;
  line-height: 20px;
  height: 54px;
  background: url(../icons/seta-servicos.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  display: block;
  position: absolute;
  text-align: center;
  z-index: 999;
  right: -27px;
  top: 0;
}

.page-servicos .cont-servicos .navegacao .lista-nav li {
  background: #daece0;
  transition: all ease-in-out 0.5s;
  position: relative;
  border-radius: 0;
  color: #00572f;
  text-decoration: none;
  font-family: texto;
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 1rem 1.5rem;
  cursor: pointer;
}

.page-servicos .cont-servicos .navegacao .lista-nav li:hover {
  background: #349552;
  color: #fff;
}

.page-servicos .cont-servicos .js-tabContentServicos {
  width: 65%;
}

@media only screen and (max-width: 900px) {
  .page-servicos .cont-servicos .js-tabContentServicos {
    width: 100%;
    margin-top: 2rem;
  }
}

.page-servicos .cont-servicos .conteudo-servico {
  width: 100%;
  background: #daece0;
  padding: 1.3rem 0 1.3rem 1.3rem;
}

@media only screen and (max-width: 900px) {
  .page-servicos .cont-servicos .conteudo-servico {
    padding: 1.3rem;
  }
}

.page-servicos .cont-servicos .conteudo-servico h3 {
  font-family: leve;
  letter-spacing: 2px;
  color: #00572f;
  margin-bottom: 1.5rem;
}

.page-servicos .cont-servicos .conteudo-servico .divisao-conteudo {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .page-servicos .cont-servicos .conteudo-servico .divisao-conteudo {
    flex-direction: column;
  }
}

.page-servicos
  .cont-servicos
  .conteudo-servico
  .divisao-conteudo
  .info-servicos {
  width: 70%;
  height: 100%;
  padding-right: 1rem;
}

@media only screen and (max-width: 900px) {
  .page-servicos
    .cont-servicos
    .conteudo-servico
    .divisao-conteudo
    .info-servicos {
    width: 100%;
  }
}

.page-servicos
  .cont-servicos
  .conteudo-servico
  .divisao-conteudo
  .info-servicos
  p {
  color: #0c1b33;
  font-family: texto;
  font-size: 1rem;
  font-weight: bold;
}

.page-servicos
  .cont-servicos
  .conteudo-servico
  .divisao-conteudo
  .icon-servicos {
  width: 30%;
  align-self: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.page-servicos
  .cont-servicos
  .conteudo-servico
  .divisao-conteudo
  .icon-servicos
  img {
  width: 130px;
}

.js-tabContentServicos section {
  display: none;
}

.js-tabContentServicos .ativo-content-servicos {
  display: block !important;
  animation: show 0.5s forwards;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.moda-extranet .btn-fechar {
  width: 100%;
  padding-right: 2rem;
}

.moda-extranet .modal-dialog {
  max-width: 400px;
}

.moda-extranet .modal-header {
  border-bottom: none;
}

.moda-extranet .modal-content {
  background: #00572f;
  border-radius: 50px;
}

.moda-extranet .modal-content form .input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.moda-extranet .modal-content form .input-group input {
  width: 80%;
}

.moda-extranet .modal-content form .input-group label {
  color: #fff;
  font-family: texto;
  margin-bottom: 0;
  font-size: 1.4rem;
  width: 20%;
}

.moda-extranet .modal-content form .btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.moda-extranet .modal-content form .btn-enviar button {
  padding: 0.6rem 0.6rem;
  width: 60%;
  border-radius: 30px;
  background: #e6d41b;
  color: #00572f;
  font-family: texto;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  transition: all ease-in-out 0.5s;
  border: solid 1px #00572f;
}

.moda-extranet .modal-content form .btn-enviar button:hover {
  color: #e6d41b;
  background: #00572f;
  border: solid 1px #e6d41b;
}

.page-equipe .equipe {
  border-left: solid 18px #e6d41b;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 900px) {
  .page-equipe .equipe {
    padding-left: 0.5rem;
  }
}

.page-equipe .equipe h2 {
  margin-bottom: 3rem;
  font-family: titulo;
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: #00572f;
}

@media only screen and (max-width: 900px) {
  .page-equipe .equipe h2 {
    text-align: center;
    margin-bottom: 1.3rem;
  }
}

.page-equipe .cont-equipe {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .page-equipe .cont-equipe {
    flex-direction: column;
  }
}

.page-equipe h3 {
  color: #0c1b33;
  font-family: leve;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 4rem;
}

.page-equipe ul {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  .page-equipe ul {
    width: 100%;
    margin-bottom: 2.3rem;
  }
}

.page-equipe ul .ativo-lista-equipe {
  border: solid 7px #00572f;
  height: max-content;
}

.page-equipe ul li {
  width: 35%;
  margin: 0 0.8rem 1rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
}

.page-equipe ul li img {
  width: 100%;
  border-radius: 50%;
}

.page-equipe .conteudo {
  background: #daece0;
  border-radius: 45px;
  padding: 1rem;
  height: max-content;
  min-height: 250px;
}

.page-equipe .conteudo .col-img {
  width: 35%;
  align-self: center;
  float: left;
  margin: 0 10px 10px 0;
}

.page-equipe .conteudo .col-img img {
  width: 100%;
}

.page-equipe .conteudo .col-info {
  width: 60%;
  margin-left: 1rem;
  align-self: flex-start;
}

@media only screen and (max-width: 900px) {
  .page-equipe .conteudo .col-info {
    width: 100%;
  }
}

.page-equipe .conteudo .col-info h4 {
  font-family: titulo;
  font-size: 1.7rem;
  color: #00572f;
  margin-bottom: 0;
}

.page-equipe .conteudo .col-info .content-info p {
  color: #0c1b33;
  font-family: texto;
  font-size: 0.9rem;
}

.js-tabcontent {
  width: 60%;
}

@media only screen and (max-width: 900px) {
  .js-tabcontent {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.js-tabcontent section {
  display: none;
}

.js-tabcontent .ativo-content-equipe {
  display: block !important;
  animation: show 0.5s forwards;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

input {
  padding: 0.8rem 0.8rem;
  border-radius: 30px;
  border: solid 1px #a5d0b3;
  width: 100%;
}

input:focus {
  outline: none;
}

textarea {
  padding: 0.8rem 0.8rem;
  border-radius: 30px;
  border: solid 1px #a5d0b3;
  height: 180px;
}

textarea:focus {
  outline: none;
}

.paginacao {
  display: flex;
  justify-content: center;
  width: 100%;
}

.paginacao ul {
  display: flex;
  justify-content: center;
  background: #00572f;
  padding: 0.5rem;
  border-radius: 30px;
}

.paginacao ul li {
  margin: 0 0.3rem;
}

.paginacao ul li a {
  color: #fff;
  font-family: texto;
}

.paginacao ul li:first-child {
  margin-right: 0.9rem;
}

.paginacao ul li:last-child {
  margin-left: 0.9rem;
}

.js .js-tab-content section {
  display: none;
}

.js .js-tab-content .ativo {
  display: block;
  animation: show 0.5s forwards;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 260px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 10px;
  z-index: 9999;
  text-align: left !important;
}

.dropdown-content::before {
  content: " ";
  width: 55px;
  line-height: 0;
  height: 23px;
  background: url(../icons/seta-dropdown.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  display: block;
  position: absolute;
  text-align: center;
  z-index: 999;
  top: -22px;
  left: 23px;
}

.text-instafeed {
  color: #fff;
  font-family: titulo, sans-serif;
  font-weight: 500;
  font-size: 2rem;
}

.dropdown-content a {
  text-decoration: none;
  transition: all ease-in-out 0.5s;
  font-family: texto !important;
  font-size: 0.84rem !important;
  text-align: left !important;
  font-weight: 600;
  line-height: 34px;
  height: inherit !important;
  color: #28354b !important;
}

.dropdown-content a:hover {
  color: #e6d41b !important;
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
}

@media (max-width: 576px) {
  .social-footer {
    width: 100% !important;
  }
  #instafeed {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@font-face {
  font-family: texto;
  src: url("fonts/basicsanssf.ttf");
}

@font-face {
  font-family: texto;
  src: url("fonts/basic.ttf");
}

@font-face {
  font-family: leve;
  src: url("fonts/BebasNeueLight.otf");
}

@font-face {
  font-family: titulo;
  src: url("fonts/BebasNeue-Regular.otf");
}

html {
  scroll-behavior: smooth;
}
