/* CSS será estruturado posteriormente */
/* Import da fonte Raleway do Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Aplicar Raleway como fonte padrão em todo o site */
* {
  font-family: "Raleway", sans-serif;
}

body {
  font-family: "Raleway", sans-serif;
  background-image: url("../imgs/bg-textura.png");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 140%;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}
h5 {
  font-size: 22px;
}
a,
p {
  font-size: 16px;
}
a {
  text-decoration: none;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}
img {
  max-width: 100%;
}
.hero-banner {
  background-image: url("../imgs/hero-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner h1 {
  color: #fff;
}

.btn-white {
  color: #735148;
  padding: 12px 35px 12px 24px;
  font-weight: 600;
  border-radius: 100px;
  background-color: #fff;
  position: relative;
  transition: all 0.5s ease;
  &:hover {
    background-color: #907d79;
    color: #fff;
  }
}
.btn-white::after {
  content: "";
  background-image: url("../imgs/icon-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 17px;
  top: 13px;
  transition: all 0.5s ease;
}
.btn-white:hover::after {
  right: 12px;
  filter: brightness(0) invert(1);
}

.btn-brown {
  color: #fff;
  padding: 12px 35px 12px 24px;
  font-weight: 600;
  border-radius: 100px;
  background-color: #735148;
  position: relative;
  transition: all 0.5s ease;
  &:hover {
    background-color: #907d79;
    color: #fff;
  }
}
.btn-brown::after {
  content: "";
  background-image: url("../imgs/icon-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 17px;
  top: 13px;
  filter: brightness(0) invert(1);
  transition: all 0.5s ease;
}
.btn-brown:hover::after {
  right: 12px;
}
.balao-compromisso .row {
  border-radius: 10px;
  background: #735148;
  box-shadow: 0 0 40px 0 rgba(0, 66, 130, 0.1);
  padding: 40px;
}
.balao-compromisso h3,
.balao-compromisso p {
  color: #fff;
}

header.header-content {
  position: absolute;
  width: 100%;
  transition: background-color .25s ease, box-shadow .25s ease;
}
.page-template-politica header.header-content {
  background: #313236; 
}

header.header-content.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #313236;          /* ajuste a cor conforme seu layout */
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  z-index: 9999;
  animation: headerSlideDown .25s ease;
}

/* animação de entrada sutil */
@keyframes headerSlideDown {
  from { transform: translateY(-12px); opacity: .98; }
  to   { transform: translateY(0);      opacity: 1; }
}
.menu-header ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-header ul li a {
  color: #fff;
  font-weight: 600;
  position: relative;
  text-decoration: none; /* remove sublinhado padrão */
}

.menu-header ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* distância abaixo do texto */
  width: 0%;
  height: 2px;
  background-color: #fff; /* cor da linha */
  transition: width 0.3s ease;
}

.menu-header ul li a:hover::after {
  width: 60%;
}
.header-content-inner {
  display: flex;
  justify-content: space-between;
  padding: 16px 0px;
  align-items: center;
}
.menu-header .btn-brown {
  padding: 8px 35px 8px 24px;
}
.content-compromisso p {
  font-size: 14px;
}
.menu-header .btn-brown::after {
  width: 16px;
  height: 16px;
  right: 17px;
  top: 12px;
}
.menu-header .btn-brown:hover::after {
  right: 12px;
}
.balao-compromisso {
  position: relative;
  margin-top: -115px;
}

.btn-solo {
 margin-top: 30px;
 padding-bottom: 10px;
}

.two-box-compromisso {
  display: flex;
  gap: 20px;
}
.box-compromisso {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: baseline;
  width: 100%;
}

/* Estilos para o carrossel de casos */
.carrossel-casos {
  margin-top: 46px;
}

.box-caso {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  justify-content: space-between;
  min-height: 566px;
}
.card-processo {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
}
.card-processo h4 {
  color: #313236;
  font-size: 16px;
  font-weight: 600;
}
.card-processo p {
  font-size: 14px;
  color: #907d79;
}
.card-processo span {
  color: #735148;
  font-weight: 600;
}
.menu-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icone-processo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  justify-content: space-between;
  padding-top: 20px;
}

.icone-processo img {
  width: auto !important;
}

.icone-processo span {
  background: #907d79;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.box-caso h4 {
  color: #2c2c2c;
  margin-bottom: 16px;
  font-weight: 600;
}

