/* Default
** ----------------------------------------------- */
:root {
  --primary-color: #005d28;
  --secondary-color: #000;
}

/* CRITICAL-HOME-START
   Este bloco também é extraído e inserido no head da Home para liberar
   a primeira pintura enquanto a folha completa carrega em segundo plano. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #333;
  background: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: middle;
}

a {
  color: #333;
  text-decoration: none;
  background-color: transparent;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row > [class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.align-items-center {
  align-items: center !important;
}

.topo {
  position: sticky;
  z-index: 99;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, .1) 0 4px 12px;
}

.topo .topo-box,
.logo {
  display: flex;
  align-items: center;
}

.topo .topo-box {
  justify-content: space-between;
}

.topo .logo {
  padding: 12px 0;
}

.logo {
  gap: 16px;
}

.logo .icon {
  display: flex;
  width: 70px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.logo .info {
  display: flex;
  flex-direction: column;
}

.logo small {
  color: #005d28;
  font-size: 14px;
  font-weight: 600;
}

.logo p {
  margin: 0;
  font-size: 12px;
}

.topo .menu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topo .menu li a {
  display: block;
  padding: 15px;
}

.btn-menu-responsivo {
  display: none;
}

.banner-home {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f2f8f2 0%, #f2f8f2 70%, #fff 100%);
}

.banner-home .banner-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid #8d8d8d;
  border-radius: 12px;
  background: #fff;
  color: #005d28;
  font-size: 14px;
  text-transform: uppercase;
}

.banner-home h1 {
  margin: 0;
  padding: 20px 0;
  color: #003116;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
}

.banner-home p {
  margin-top: 0;
  color: #575757;
  font-size: 16px;
}

.banner-home .overimg img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.cta-link,
.cpt-link {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.cta-link {
  background: #005d28;
  color: #fff;
}

.cpt-link {
  margin-left: 10px;
  border: 1px solid #8d8d8d;
  background: #fff;
  color: #005d28;
}

.numbers a,
.numbers i {
  color: #0f813b;
  font-weight: 600;
}

.numbers a {
  margin-right: 18px;
  font-size: 15px;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media (max-width: 991.98px) {
  .btn-menu-responsivo { display: block; }
  .topo .menu-box { display: none; }
  .banner-home { padding: 48px 0; }
  .banner-home h1 { font-size: 38px; }
  .banner-home .overimg { margin-top: 38px; }
}

@media (max-width: 575.98px) {
  .topo .logo .info { display: none; }
  .banner-home { padding: 38px 0; }
  .banner-home h1 { font-size: 32px; }
  .numbers a { display: block; margin: 8px 0; }
}
/* CRITICAL-HOME-END */