.box-caso p {
  color: #2c2c2c;
  margin-bottom: 20px;
  font-size: 14px;
}

.detalhes-processo {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
}
.descricao-processo {
  font-size: 14px;
  font-weight: 500;
  color: #4b4b4b;
}
.detalhe-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pesquisas-processos-content .detalhe-item {
  flex-direction: column;
  align-items: flex-start;
}
.pesquisas-processos-content .detalhe-item .label {
  font-size: 14px;
  font-weight: 500;
  color: #4b4b4b;
}
.pesquisas-processos-content .detalhes-processo {
  border-radius: 10px;
}
.pesquisas-processos-content .icone-processo img {
  width: 60px !important;
}
.detalhe-item:last-child {
  margin-bottom: 0;
}

.detalhe-item .label {
  font-weight: 500;
  color: #2c2c2c;
  font-size: 14px;
}

.detalhe-item .valor {
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 600;
}

.detalhe-item .valor.vara {
  color: #735148;
  font-weight: 600;
  font-size: 14px;
}

.carrossel-casos a:hover .box-caso {
  background: rgba(0, 0, 0, 0.1);
}

.faq-content {
  background: #725148;
  position: relative;
}
.faq-content::before {
  content: "";
  position: absolute;
  bottom: -100px;
  width: 100%;
  height: 120px;
  background-color: #725148;
  z-index: 2;
}
.faq-content h2,
.faq-content p {
  color: #fff;
}
.linha-processos-boxes {
  row-gap: 30px;
}
/* Estilos para o acordeão personalizado */
.accordion-custom {
  margin-top: 20px;
}
.linha-mostrar-mais {
  padding-top: 48px;
}
.accordion-item {
  border-radius: 8px;
  margin-bottom: 16px;
  background: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
  border-radius: 8px;
}

.accordion-header h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  
  background: transparent;
  border-radius: 0 0 8px 8px;
  color: #fff;
}
footer  a:hover {
  color: #735148 !important;
}
.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.accordion-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

/* Sinal de + (padrão) */
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #907d79;
  transition: all 0.3s ease;
}

.accordion-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

/* Quando o acordeão está ativo → vira "-" */
.accordion-item.active .accordion-icon::after {
  opacity: 0; /* esconde a barrinha vertical */
}

.accordion-content p {
  color: #fff;
  padding-top: 16px;
}
.detalhe-brwon img {
  max-width: 100%;
}
.footer-content {
  background-color: #313236;
  padding-bottom: 24px;
  position: relative;
  z-index: 2;
}
.detalhe-black {
  position: relative;
  z-index: 2;
}
.logo-sociais {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}

.detalhe-black img {
  max-width: 100%;
}

.footer-content p {
  color: #f2f2f2;
}

.logo-footer {
  padding-bottom: 40px;
}
.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-content ul li {
  padding-bottom: 16px;
}
.footer-content ul li a {
  color: #fff;
  font-weight: 400;
}