/* Default
** ----------------------------------------------- */
body {
  color: #333;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

a:hover,
a:focus {
  color: #444;
  text-decoration: none;
  outline: 0;
}


/* Topo
** ----------------------------------------------- */
.topo {
  background: #ffff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 99;
}

.topo .topo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topo .logo {
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 20px;
}

.logo .icon {
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo .info {
  display: flex;
  flex-direction: column;
}

.logo small {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.logo p {
  font-size: 12px;
}

/* Menu
** ----------------------------------------------- */
.topo .menu li {
  display: inline-block;
  position: relative;
}

.topo .menu li:hover>a {
  color: var(--primary-color);
  transition: 0.4s all;
}

.topo .menu a.menu-ativo {
  color: var(--primary-color);
  font-weight: bold;
}

.topo .menu li a {
  display: block;
  padding: 15px;
  text-decoration: none;
}

.topo .menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topo .menu ul li:hover>ul {
  display: inline-grid;
  height: 300px;
}

ul.ul-dropdown-responsivo.ul-dropdown-responsivo-2 {
  height: auto !important;
  overflow: hidden !important;
}

.topo .menu ul ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  width: auto;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  overflow-y: scroll;
}

.topo .menu ul ul li {
  width: auto;
}

.topo .menu ul ul li a {
  display: block;
  padding: 10px 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.topo .menu ul ul li a:hover {
  color: #fff;
  background: var(--primary-color);
  border-radius: 0px;
}

/* Menu Fixo Lateral
** ----------------------------------------------- */
.menu-lateral {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.menu-lateral-conteudo {
  position: fixed;
  left: -315px;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  background-color: #fff;
  border-right: 1px solid #ccc;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 2;
  transition: all 0.3s ease 0s;
}

.menu-lateral-visivel .menu-lateral-conteudo {
  left: 0;
}

.menu-lateral-conteudo ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-lateral-conteudo li {
  border-top: 1px solid #eee;
}

.menu-lateral-conteudo ul ul {
  margin-left: 15px;
}

.menu-lateral-conteudo a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}

.menu-lateral-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* WhatsApp
** ----------------------------------------------- */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  z-index: 100;
  right: 35px;
}

.whatsapp-icon i {
  font-size: 30px;
  color: #fff;
}

.whatsapp-icon a {
  color: #fff;
  background: #24cc63;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 60px;
  width: 60px;
}

.whatsapp-icon a:hover {
  text-decoration: none;
  background: #4ed882;
  transition: 0.3s all;
}

/* Conteudo
** ----------------------------------------------- */
.informacoes-link {
  margin: 15px;
  display: block;
  text-decoration: none;
  height: calc(100% - 30px);
  overflow: hidden;
  border: 1px solid #e0e8e3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 72, 38, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.informacoes-link:hover {
  color: #72b5da;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 72, 38, .14);
}

.informacoes-link img {
  width: 100%;
  display: block;
  height: 180px;
  border: 0;
  object-fit: cover;
}

.informacoes-link h4 {
  margin: 0;
  padding: 16px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1.3;
}

/* Accordion
** ----------------------------------------------- */
.accordion-titulo {
  cursor: pointer;
  background: var(--secondary-color);
  border-radius: 5px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.accordion-conteudo {
  display: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-top: 5px;
  padding: 15px;
}

div#sidebarCollapse {
  margin-top: 30px;
}

.btn-danger {
  color: #fff;
  background-color: #24cc63;
  border-color: #24cc63;
}

.btn-danger:hover {
  color: #fff;
  background-color: #189748;
  border-color: #189748;
}

/* Sidebar
** ----------------------------------------------- */
.sidebar {
  display: table-cell;
  width: 265px;
  vertical-align: top;
}

.sidebar h3 {
  padding: 10px 0;
  border-radius: 5px;
  margin: 0;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar ul li {
  border-left: 2px solid var(--primary-color);
  margin-bottom: 10px;
  padding-left: 5px;
}

.sidebar-box+.sidebar-box {
  margin-top: 15px;
}

.sidebar li a {
  display: block;
  text-decoration: none;
  padding: 6px 8px;
  text-align: left;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sidebar li a:hover,
.sidebar .ativo {
  color: var(--primary-color);
  transition: 0.3s all;
}

.sidebar-conteudo {
  padding: 15px;
}

.sidebar-box a:hover {
  text-decoration: none;
}

.sidebar-box a:hover h3 {
  background: #246276;
  transition: 0.4s all;
  color: #fff;
}

/* Footer
** ----------------------------------------------- */
.footer {
  color: #dadada;
  background: #00340d;
  padding: 60px 0 20px 0;
}

.logo_footer {
  background-color: white;
  padding: 10px 15px 5px;
  border-radius: 15px;
  width: max-content;
  margin-top: 30px;
}

.logo_footer .info {
  padding-bottom: 25px;
}

.logo_footer small {
  font-size: 12px !important;
  padding-bottom: 10px;
}

.logo_footer p {
  font-size: 10px !important;
  color: var(--primary-color) !important;
  line-height: 0px !important;
}

.logo_footer img {
  padding: 0 0 15px 0;
}

footer.footer h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #e0af3b;
}

.footer span {
  color: var(--primary-color);
}

.footer ul {
  padding: 0;
}

.footer ul li {
  display: inherit;
}

.footer ul li a {
  color: #dadada;
  font-size: 13px;
  line-height: 30px;
}

.footer ul li a:hover {
  color: var(--primary-color);
}

.footer img {
  margin: 0 5px;
}

.footer a,
.footer p {
  color: #dadada;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.footer i {
  color: #e0af3b;
}

.footer a:hover {
  color: var(--primary-color);
  transition: 0.4s all;
  text-decoration: none;
}

.footer .redes-sociais-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer .redes-sociais-footer a {
  color: #000;
  font-size: 22px;
}

.footer .redes-sociais-footer i {
  background: #fff;
  padding: 7px 12px;
  border-radius: 3px;
}

.footer .redes-sociais-footer a:hover {
  color: var(--primary-color);
  transition: 0.4s all;
}

/* Créditos
** ----------------------------------------------- */
.creditos {
  padding: 15px 0;
}

.creditos-box {
  padding: 30px 0 0 0;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 10%);
  margin-top: 20px;
}

.creditos .creditos-logo {
  width: 80px;
}

img.logo-focuspublicidade {
  width: 90px;
}

.creditos .creditos-link {
  display: flex;
  align-items: center;
}

.creditos .creditos-link a {
  margin-left: 10px;
}

.creditos-text a {
  font-size: 12px;
}

.creditos-text strong {
  font-weight: 500;
}

/* Faixa PG
** ----------------------------------------------- */
.faixa_page {
  background: var(--primary-color);
  padding: 20px 0;
}

.faixa_page h1 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Breadcrumb
** ----------------------------------------------- */
div#breadcrumb {
  color: #fff;
  font-weight: normal;
  padding-top: 5px;
}

div#breadcrumb i {
  color: var(--secondary-color);
  font-size: 10px;
}

div#breadcrumb>a:hover,
.bread>a:hover {
  text-decoration: none;
  color: var(--secondary-color);
  transition: 0.3s all;
}

.breadcrumb i {
  padding: 0 5px;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  text-decoration: none;
  color: #fff;
}

span.breadcrumb-separador {
  color: #fff;
}

.bread {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.faixa-pgs .row {
  display: flex;
  align-items: center;
}

/*
/* Politica de Privacidade
** ----------------------------------------------- */
.politica-de-privacidade {
  padding: 60px 0px;
}

.politica-de-privacidade h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.politica-de-privacidade p {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 15px;
  line-height: 1.65;
}

.politica-de-privacidade h3 {
  margin-top: 26px;
  font-size: 23px;
}

.politica-de-privacidade ul li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--secondary-color);
}

/*
/* Página de erro 404
** ----------------------------------------------- */
.erro-404 {
  padding: 60px 0px;
}

.erro-404 h2 {
  font-size: 20px;
}

.erro-404 h3 {
  font-weight: 400;
  font-size: 20px;
}

.erro-404 p {
  font-size: 25px;
  margin-top: 17px;
}

/* Mapa do Site
** ----------------------------------------------- */
.mapa-site {
  padding: 54px 0px;
}

.mapa-site h2 {
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 500;
}

.mapa-site h3 {
  margin-bottom: 13px;
  margin-top: 24px;
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-color);
}

.mapa-site ul li {
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
}

.mapa-site ul li a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s all;
}

/* Página de contato
** ----------------------------------------------- */
.contato_page {
  padding: 60px 0;
}

.box_contato {
  background: #fbfbfb;
  padding: 20px 10px 10px 10px;
  border-radius: 10px;
}

.box_contato p {
  color: #000;
  font-weight: 400;
}

.box_contato p i {
  color: var(--primary-color);
  padding-right: 5px;
}

.box_contato a:hover {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s all;
}

.box_map iframe {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  height: 210px;
  border: 2px solid var(--primary-color);
}

/* Bootbox (retorno do formulário da Home)
** ----------------------------------------------- */
.modal-retorno-formulario .modal-dialog {
  width: calc(100% - 32px);
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
}

.retorno-formulario-backdrop {
  position: fixed;
  z-index: 1040;
  inset: 0;
  background: rgba(10, 24, 17, 0.58);
  backdrop-filter: blur(2px);
}

.modal-retorno-formulario {
  position: fixed;
  z-index: 1050;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 16px;
}

.modal-retorno-formulario .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 48, 27, 0.24);
}

.modal-retorno-formulario .modal-body {
  padding: 36px 36px 18px;
}

.modal-retorno-formulario .bootbox-body {
  width: 100%;
}

.retorno-formulario {
  text-align: center;
}

.retorno-formulario__icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border: 8px solid rgba(0, 111, 57, 0.08);
  border-radius: 50%;
  background: rgba(0, 111, 57, 0.13);
  color: var(--primary-color);
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
}