.footer-content h5 {
  color: #fff;
  padding-bottom: 40px;
}
.contato-footer li {
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.links-politicas {
  display: flex;
  align-items: center;
  gap: 32px;
}
.direitos-politica {
  display: flex;
  align-items: center;
  gap: 32px;
}
.links-politicas a {
  font-size: 14px;
  color: #f2f2f2;
}
.direitos-politica p {
  margin-bottom: 0;
  font-size: 14px;
  color: #f2f2f2;
}
.footer-content hr {
  background-color: rgba(93, 90, 136, 0.4);
  color: rgba(93, 90, 136, 0.4);
  margin-bottom: 24px;
}

.ili-icon {
  font-size: 14px;
  color: #f2f2f2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.direitos-ili {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 45%;
}
.carrossel-casos .owl-nav button.owl-prev,
.carrossel-casos .owl-nav button.owl-next {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* use PHP aqui porque o CSS está sendo impresso pelo WordPress */
.carrossel-casos .owl-nav button.owl-prev {
  background-image: url("../imgs/icon-left.png");
  margin-left: -40px;
}

.carrossel-casos .owl-nav button.owl-next {
  background-image: url("../imgs/icon-rigth.png");
  margin-right: -15px;
}

/* esconde o texto padrão dos botões */
.carrossel-casos .owl-nav button span {
  display: none;
}

.escritorio-content {
  background-image: url("../imgs/bg-escritorio.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.escritorio-content h2 {
  color: #fff;
}

.detalhe-granulado {
  margin-top: -39px;
}

.sobre-escritorio h3 {
  font-weight: 500;
  color: #4b4b4b;
}
.spn-brown {
  color: #735148;
}

.box-escritorio {
  padding: 24px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
}

.box-escritorio p {
  font-weight: 600;
  padding-top: 32px;
  color: #4b4b4b;
}

.detalhe-rafael-bottom {
  text-align: end;
}
.rafael-dias-content {
  background-color: #313236;
}

.title-rafael-dias h2 {
  font-size: 96px;
  color: #907d79;
  line-height: 120%;
}

.title-rafael-dias p {
  color: #ebebeb;
}

.linha-rafael-dias {
  padding-top: 40px;
  align-items: center;
  justify-content: space-between;
}
.linha-rafael-dias p {
  color: #fff;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1140px;
}
.equipe-tecnica {
  background-color: #313236;
}
.equipe-tecnica hr {
  color: #735148;
  margin-top: 60px;
  margin-bottom: 60px;
}
.title-equipe-tecnica h2 {
  color: #907d79;
  font-size: 48px;
}
.title-equipe-tecnica {
  position: sticky;
  top: 100px;
}
.box-equipe-tecnica {
  padding: 32px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  height: 338px;
  display: flex;
  flex-direction: column;
gap: 30px;
}
.box-equipe-tecnica h5 {
  font-size: 24px;
  color: #fff;
}

.box-equipe-tecnica p {
  color: #ebebeb;
}

.box-equipe-tecnica-content {
  row-gap: 26px;
}

.box-principios {
  padding: 32px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  height: 479px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.linha-principios {
  padding-top: 48px;
}
.box-principios h5 {
  color: #2c2c2c;
  font-size: 28px;
}
.box-principios p {
  color: #4b4b4b;
}

.processos-content {
  background-image: url("../imgs/bg-processos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.processos-content h2 {
  color: #fff;
}
section.pesquisas-processos-content {
  margin-top: -40px;
}
/* Pesquisas Processos */
.pesquisas-processos {
  background-color: #735148;
  padding: 24px;
  border-radius: 10px;
}

.single-processo-page {
  background-color: #313236;
  padding-top: 200px;
  padding-bottom: 90px;
}

.single-processo-page h1 {
  color: #fff;
}
.single-processo-page p, .single-processo-page a {
  color: #ebebeb;
  font-weight: 600;
}

.img-processo-single {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
}

.content-lateral-single {
  position: sticky;
  top: 20px;
}

.box-responsavel-processo {
  margin-bottom: 24px;
  padding: 32px;
  background: #f2f2f2;
  border-radius: 10px;
}

.estagio-processo {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #907d79;
}
.informacoes-gerais {
  padding: 32px;
  border-radius: 10px;
  background: #f2f2f2;
}

.single-processo-content h3 {
  font-size: 17px;
  margin-bottom: 0;
}

.title-processo-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.gestao-documentos {
  padding: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.box-links-uteis {
  padding: 32px;
  background: #f2f2f2;
  border-radius: 10px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.info-item span {
  font-size: 14px;
}
.info-label {
  color: #2c2c2c;
  font-weight: 500;
  opacity: 0.6;
}
.info-value a {
  color: #4b4b4b;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.estagio-processo-content p {
  font-size: 14px;
  color: #2c2c2c;
  font-weight: 500;
  opacity: 0.6;
}
.box-responsavel-processo ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 24px;
}
.box-responsavel-processo ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #4b4b4b;
  font-weight: 600;
}
.wpp-single {
  padding: 12px 45px 12px 24px;
}
.wpp-single::after {
  background-image: url("../imgs/icon-wpp-single.png");
  right: 20px;
}

.box-links-uteis ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.box-links-uteis ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: #f2f2f2;

  padding: 8px 12px;
}
.box-links-uteis ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #735148;
}

/* Container geral das abas */

/* Estilo da barra de navegação */
.gestao-documentos-content .nav-tabs {
  border-bottom: none; /* remove a linha padrão */
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 4px;
  justify-content: flex-start;
}
.anchor-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
  border-radius: 4px;
}

.anchor-link:hover {
  color: #735148;
  text-decoration: none;

  background-color: rgba(187, 184, 190, 0.1);
  padding-left: 10px;
}

/* Scroll suave para âncoras */
html {
  scroll-behavior: smooth;
}

/* Estilo para H2s com âncoras no conteúdo */
.politica-content-text h2[id] {
  scroll-margin-top: 100px; /* Espaço para o header fixo */
  position: relative;
}

.politica-content-text h2[id]:target {
  color: #735148;
  transition: color 0.3s ease;
}

/* Cada aba (tab) */
.gestao-documentos-content .nav-tabs .nav-link {
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #4b4b4b;
  padding: 8px 12px;
  margin-right: 5px;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 600;
  width: 160px;
}

/* Aba ativa */
.gestao-documentos-content .nav-tabs .nav-link.active {
  background: #735148;
  color: #ebebeb;
}

/* Aba hover */
.gestao-documentos-content .nav-tabs .nav-link:hover:not(.active) {
  background: rgba(115, 81, 72, 0.15);
  color: #735148;
}

/* Conteúdo dos documentos */
.gestao-documentos-content .document-item,
.gestao-documentos-content .d-flex.align-items-center.justify-content-between {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  padding: 9px;
  margin-bottom: 16px;
}

/* Botão de download */
.gestao-documentos-content .btn-download,
.gestao-documentos-content .btn-outline-secondary {
  background: #fff;
  color: #735148;
  font-size: 14px;

  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 5px 12px;
}
span.razao-social {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.gestao-documentos-content .btn-download img,
.gestao-documentos-content .btn-outline-secondary img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
#principais p {
  font-size: 14px;
  font-weight: 600;
  color: #313236;
  line-height: 1;
}
#principais small {
  font-size: 12px;
  font-weight: 500;
  color: #2c2c2c;
}
#principais button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);

  background: #f2f2f2;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: #735148;
}