.retorno-formulario__titulo {
  margin: 0 0 9px;
  color: var(--secondary-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.retorno-formulario__mensagem {
  max-width: 340px;
  margin: 0 auto;
  color: #5c6861;
  font-size: 15px;
  line-height: 1.6;
}

.modal-retorno-formulario .modal-footer {
  display: block;
  padding: 0 36px 36px;
  border: 0;
}

.modal-retorno-formulario .retorno-formulario__botao {
  width: 100%;
  min-height: 52px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color) !important;
  box-shadow: 0 10px 24px rgba(0, 111, 57, 0.2);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.modal-retorno-formulario .retorno-formulario__botao:hover,
.modal-retorno-formulario .retorno-formulario__botao:focus,
.modal-retorno-formulario .retorno-formulario__botao:active {
  background: #00451e !important;
  box-shadow: 0 12px 28px rgba(0, 70, 38, 0.28);
  color: #fff;
  transform: translateY(-1px);
}

.modal-retorno-formulario--erro .retorno-formulario__icone {
  border-color: rgba(190, 55, 55, 0.08);
  background: rgba(190, 55, 55, 0.12);
  color: #b93636;
}

.modal-retorno-formulario--erro .retorno-formulario__botao {
  background: #b93636 !important;
  box-shadow: 0 10px 24px rgba(185, 54, 54, 0.2);
}

.modal-retorno-formulario--erro .retorno-formulario__botao:hover,
.modal-retorno-formulario--erro .retorno-formulario__botao:focus,
.modal-retorno-formulario--erro .retorno-formulario__botao:active {
  background: #922929 !important;
}

@media (max-width: 575.98px) {
  .modal-retorno-formulario .modal-body {
    padding: 30px 24px 16px;
  }

  .modal-retorno-formulario .modal-footer {
    padding: 0 24px 28px;
  }

  .retorno-formulario__icone {
    width: 64px;
    height: 64px;
    margin-bottom: 17px;
    font-size: 27px;
  }

  .retorno-formulario__titulo {
    font-size: 22px;
  }
}

/* SEO
** ----------------------------------------------- */
.conteudo-seo {
  padding: 60px 0px;
  overflow: hidden;
}

.conteudo-informacoes {
  padding: 56px 0px;
}

.conteudo-informacoes a {
  text-decoration: none;
  transition: 0.4s all;
}

.conteudo-informacoes a:hover {
  text-decoration: none;
  transform: translateY(-10px);
}

.conteudo-informacoes a:hover h2 {
  color: var(--primary-color);
  transition: 0.4s;
}

.conteudo-informacoes h2 {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 10px 0px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

.conteudo-informacoes img {
  border-radius: 19px;
}

.formulario-seo {
  padding: 64px 0px;
  min-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
}

.formulario-seo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../imagens/home/quem-somos-1200.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.formulario-seo h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  position: relative;
}

.formulario-seo h1::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  width: calc(100% - 80%);
  height: 5px;
  border-radius: 2px;
}

.scroll-to-content {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 100px;
}

.scroll-to-content i {
  animation: arrowDown 2s infinite;
  color: #fff;
  font-size: 30px;
}

.scroll-to-content a:hover i {
  color: var(--primary-color);
  transition: 0.3s all;
}

.texto-seo p {
  font-size: 15px;
  text-align: justify;
}

.texto-seo h2,
.texto-seo h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 600;
  color: var(--primary-color);
}

.texto-seo ul li {
  font-size: 16px;
}

.multipla-imagens-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.multipla-imagens-seo img {
  border: 1px solid #ddd;
  width: 200px;
}


/* BreadCrumb Seo
** ----------------------------------------------- */
.breadcrump-seo {
  margin-bottom: 24px;
}

.breadcrump-seo #breadcrumb {
  text-shadow: none;
}

.breadcrump-seo #breadcrumb a {
  color: var(--secondary-color);
  font-size: 14px;
}

.breadcrump-seo #breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: none !important;
}

.breadcrump-seo #breadcrumb i {
  color: var(--primary-color);
  font-size: 16px;
}

.breadcrump-seo #breadcrumb span.page-active {
  color: var(--primary-color);
}

/* Mais visitados
** ----------------------------------------------- */
section.mais-visitados {
  padding: 32px;
  background: #f7f7f7;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

section.mais-visitados h3 {
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 700;
}

section.mais-visitados .swiper-button-next,
section.mais-visitados .swiper-button-prev {
  color: var(--secondary-color);
  top: var(--swiper-navigation-top-offset, 55%);
}

.box-mais-visitado {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 32px;
}

.box-mais-visitado a {
  display: block;
}

.box-mais-visitado h4 {
  margin-top: 16px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.box-mais-visitado img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 16px rgba(0, 72, 38, .1);
}

.box-mais-visitado a:hover {
  text-decoration: none;
}

.box-mais-visitado a:hover h4 {
  color: var(--secondary-color);
  transition: 0.3s all;
}

/* Regiões
** ----------------------------------------------- */
.regioes h3 {
  margin-top: 56px;
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 600;
}

nav.regioes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

nav.regioes a {
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  width: 19.42%;
  padding: 15px 0px;
  text-align: center;
  border-radius: 12px;
}

nav.regioes a:hover,
nav.regioes a:focus {
  text-decoration: none;
  background: var(--secondary-color);
  transition: 0.3s all;
}

div#RegioesBrModal p,
div#RegioesSpModal p {
  color: var(--secondary-color);
  font-size: 15px;
}

div#RegioesBrModal h5.modal-title,
div#RegioesSpModal h5.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Faixa Informações
** ----------------------------------------------- */
.faixa-informacoes {
  background: var(--primary-color);
  padding: 32px 0px;
  position: relative;
}

.faixa-informacoes::before {
  content: "";
  position: absolute;
  top: 0;
  width: 1000vw;
  height: 100%;
  background-color: var(--primary-color);
  left: calc(-100vw);
  z-index: -1;
}

.faixa-informacoes h2 {
  color: #fff;
  text-align: right;
  font-size: 36px;
  margin: 0;
}

.faixa-informacoes .btn-whatsapp {
  text-align: left;
}

.faixa-informacoes .btn-whatsapp a {
  background: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
}

.faixa-informacoes .btn-whatsapp a:hover {
  text-decoration: none;
  background: #24cc63;
  transition: 0.3s all;
  color: #fff;
}

/* Direitos autorais
** ----------------------------------------------- */
.texto-direitos-autorais {
  margin-top: 40px;
  font-size: 13px;
}

/* Recursos Adicionais
** ----------------------------------------------- */
header .container {
  max-width: 1300px;
}

footer .container {
  max-width: 1300px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.swiper-pagination-bullet {
  background: var(--primary-color)
}

.produtos_pg {
  padding: 60px 0;
}

/* Página Inicial
** ----------------------------------------------- */
html {
  scroll-behavior: smooth;
}

#empresa,
#servicos,
#areas-de-atuacao,
#contato {
  scroll-margin-top: 200px;
}



.banner-home {
  padding: 80px 0px;
  background: linear-gradient(to bottom,
      #f2f8f2 0%,
      #f2f8f2 70%,
      #ffffff 100%);
}

.banner-home .banner-kicker {
  padding: 6px 10px;
  border: 1px solid #8d8d8d;
  color: var(--primary-color);
  background-color: white;
  text-transform: uppercase;
  font-size: 14px;
  width: max-content;
  border-radius: 12px;
}

.banner-home h1 {
  font-size: 52px;
  color: #003116;
  font-weight: 600;
  line-height: 60px;
  padding: 20px 0px;
}

.banner-home p,
.quem-somos p,
.titulo-default p,
.conteudo-servico p {
  font-size: 16px;
  color: #575757;
}

.posi-banner {
  padding: 20px 0px;
}

.posi-banner span {
  border: 1px solid #afafaf;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 8px;
  margin-right: 5px;
}

.overimg img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.overimg img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
}

.overimg .top-text {
  position: absolute;
  bottom: -10px;
  right: -5px;
  background-color: white;
  border-radius: 12px;
  padding: 15px 15px;
}

.top-text p {
  font-size: 14px;
  margin-bottom: 0px;
  color: var(--primary-color);
}

.top-text span {
  font-size: 13px;
}

.cta-link {
  background-color: var(--primary-color);
  color: white;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s;
}

.cta-link:hover {
  background-color: #003618;
  color: white;
  transition: all 0.3s;
}

.cpt-link {
  background-color: white;
  color: var(--primary-color);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #8d8d8d;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 10px;
}

.cpt-link:hover {
  background-color: rgba(17, 150, 0, 0.082);
  color: var(--primary-color);
  transition: all 0.3s;
  border: #0c0c0c 1px solid;
}

.numbers a,
.numbers i {
  color: #0f813b;
  font-weight: 600;
}

.numbers a {
  margin-right: 18px;
  font-size: 15px;
}

.titulo-default .section-label,
.conteudo-servico .section-label {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 15px;
}

.titulo-default h2 {
  color: #00340d;
  font-size: 33px;
  font-weight: 600;
}

.green-line {
  background-color: #00521f;
  padding: 30px;
}

.green-line p {
  color: white;
}

.green-line i {
  color: #e0af3b;
}


.default {
  margin-top: 60px;
  padding: 20px 0px;
}

.qs-solu,
.ac-tipo,
.esp-grid {
  display: grid;
  grid-template-columns: repeat(2, 4fr);
}

.qs-solu p {
  font-size: 14px;
}

.quem-somos img {
  border-radius: 18px;
}

.servicos-home {
  background-color: #f5faf5;
  padding: 60px 0px;
}