.search-content {
  background-color: #735148;
  padding-top: 200px;
  padding-bottom: 90px;
}

.search-content p {
  color: #dadad2;
}

.search-content h2 {
  color: #fff;
}

.linha-paginacao {
  padding-top: 48px;
}

.card-modelo {
  padding: 24px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.two-btn-modelo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.card-modelo span {
  font-size: 12px;
  color: #735148;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  opacity: 0.4;
  background: rgba(115, 81, 72, 0.2);
  padding: 16px 16px;
}

.two-btn-modelo span {
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
  padding: 8px 12px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  text-transform: capitalize;
}

.content-modelo h3 {
  color: #4b4b4b;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}

.content-modelo p {
  font-size: 14px;
  color: #4b4b4b;
  font-weight: 500;
  line-height: 140%;
}

.two-btn-modelo .btn-brown {
  padding: 12px 45px 12px 24px;
}

.two-btn-modelo .btn-brown::after {
  transform: rotate(90deg);
  top: 14px;
  right: 21px;
}

.two-btn-modelo .btn-brown:hover::after {
  right: 21px;
  top: 18px;
}

section.modelos-content {
  background-image: url("../imgs/bg-modelo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section.modelos-content h2 {
  color: #fff;
}

section.modelos-content p {
  color: #fff;
}

.linha-mostrar-mais {
  padding-top: 40px;
}

.filter-toolbar .btn-filter {
  border: none;
  background: rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  border-radius: 14px;
  font-weight: 500;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4b4b4b;
}
.btn-filter:hover {
  background: #a1908b;
  color: #ebebeb;
}
.filter-toolbar .btn-filter.active {
  background: #735148;
  color: #ebebeb;
}

.informacoes-importantes .row {
  padding: 40px 80px;
  border-radius: 10px;
  background: #735148;
  box-shadow: 0 0 40px 0 rgba(0, 66, 130, 0.1);
}

.informacoes-importantes h2 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
}
.informacoes-importantes p {
  color: #fff;
  margin-bottom: 0;
}

.informacoes-importantes hr {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #907d79;
}

.contato-content {
  background-color: #313236;
  padding-top: 200px;
  padding-bottom: 120px;
}
.contato-content h2 {
  color: #907d79;
  margin-bottom: 40px;
}
.contato-content p {
  color: #ebebeb;
}
.contato-content span {
  color: #907d79;
  font-size: 14px;
  font-weight: 500;
}
.detalhe-black-contato {
  position: relative;
}
.mapa-contato iframe {
  width: 100%;
  height: 450px;
}

section.mapa-contato {
  margin-top: -40px;
}

.detalhe-granulado-contato {
  text-align: end;
  margin-top: -46px;
  position: relative;
}

.faq-contato {
  background: transparent;
}

.faq-contato .accordion-header h4 {
  color: #2c2c2c;
}
.faq-contato .accordion-content p {
  color: #2c2c2c;
}
.faq-contato .accordion-item {
  background: transparent;
}
.faq-contato .accordion-item .accordion-header {
  background: transparent;
}
.faq-contato .accordion-item .accordion-header h4 {
  color: #2c2c2c;
}

.faq-contato h2 {
  color: #735148;
}

.faq-contato p {
  color: #4b4b4b;
}

.faq-content.faq-contato::before {
  background: transparent;
}

.credito-content {
  background-image: url("../imgs/bg-credito.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-habilitacoes {
  position: sticky;
  top: 80px;
}

.credito-content h1 {
  color: #fff;
}

.habilitacao-content h2 {
  color: #735148;
}
.politica-content {
  padding-top: 200px;
  padding-bottom: 120px;
  background-color: #735148;
}
.politica-content h2 {
  color: #fff;
}

.title-politica {
  position: sticky;
  top: 80px;
}
.title-politica h2 {
  color: #735148;
  font-size: 32px;
}

/* Menu Mobile */
.mobile-menu-toggle {
  display: none;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: 16px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: #725148;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #725148;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  height: 100%;
  margin-left: auto;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.logo-mobile img {
  max-height: 40px;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-right: 35px;
}

.close-line {
  width: 25px;
  height: 3px;
  background-color: #735148;
  border-radius: 2px;
}

.close-line:nth-child(1) {
  transform: rotate(45deg) translate(0px, 5px);
}

.close-line:nth-child(2) {
  transform: rotate(-45deg) translate(0px, -5px);
}

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

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  color: #313236;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #735148;
}

.mobile-btn-container {
  margin-top: 40px;
  padding-top: 20px;
}

.mobile-btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 15px 20px;
}
.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 45%;
}

/* Controle de visibilidade dos modelos */
.modelo-card-hidden {
  display: none !important;
}

.modelo-card-visible {
  display: block !important;
}

/* Animação suave para os cards */
.modelo-card {
  transition: all 0.3s ease;
}

#ver-mais-btn {
  color: #fff;
  padding: 12px 35px 12px 24px;
  font-weight: 600;
  border-radius: 100px;
  background-color: #735148;
  position: relative;
  transition: all 0.5s ease;
  border: none;
  &:hover {
    background-color: #907d79;
    color: #fff;
  }
}
#ver-mais-btn::after {
  content: "";
  background-image: url("../imgs/icon-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 15px;
  top: 14px;
  filter: brightness(0) invert(1);
  transition: all 0.5s ease;
}
#ver-mais-btn:hover::after {
  right: 12px;
}

/* Esconder botão quando não há mais itens */
#ver-mais-container.hidden {
  display: none;
}

input.form-control.search-input {
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.04);
  border: 0.5px solid #735148;
  padding: 12px 24px;
}
.input-group-home {
  position: relative;
}
button.btn.search-btn {
  position: absolute;
  right: 0;
  top: 5px;
}
.fomr-processos input.form-control.search-input {
  border-radius: 10px;
  background-color: #fff;
  border: none;
}
select#filtro-status {
  padding: 12px 24px;
}
select#filtro-comarca {
  padding: 12px 24px;
}
.form-group-home {
  position: relative;
}
.form-control-search {
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.04);
  border: 0.5px solid #fff;
  color: #fff;
  width: 100%;
}
.contact-form label {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  width: 100%;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  width: 100%;
  padding: 11px 0px;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #ffffff78;
  background: transparent;
  color: #fff;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
  width: 100%;
  padding: 11px 0px;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #ffffff78;
  background: transparent;
  color: #fff;
}
.cont-text-lgpd span {
  font-size: 14px;
  font-style: normal;
  color: #fff;
  text-transform: none;
}
.cont-text-lgpd span a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}
.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}
span.wpcf7-list-item {
  margin: 0;
}
span.wpcf7-spinner {
  display: none;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-content.btn-brown {
  width: 100%;
  border: none;
}
.form-habilitacoes label { 
  color: #2C2C2C;
} 

.form-habilitacoes input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required { 
  border-bottom: 1px solid #2c2c2c57;
  background: transparent;
  color: #2C2C2C;
}

input.wpcf7-form-control:focus-visible {
  border-bottom: 1px solid #2c2c2c57;
  background: transparent;
  color: #2C2C2C;
}
input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  padding: 11px 0px;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #2c2c2c57;
  background: transparent;
}
.form-habilitacoes .wpcf7-list-item label {
  align-items: normal;
  gap: 5px;
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex
;
  gap: 16px;
  margin-bottom: 0;
  padding: 0;
  padding-top: 20px;
}
.form-habilitacoes .cont-text-lgpd span {

  color: #4B4B4B;

}
.form-habilitacoes .cont-text-lgpd span a {
  color: #4B4B4B;

}
.codedropz-upload-inner span {
color: #725148;
text-transform: none !important;
font-size: 14px;
}
.codedropz-upload-inner a {
  color: #725148;
  text-decoration: underline !important;
  font-size: 14px;
  text-transform: none !important;
}
input#campo-processo {
  width: 100%;
  padding: 11px 0px;
  margin-top: 10px;
  border: none;
  border-bottom: 1px solid #2c2c2c57;
  background: transparent;
}
.detalhe-black-contato img {
  height: 40px;
}
.codedropz-upload-handler {
  cursor: pointer;
  margin-top: 10px;
}
.codedropz-upload-inner h3 {
  color: #735148;
  font-size: 20px !important;
  text-transform: none !important;
}
span.dnd-upload-counter {
  display: none;
}
.title-faq {
 position: sticky;
 top: 80px;
}
/* Responsive */
@media (max-width: 1199px) {
  .carrossel-casos {
    padding-right: 40px;
    padding-left: 40px;
  }
  .carrossel-casos .owl-nav button.owl-next {
    margin-right: 40px;
  }
}
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .form-contato {
    padding-top: 60px;
  }
  .linha-rafael-dias {
    row-gap: 30px;
  }
  