.servico-card {
  margin-top: 20px;
  border-radius: 15px;
  border: 1px solid #d7e1d9;
  background-color: white;
  box-shadow: rgba(105, 128, 100, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s;
}

.servico-card:hover {
  border: 1px solid #16c057;
  box-shadow: rgba(105, 128, 100, 0.2) 0px 4px 12px;
  transition: all 0.3s;
}

.servico-card img {
  border-radius: 15px 15px 0px 0px;
}

.servico-card .card-body {
  padding: 25px 13px;
}

.servico-card h3 {
  font-size: 16px;
  color: #003116;
  font-weight: 600;
}

.servico-card p {
  font-size: 14px;
  color: #5a5a5a;
  min-height: 54px;
  margin-bottom: 30px;
}

.servico-card .card-body a {
  padding: 6px 15px;
  border-radius: 20px;
  color: var(--primary-color);
  border: 1px solid #2e4e3a;
}

.licenciamento .title-part {
  padding-bottom: 30px;
}

.licenciamento .card-eles {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 15px 10px;
}

.licenciamento .card-eles h3 {
  font-size: 18px;
  padding-bottom: 12px;
}

.licenciamento .card-eles p {
  font-size: 14px;
  color: #5a5a5a;
  min-height: 55px;
}

.areas-home,
.especialidades-home,
.info-home {
  background-color: #f5faf5;
  padding: 90px 0px;
  margin-bottom: 0px;
}

.areas-home p {
  padding: 20px 0px;
}

.ac-tipo p {
  font-size: 14px;
  padding: 15px 20px;
  background-color: white;
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  margin-left: 10px;
}

.areas-atuacao .card-areas {
  border: 1px solid #d6d6d6;
  background-color: white;
  padding: 25px 15px 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: all 0.3s;
}

.areas-atuacao h3 {
  font-size: 16px;
  color: var(--primary-color);
  padding-top: 20px;
}

.areas-atuacao span {
  font-size: 18px;
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 12px;
  background-color: #e6eee9;
  transition: all 0.3s;
}

.areas-atuacao .card-areas:hover {
  border: 1px solid #00913f;
  transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.areas-atuacao .card-areas:hover>span {
  background-color: var(--primary-color);
  color: white;
  transition: all 0.3s;
}

.atendimento-home {
  background-color: #00340d;
  padding: 90px 0px 60px;
}

.atendimento-home .titulo-default .section-label {
  color: #e0af3b;
}

.atendimento-home .titulo-default h2 {
  color: white;
}

.ah-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.atendimento-home .card-analise {
  background-color: #0d3e19;
  border: 1px solid #00913f;
  padding: 20px 10px;
  border-radius: 14px;
  max-width: 232px;
}

.card-analise span {
  font-size: 35px;
  color: #e0af3b;
  font-weight: 600;
}

.card-analise h3 {
  font-size: 16px;
  color: white;
  padding: 8px 0px;
}

.card-analise p {
  font-size: 14px;
  color: rgb(182, 182, 182);
}

.dife-grid {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
}

.dife-grid p {
  padding: 15px 20px;
  font-size: 15px;
  margin-right: 10px;
  border: 1px solid #dadada;
  border-radius: 12px;
}

.experiencia-home .container {
  border: 1px solid #d6d6d6;
  background-color: #f4faf4;
  padding: 30px 0px 10px;
  border-radius: 25px;
}

.experiencia-home .titulo-default h2 {
  font-size: 25px;
}

.hp-experiencia {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
}

.hp-experiencia p {
  background-color: white;
  padding: 9px 55px;
  margin-right: 15px;
  font-size: 14px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  color: #00441f;
}

.info-home .card-info {
  background-color: white;
  border: 1px solid #d6d6d6;
  padding: 30px 18px;
  border-radius: 15px;
  margin-top: 20px;
}

.card-info h3 {
  font-size: 16px;
  min-height: 58px;
}

.card-info span {
  font-size: 18px;
  color: var(--primary-color);
  padding: 10px 15px;
  border-radius: 12px;
  background-color: #e6eee9;
  transition: all 0.3s;
}

.card-info .card-info__label {
  padding-top: 25px;
  font-size: 16px;
  color: #298646;
}

.card-info p {
  font-size: 15px;
  color: #5c5c5c;
}

.card-info a {
  color: #005226;
  font-weight: 540;
}

.gl-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.faq-item {
  border: 1px solid #d9e4dc;
  border-radius: 12px;
  overflow: hidden;
  transition: .3s;
}

.faq-title {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-title h3 {
  margin: 0;
  font-size: 16px;
  color: var(--secondary-color);
}

.faq-title span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #c8ddd0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  color: var(--primary-color);
}

.faq-content {
  display: none;
  padding: 0 30px 30px;
}

.faq-content p {
  margin: 0;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-title span {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.faq-item.active .faq-title span i {
  transform: rotate(45deg);
}

.green-contato {
  padding: 70px 0px;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(255, 255, 255, .10) 0%,
      transparent 35%),

    radial-gradient(circle at 85% 35%,
      rgba(255, 255, 255, .12) 0%,
      transparent 45%),

    linear-gradient(90deg,
      #126c35 0%,
      #0b5f2a 30%,
      #004d1d 50%,
      #0b5f2a 70%,
      #2f7a43 100%);
}

.green-contato .titulo-default h2,
.green-contato .titulo-default p {
  color: white;
}

.green-contato .titulo-default h2 {
  font-size: 36px;
}

.wht-link {
  background-color: white;
  color: var(--primary-color);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s;
}

.wht-link:hover {
  background-color: #e0af3b;
  color: var(--primary-color);
  transition: all 0.3s;
}

.wht-link {
  background-color: white;
  color: var(--primary-color);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s;
}

.wht-link:hover {
  background-color: #e0af3b;
  color: var(--primary-color);
  transition: all 0.3s;
}

.wpp-link {
  background-color: #16c057;
  color: white;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s;
  margin-left: 15px;
}

.wpp-link:hover {
  background-color: #119142;
  color: white;
  transition: all 0.3s;
}

.box_contato-home {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-contato {
  display: flex;
  align-items: center;
  gap: 20px;

  background: #fff;
  border: 1px solid #d9e3dc;
  border-radius: 20px;
  padding: 20px 20px;
}

.item-contato .icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e6eee9;
  border-radius: 16px;
  flex-shrink: 0;
}

.item-contato .icon i {
  color: var(--primary-color);
  font-size: 18px;
}

.item-contato .info {
  display: flex;
  flex-direction: column;
}

.item-contato .info small {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  letter-spacing: 1px;
}

.item-contato .info p {
  font-size: 13px;
  color: #141414;
}

.item-contato .info a {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
}

.conteudo-servico {
  display: none;
  padding: 60px 32px;
  background-color: white;
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.conteudo-servico.active {
  display: flex;
  /* ou block, depende do layout */
}

.tabs-servicos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab {
  padding: 15px 30px;
  border: 1px solid #dcdcdc;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  transition: .3s;
}

.tab.active {
  background: var(--primary-color);
  color: #fff;
}

.conteudo-servico h3 {
  font-size: 28px;
  padding: 10px 0px;
  font-weight: 550;
}

.esp-grid p {
  padding: 15px 12px;
  font-size: 14px;
  margin-right: 10px;
  border: 1px solid #dadada;
  border-radius: 12px;
  background-color: #f9fdf9;
}

.esp-grid i {
  color: var(--primary-color);
}

.form-orcamento {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #dfe7df;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.form-orcamento .form-header {
  margin-bottom: 20px;
}

.form-orcamento .form-header h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-orcamento .form-header p {
  color: #666;
  margin: 0;
}

.form-orcamento .form-group {
  margin-bottom: 22px;
}

.form-orcamento label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.form-orcamento label span {
  color: #d11a2a;
}

.form-orcamento .form-control {
  height: 45px;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  padding: 0 18px;
  box-shadow: none;
  transition: .3s;
  font-size: 14px;
}

.form-orcamento textarea.form-control {
  height: 130px;
  padding: 16px 18px;
  resize: none;
}

.form-orcamento .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 104, 55, .12);
}

.form-orcamento .btn-enviar {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: .3s;
}

.form-orcamento .btn-enviar:hover {
  background: var(--secondary-color);
}

/* Keyframes - Animações //media
** ----------------------------------------------- */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1220px;
  }
}

@keyframes arrowDown {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 10px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.fixed-sidebar-link {
  /* display: flex;
	flex-direction: column; */
  text-align: center;
  padding: 16px 0;
  flex: 1;
}

.fixed-sidebar-link span {
  font-size: 13px;
}

.fixed-sidebar-link i {
  font-size: 15px;
}

.barra-footer {
  justify-content: unset !important;
  gap: 0;
}

.barra-footer a:nth-child(1) {
  background-color: var(--primary-color);
  color: #fff;
}

.barra-footer a:nth-child(2) {
  background-color: #24cc63;
  color: #fff;
}

.box-seo-image {
  height: 140px;
  display: block;
  transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.box-seo-image img {
  border: 1px solid var(--primary-color);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.box-seo-image:hover {
  transform: scale(1.02);
}

/* Galeria das páginas de informações */
.galeria-seo {
  position: relative;
  width: 100%;
  margin: 8px 0 34px;
}

.galeria-seo__swiper {
  padding: 4px 4px 36px;
}

.galeria-seo__link {
  position: relative;
  display: block;
  height: 310px;
  overflow: hidden;
  border-radius: 16px;
  background: #edf3ef;
  box-shadow: 0 7px 24px rgba(0, 72, 38, .12);
}

.galeria-seo__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 61, 32, .38));
  opacity: 0;
  transition: opacity .25s ease;
}

.galeria-seo__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.galeria-seo__link:hover img,
.galeria-seo__link:focus img {
  transform: scale(1.045);
}

.galeria-seo__link:hover::after,
.galeria-seo__link:focus::after,
.galeria-seo__link:hover .galeria-seo__ampliar,
.galeria-seo__link:focus .galeria-seo__ampliar {
  opacity: 1;
}

.galeria-seo__ampliar {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  opacity: .88;
  transition: opacity .25s ease, transform .25s ease;
}

.galeria-seo__link:hover .galeria-seo__ampliar,
.galeria-seo__link:focus .galeria-seo__ampliar {
  transform: scale(1.08);
}

.galeria-seo .swiper-button-prev,
.galeria-seo .swiper-button-next {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 4px 16px rgba(0, 72, 38, .24);
}

.galeria-seo .swiper-button-prev::after,
.galeria-seo .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.galeria-seo .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

@media (max-width: 767px) {
  .galeria-seo {
    margin-bottom: 26px;
  }

  .galeria-seo__link {
    height: 240px;
  }

  .galeria-seo .swiper-button-prev,
  .galeria-seo .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/* Responsividade da página inicial e dos componentes compartilhados */
@media (max-width: 991.98px) {
  .banner-home {
    padding: 54px 0;
  }

  .banner-home h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .overimg {
    margin-top: 44px;
  }

  .gl-grid {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .gl-grid p {
    margin: 0;
  }

  .quem-somos img {
    margin-bottom: 34px;
  }

  .licenciamento .title-part .text-right {
    margin: 10px 0 28px;
    text-align: left !important;
  }

  .licenciamento .card-eles {
    height: calc(100% - 18px);
    margin-bottom: 18px;
  }

  .areas-home .ac-tipo {
    margin-top: 32px;
  }

  .conteudo-servico {
    padding: 38px 26px;
  }

  .conteudo-servico .esp-grid {
    margin-top: 34px;
  }

  .ah-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 0;
  }

  .atendimento-home .card-analise {
    width: 100%;
    max-width: none;
  }

  .dife-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .dife-grid p {
    margin: 0;
  }

  .hp-experiencia {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hp-experiencia p {
    margin: 0;
    padding: 12px 16px;
  }

  .info-home .card-info {
    height: calc(100% - 20px);
    margin-bottom: 20px;
  }

  .green-contato .justify-content-end {
    justify-content: flex-start !important;
    margin-top: 16px;
  }

  .form-orcamento {
    margin-top: 36px;
  }
}

@media (max-width: 767.98px) {
  body {
    overflow-x: hidden;
  }

  .default,
  .servicos-home,
  .areas-home,
  .especialidades-home,
  .info-home,
  .atendimento-home,
  .green-contato {
    margin-top: 0;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .banner-home {
    padding: 38px 0 48px;
  }

  .banner-home .banner-kicker {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }

  .banner-home h1 {
    padding: 17px 0;
    font-size: clamp(32px, 8.8vw, 40px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .banner-home br {
    display: none;
  }

  .banner-home .cta-link,
  .banner-home .cpt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin: 12px 0 0;
    text-align: center;
  }

  .numbers {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .numbers a {
    margin-right: 0;
  }

  .overimg {
    margin-top: 30px;
  }

  .overimg .top-text {
    right: 8px;
    bottom: 8px;
  }

  .green-line {
    padding: 26px 8px;
  }

  .gl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gl-grid p {
    padding: 10px 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .titulo-default h2 {
    font-size: 27px;
    line-height: 1.22;
  }

  .titulo-default br {
    display: none;
  }

  .qs-solu,
  .ac-tipo,
  .esp-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ac-tipo p,
  .esp-grid p {
    margin-right: 0;
    margin-left: 0;
  }

  .tabs-servicos {
    width: 100%;
    gap: 9px;
  }

  .tab {
    width: 100%;
    padding: 12px 18px;
  }

  .conteudo-servico {
    padding: 28px 20px;
  }

  .conteudo-servico h3 {
    font-size: 23px;
    line-height: 1.25;
  }

  .ah-grid,
  .dife-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .atendimento-home .card-analise {
    padding: 22px 18px;
  }

  .experiencia-home .container {
    width: calc(100% - 30px);
    padding: 30px 18px 20px;
  }

  .hp-experiencia {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-title {
    gap: 14px;
    padding: 15px 18px;
  }

  .faq-title h3 {
    flex: 1;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-title span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .faq-content {
    padding: 0 18px 22px;
  }

  .green-contato .titulo-default h2 {
    font-size: 29px;
  }

  .green-contato .justify-content-end {
    gap: 10px;
    margin-right: 0;
    margin-left: 0;
  }

  .green-contato .wht-link,
  .green-contato .wpp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 0;
    text-align: center;
  }

  .item-contato {
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
  }

  .item-contato .info {
    min-width: 0;
  }

  .item-contato .info a,
  .item-contato .info p {
    overflow-wrap: anywhere;
  }

  .form-orcamento {
    padding: 26px 20px;
    border-radius: 22px;
  }

  section.mais-visitados {
    padding: 26px 18px;
  }

  .box-mais-visitado img {
    height: 190px;
  }
}

@media (max-width: 399.98px) {
  .hp-experiencia,
  .gl-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