.linha-principios {
  row-gap: 30px;
}
  .title-rafael-dias h2 {
    font-size: 60px;
  }
  .owl-nav {
    position: absolute;
    display: flex;
    justify-content: right;
    top: -61px;
    width: 100%;
    gap: 10px;
    right: 50px;
  }
  .owl-nav {
    position: relative !important;
    top: inherit !important;
    bottom: -20px !important;
}

  .box-principios {
  height: 360px;
  }
  .carrossel-casos {
    margin-top: 75px;
  }
  .carrossel-casos .owl-nav button.owl-next {
    margin-right: 0;
  }
  nav.mobile-nav {
    padding-right: 50px;
  }
  a.btn-brown.mobile-btn::after {
    top: 17px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .direitos-ili {
    flex-direction: column;
    padding-bottom: 30px;
  }
  .ili-icon {
    padding-top: 30px;
  }
  .direitos-politica {
    flex-direction: column;
  }
  .two-box-compromisso {
    padding-top: 40px;
  }
  .links-politicas {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer-content h5 {
    margin-bottom: 24px;

    padding-bottom: 0;
  }
  .footer-content ul li {
    padding-bottom: 12px;
  }
  .footer-content .row {
    row-gap: 40px;
  }
  .box-escritorio { 
    margin-bottom: 30px;
  }
  br {
    display: none;
  }
  .content-lateral-single {
    margin-top: 24px;
  }
  .pesquisas-processos .row {
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  .title-rafael-dias h2 {
    font-size: 42px;
}
.title-equipe-tecnica {
  margin-bottom: 40px;
}
.box-principios h5 {
  font-size: 24px;
}
section.informacoes-importantes {
  padding-left: 15px;
  padding-right: 15px;
}
  h2 {
    font-size: 32px;
  }
  .detalhe-item .valor {
    font-size: 12px;
  }
  h3 {
    font-size: 28px;
  }
  .img-processo-single {
    width: 80%;
  }
  .gestao-documentos-content .nav-tabs .nav-link {
    width: 120px;
  }
  .informacoes-importantes .row {
    padding: 30px 20px;
  }
  .informacoes-importantes h2 {
    margin-bottom: 24px;
  }
  .two-box-compromisso {
    flex-direction: column;
  }
  .carrossel-casos {
    padding-left: 5px;
    padding-right: 5px;
  }
  .detalhe-black-contato::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #313236;
    z-index: 0;
}
.detalhe-granulado-contato {

  margin-top: -30px;
}
.single-processo         .detalhe-granulado {
  margin-top: -28px;
}
}
@media (max-width: 479px) {
  .detalhe-granulado {
    margin-top: -37px;
  }
  .detalhe-rafael-bottom img {
    height: 30px;
}
.detalhe-rafael-top img {
  height: 30px;
}

}
