@charset "UTF-8";


/* Acessibilidade: oculta visualmente mas mantém para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* RESET (corrigido: faltava o seletor) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* Variáveis */
:root {
  --primaria: #023229;
  --secundaria: #BD9B60;
  --terciaria: #000000;
  --quaternaria: #303030;
}

/* ── Typography base ── */
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Questrial', sans-serif !important;
  font-weight: 400;
  line-height: 1.1;
}

p, nav a, button, .btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
}


.cor-prim {
  color: var(--quaternaria);
}

/* Background helpers (corrigido: background-image -> background-color quando é cor sólida) */
.bg-primaria {
  background-color: #f4f1f0;
}

.bg-primaria-2 {
  background-image: linear-gradient(var(--secundaria), var(--primaria));
}

.bg-primaria-3 {
  background-image: linear-gradient(var(--primaria), var(--secundaria));
}

.bg-secundaria {
  background-color: var(--secundaria);
}

.bg-quater {
  background-color: #ffffff;
}

figure {
  margin: 0;
}

.wd-60 {
  width: 60%;
}

.wd-100 {
  width: 100%;
}

.wd-40 {
  width: 50%;
}

.banner-paginas {
  background-size: contain;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
}

.banner-paginas h1 {
  color: white;
}

.text-banner-paginas {
  height: 300px;
}

.text-title-principal,
.text-title-principal-mobile {
  color: var(--primaria) !important;
}

.text-title-principal p {
  color: var(--primaria) !important;
  font-size: 30px;
  font-weight: bold;
}

.text-title-principal-mobile p {
  color: var(--primaria) !important;
  font-weight: bold;
}

/* Botões */
.btn-branco {
  padding: 8px 40px;
  background-color: white;
  color: var(--quaternaria);
  border: 1px solid var(--quaternaria);
  border-radius: 20px;
}

.btn-branco:hover {
  transition: 1s;
  background-color: var(--quaternaria);
  color: white;
  border: 1px solid white;
}

.btn-primaria {
  padding: 8px 40px;
  background: var(--quaternaria);
  color: white;
  border-radius: 20px;
}

.btn-primaria:hover {
  transition: 1s;
  color: var(--quaternaria);
  background: white;
  border: 1px solid var(--quaternaria);
}

.btn-secundaria {
  padding: 8px 40px;
  background: var(--primaria);
  color: #a7775f;
  border-radius: 20px;
}

.btn-secundaria:hover {
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-form {
  background: #83A548;
  padding: 16px;
  width: 186px;
  margin-left: 15px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  border-radius: 8px;
}

.btn-form:hover {
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-sub {
  background: #83A548;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

.btn-sub:hover {
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-card-s-menu {
  font-weight: bold;
  font-size: 18px;
  color: white;
  background: var(--primaria);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

}

.btn-card-s-menu:hover {
  transition: 1s;
  color: var(--secundaria);
  background: white;
  border: 1px solid gray;
}

.btn-prima {
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primaria);
  background: var(--secundaria);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

}

.btn-prima:hover {
  transition: 1s;
  color: var(--secundaria);
  background: white;
  border: 1px solid gray;
}

.btn-terciaria {
  padding: 15px 40px;
  background: #83A548;
  color: white;
  border-radius: 100px;
  font-weight: bold;
}

.btn-terciaria:hover {
  transition: 1s;
  color: #83A548;
  background: white;
  border: 1px solid var(--primaria);
}

.hr-custom {
  width: 200px;
  margin-left: -100px;
  color: white;
  opacity: 1;
}

.hr-custom-azul {
  width: 200px;
  margin-left: -100px;
  color: var(--quaternaria);
  opacity: 1;
}

.h2-branco {
  color: white;
}

.h2-azul {
  color: var(--primaria);
}

/* Slide Swiper da Home */
.btn-position {
  position: absolute;
  bottom: 40px;
}

/* =========================================
   HERO — Full-screen premium
========================================= */
.hero-split {
  width: 100%;
  height: calc(100svh - 160px);
  min-height: unset;
  max-height: none;
  position: relative;
  overflow: hidden;
  background-image: url('../img/Banner-fundo-home-3.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* WordPress admin bar: 32px acima de 782px */
html.wp-toolbar .hero-split {
  height: calc(100svh - 160px - 32px);
}

/* Mobile: admin bar muda para 46px abaixo de 782px */
@media screen and (max-width: 782px) {
  html.wp-toolbar .hero-split {
    height: calc(100svh - 110px - 46px);
  }
}

/* Overlay direcional — escurece à esquerda, abre à direita */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(2, 50, 41, 0.62) 0%,
    rgba(2, 50, 41, 0.28) 50%,
    rgba(2, 50, 41, 0.06) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Painel de conteúdo — centraliza verticalmente no espaço disponível */
.hero-split__left {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-split__left::before,
.hero-split__left::after { content: none; }

/* Bloco de texto — amplo o suficiente para o título fluir em 2-3 linhas */
.hero-split__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 0 24px;
}

/* ── Kicker / overline ── */
.hero-kicker-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-kicker-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--secundaria);
  flex-shrink: 0;
}

.hero-kicker-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secundaria);
}

/* ── Headline ── */
.hero-title-wrap {
  position: relative;
  margin-bottom: 0;
}

.hero-title {
  font-family: 'Questrial', sans-serif !important;
  /* escala com a largura: em 1400px → 56px | 1200px → 48px | 992px → 40px */
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  color: #F4F1EA;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero-title span {
  color: var(--secundaria);
}

/* ── Accent bar ── */
.hero-accent-bar {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--secundaria) 0%, rgba(189,155,96,0) 100%);
  border-radius: 1px;
  margin: 20px 0 0 0;
  transform-origin: left center;
  transform: scaleX(0);
}

/* ── Description ── */
.hero-sub {
  max-width: 520px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(244,241,234,.68);
  margin-bottom: 32px;
  margin-top: 28px;
}

.hero-sub p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(244,241,234,.68);
  margin: 0;
}

/* ── CTA ── */
.hero-cta-wrap {
  margin-top: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 4px;
  background: var(--secundaria);
  color: #0F2A21;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), background .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 24px rgba(189,155,96,.35);
}

.hero-btn:hover {
  transform: scale(1.04) translateY(-2px);
  background: #c9a464;
  box-shadow: 0 8px 36px rgba(189,155,96,.52);
  color: #0F2A21;
}

.hero-btn:active {
  transform: scale(0.97);
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── Responsivo ── */
@media (max-width: 991px) {
  .hero-split {
    background-position: 65% center;
    height: calc(100svh - 110px);
  }

  .hero-split__left {
    padding: 0;
  }

  .hero-split__content {
    max-width: 100%;
    padding: 0 32px;
  }
}

/* ── Tablet / resoluções intermediárias: 576px – 991px ── */
@media (min-width: 576px) and (max-width: 991px) {
  /* Altura contida — não mais tela cheia */
  .hero-split {
    height: auto;
    min-height: clamp(460px, 64vh, 580px);
  }

  html.wp-toolbar .hero-split {
    height: auto;
    min-height: clamp(420px, 60vh, 540px);
  }

  /* Padding vertical equilibrado para essa faixa */
  .hero-split__left {
    padding: 72px 0;
  }

  /* Bloco de texto: largura controlada, margens confortáveis */
  .hero-split__content {
    max-width: 600px;
    padding: 0 40px;
  }

  /* Título: escala razoável entre tablet pequeno e médio */
  .hero-title {
    font-size: clamp(30px, 4.2vw, 44px);
    line-height: 1.1;
  }

  /* Espaçamentos levemente comprimidos vs desktop, mas com respiro */
  .hero-kicker-wrap {
    margin-bottom: 18px;
  }

  .hero-accent-bar {
    margin-top: 16px;
  }
}

@media (max-width: 575px) {
  /* Altura intermediária: menor que tela cheia, maior que auto puro */
  .hero-split {
    background-position: 72% center;
    height: auto;
    min-height: clamp(400px, 58vh, 520px);
  }

  /* Admin bar: sobrescreve a regra do breakpoint 782px */
  html.wp-toolbar .hero-split {
    height: auto;
    min-height: clamp(360px, 54vh, 480px);
  }

  /* Padding vertical generoso — devolve o respiro sem esticar */
  .hero-split__left {
    padding: 68px 0;
  }

  .hero-split__content {
    padding: 0 24px;
  }

  /* Título ligeiramente contido, linha confortável */
  .hero-title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
  }

  /* Espaçamentos intermediários — nem apertados nem largos */
  .hero-kicker-wrap {
    margin-bottom: 18px;
  }

  .hero-accent-bar {
    margin-top: 16px;
  }

  /* Botões empilhados em tela pequena com espaço vertical confortável */
  .hero-ctas {
    gap: 14px;
  }
}

/* Alinha à borda interna do container Bootstrap */
@media (min-width: 992px) {
  .hero-split__content {
    padding-left: calc((100vw - 960px) / 2 + 12px);
    padding-right: 48px;
    max-width: 820px;
  }
}

@media (min-width: 1200px) {
  .hero-split__content {
    padding-left: calc((100vw - 1140px) / 2 + 12px);
    max-width: 820px;
  }
}

@media (min-width: 1400px) {
  .hero-split__content {
    padding-left: calc((100vw - 1320px) / 2 + 12px);
    max-width: 860px;
  }
}

/* ── Hero: painel direito com logo ── */
.hero-split__right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.hero-split__logo {
  width: clamp(200px, 24vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 48px rgba(0,0,0,.38));
  will-change: transform;
}

/* Float suave e contínuo */
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Estado inicial da logo para animação de entrada */
.hero-split.hero-anim .hero-split__right {
  opacity: 0;
  transform: translateX(20px) scale(0.97);
  transition: opacity .9s ease .4s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) .4s;
}

/* Entrada ativa */
.hero-split.hero-anim.is-in .hero-split__right {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Float começa após a entrada terminar */
.hero-split.hero-anim.is-in .hero-split__logo {
  animation: heroLogoFloat 6s ease-in-out 1.5s infinite;
}

/* Logo some no mobile — hero mantém foco no texto */
@media (max-width: 991px) {
  .hero-split__right {
    display: none;
  }
}


.partners {
  margin-top: 44px;
}

.partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  /* espaçamento igual ao print */
  flex-wrap: wrap;
}

.partners__logo {
  height: 36px;
  /* tamanho padrão dos logos */
  width: auto;
  opacity: .95;
  filter: saturate(1);
  transition: transform .15s ease, opacity .15s ease;
}

.partners__logo:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* Responsivo */
@media (max-width: 991px) {
  .partners__row {
    gap: 26px;
  }

  .partners__logo {
    height: 32px;
  }
}

@media (max-width: 575px) {
  .partners__row {
    justify-content: space-between;
    gap: 18px;
  }

  .partners__logo {
    height: 28px;
  }
}






/* Sobre */
.bg-sobre {
  background-repeat: no-repeat;
  background-size: contain;
}

.h3-nome {
  font-size: 40px;
  color: white;
}

.pd-sobre {
  padding-top: 100px;
}

/* A Clínica */
.pd-slide-clinica {
  padding-left: 100px;
  padding-right: 100px;
  background: transparent;
}

/* Social Media */
.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--quaternaria);
  font-weight: 1000;
}

.bg-social {
  background-size: cover;
  background-repeat: no-repeat;
}

/* Área de atuação */
.card-servico h4,
.card-servico p {
  color: white;
}


/* ==========================
   CTA SITEX (igual ao mock)
   ========================== */

/* Área preta (onde aparece a faixa branca atrás) */
.sx-callout-area {
  position: relative;
  padding: 34px 0;
  background: transparent;
  /* (se sua seção já é preta, pode manter) */
}

/* Faixa branca ATRÁS do card (igual ao print) */
.sx-callout-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  background: #fff;
  z-index: 0;
}

/* Garante que o card fique acima da faixa */
.sx-callout-container {
  position: relative;
  z-index: 1;
}

/* Card verde */
.sx-callout__row {
  position: relative;
  background: var(--primaria);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 34px 44px;
  border: 3px solid var(--secundaria);
}

/* X branco (imagem) — posição e tamanho para ficar IGUAL ao print */
.sx-callout__decor {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 74%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.sx-callout__decor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}

/* Conteúdo por cima */
.sx-callout__content {
  position: relative;
  z-index: 2;
  width: 100%;

  /* “reserva” a área do X (igual ao mock) */
  padding-left: clamp(300px, 40vw, 620px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.sx-callout__logo {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}

/* Coluna direita */
.sx-callout__right {
  max-width: 420px;
}

/* Texto */
.sx-callout__title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

/* Lista */
.sx-callout__list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

/* Botão */
.sx-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 26px;
  border-radius: 10px;
  background: #fff;
  color: var(--secundaria);
  text-decoration: none;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transition: transform .15s ease, filter .15s ease;
}

.sx-callout__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Responsivo */
@media (max-width: 991px) {
  .sx-callout-area::before {
    height: 90px;
  }

  .sx-callout__row {
    padding: 26px 18px;
    border-radius: 32px;
    min-height: auto;
  }

  .sx-callout__content {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sx-callout__right {
    max-width: 520px;
  }

  .sx-callout__list {
    padding-left: 0;
    list-style: none;
  }

  .sx-callout__decor {
    left: -38%;
    width: 125%;
    height: 220%;
    opacity: .22;
  }
}


.about-brasicon {
    background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}


/* ==========================
   CTA SITEX (invadindo cima/baixo igual mock)
   ========================== */

/* Área da faixa branca + card */
.sx-callout-area {
  position: relative;
  background: transparent;
  padding: 0 !important;
  /* ✅ remove respiros */
  overflow: visible !important;
  /* ✅ deixa invadir */
  z-index: 5;
}

/* Faixa branca atrás (tem que ser mais alta) */
.sx-callout-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 220px;
  /* ✅ maior pra parecer a do mock */
  background: #fff;
  z-index: 0;
}

/* container precisa criar “área” real pra caber o vazamento */
.sx-callout-container {
  position: relative;
  z-index: 1;
  padding: 110px 0;
  /* ✅ espaço acima/abaixo */
}

/* Card verde (o que invade) */
.sx-callout__row {
  position: relative;
  background: var(--primaria);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 34px 44px;
  border: 3px solid var(--secundaria);

  transform: translateY(-80px);
  /* ✅ aqui faz invadir (sobe o card) */
  z-index: 2;
}

/* Decor (imagem do X) */
.sx-callout__decor {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 74%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.sx-callout__decor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}

/* Conteúdo */
.sx-callout__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: clamp(300px, 40vw, 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.sx-callout__logo {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}

.sx-callout__right {
  max-width: 420px;
}

.sx-callout__title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.sx-callout__list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

.sx-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 26px;
  border-radius: 10px;
  background: #fff;
  color: var(--secundaria);
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transition: transform .15s ease, filter .15s ease;
}

.sx-callout__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* ===== Responsivo ===== */
@media (max-width: 991.98px) {
  .sx-callout-area::before {
    height: 160px;
  }

  .sx-callout-container {
    padding: 80px 0;
  }

  .sx-callout__row {
    padding: 26px 18px;
    border-radius: 32px;
    min-height: auto;
    transform: translateY(-55px);
    /* invade menos no mobile */
  }

  .sx-callout__content {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sx-callout__right {
    max-width: 520px;
  }

  .sx-callout__list {
    padding-left: 0;
    list-style: none;
  }

  .sx-callout__decor {
    left: -38%;
    width: 125%;
    height: 220%;
    opacity: .22;
  }
}

/* ✅ CTA atravessando a section de cima e a de baixo */
.sx-callout-area {
  position: relative;
  z-index: 10;
  overflow: visible !important;

  /* entra 60px na section de cima e 60px na de baixo */
  margin-top: -60px;
  margin-bottom: -60px;

  /* mantém um respiro interno pra faixa branca */
  padding: 0 !important;
}

/* faixa branca central (opcional: ajusta altura) */
.sx-callout-area::before {
  height: 220px;
  /* ajuste fino */
}

/* container não pode empurrar demais */
.sx-callout-container {
  padding: 80px 0;
  /* ajuste fino */
}

/* o card NÃO precisa subir mais com transform se já está atravessando */
.sx-callout__row {
  transform: none !important;
}

/* ✅ Mobile: atravessa menos */
@media (max-width: 991.98px) {
  .sx-callout-area {
    margin-top: -35px;
    margin-bottom: -35px;
  }

  .sx-callout-container {
    padding: 60px 0;
  }
}

/* ==========================
   CTA SITEX (invadindo acima/abaixo)
   ========================== */

.sx-callout-area {
  position: relative;
  overflow: visible;
  /* não use padding alto aqui */
  padding: 0;
  background: transparent;
}

/* faixa branca NÃO empurra layout: é só fundo */
.sx-callout-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  /* altura da faixa branca */
  background: #fff;
  z-index: 0;
}

/* garante que o card fique acima da faixa */
.sx-callout-container {
  position: relative;
  z-index: 1;
  padding: 0;
  /* importante */
}

/* ✅ o card atravessa as duas sections */
.sx-callout {
  transform: translateY(-1px);
  margin-bottom: 10px;
  /* invade a section de baixo (sem criar espaço extra) */
}

/* Card verde */
.sx-callout__row {
  position: relative;
  background: var(--primaria);
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 34px 44px;
  border: 3px solid var(--secundaria);
}

/* X dourado (imagem) */
.sx-callout__decor {
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 74%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.sx-callout__decor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.08);
}

/* Conteúdo por cima */
.sx-callout__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: clamp(300px, 40vw, 620px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.sx-callout__logo {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}

.sx-callout__right {
  max-width: 420px;
}

.sx-callout__title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.sx-callout__list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

.sx-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 26px;
  border-radius: 10px;
  background: #fff;
  color: var(--secundaria);
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transition: transform .15s ease, filter .15s ease;
}

.sx-callout__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Responsivo */
@media (max-width: 991.98px) {
  .sx-callout-area::before {
    height: 160px;
  }

  .sx-callout {
    transform: translateY(-30px);
    margin-bottom: -60px;
  }

  .sx-callout__row {
    border-radius: 32px;
    min-height: auto;
  }

  .sx-callout__content {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sx-callout__right {
    max-width: 520px;
  }

  .sx-callout__list {
    padding-left: 0;
    list-style: none;
  }

  .sx-callout__decor {
    left: -38%;
    width: 125%;
    height: 220%;
    opacity: .22;
  }
}
/* =========================
   NEWS — refinado
========================= */

/* ── Seção ── */
.news-area {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #eef0ee 0%, #f7f8f6 55%, #ffffff 100%);
}

/* ── Container principal ── */
.news-wrap {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 50, 41, 0.09);
  border-radius: 28px;
  padding: 52px 48px 48px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 12px rgba(2, 50, 41, 0.04),
    0 16px 48px rgba(2, 50, 41, 0.07);
}

/* ── Logo decorativa ao fundo ── */
.news-bg-logo {
  position: absolute;
  top: 60px;
  right: 48px;
  left: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.news-bg-logo img {
  width: 100px;
  height: auto;
  display: block;
}

/* ── Cabeçalho ── */
.news-header {
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
  padding-left: 0;
}

.news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--secundaria);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.news-kicker::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--secundaria);
  flex-shrink: 0;
}

.news-title {
  margin: 0;
  color: var(--primaria);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.07;
}

.news-title-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--secundaria), rgba(189,155,96,0));
  border-radius: 2px;
  margin-top: 16px;
}

/* ── Grid de cards ── */
.news-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card base ── */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(2, 50, 41, 0.07);
  box-shadow:
    0 2px 6px rgba(2, 50, 41, 0.04),
    0 8px 22px rgba(2, 50, 41, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 50, 41, 0.14);
  box-shadow:
    0 4px 10px rgba(2, 50, 41, 0.06),
    0 18px 44px rgba(2, 50, 41, 0.11);
}

/* ── Thumb / imagem ── */
.news-card__thumb {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e8edeb;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.50s ease;
}

.news-card:hover .news-card__thumb img {
  transform: scale(1.05);
}

.news-card__thumb--fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4ddd9 0%, #c2cfc9 100%);
  display: block;
}

/* ── Corpo do card ── */
.news-card__body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

/* ── Título ── */
.news-card__title {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__title a {
  color: var(--primaria);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card__title a:hover {
  color: var(--secundaria);
}

/* ── Categoria — pill elegante ── */
.news-card__category {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primaria);
  background: rgba(2, 50, 41, 0.07);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 1;
}

/* ── Sem posts ── */
.news-empty {
  color: var(--primaria);
  opacity: 0.6;
  position: relative;
  z-index: 2;
}

/* ── Responsivo ── */
@media (max-width: 991.98px) {
  .news-wrap {
    padding: 40px 24px 36px;
    border-radius: 22px;
  }

  .news-header {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .news-bg-logo {
    top: 22px;
    right: 20px;
    opacity: 0.04;
  }

  .news-bg-logo img {
    width: 64px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card__thumb {
    height: 220px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .news-wrap {
    padding: 48px 36px;
  }

  .news-grid {
    gap: 16px;
  }

  .news-card__thumb {
    height: 170px;
  }

  .news-card__title {
    font-size: 16px;
  }
}




/* =========================================
   DIFERENCIAIS — flip cards (ícone+título → texto)
   ========================================= */

.df-area {
  background: linear-gradient(180deg, #001612 0%, #002820 55%, #001c16 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.df-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,  rgba(0, 130, 95, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(189, 155, 96, 0.04) 0%, transparent 50%);
}

.df-area .container {
  position: relative;
  z-index: 2;
}

/* HEADER */
.df-header {
  text-align: center;
  margin-bottom: 56px;
}

.df-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: 'Questrial', sans-serif;
    font-size: clamp(30px, 3vw, 46px);
      line-height: 1.1;
  font-weight: 400;
}

.df-title-bar {
  width: 56px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #BD9B60;
}

/* GRID */
.df-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD — palco 3D (sem visual próprio) */
.df-card {
  height: 230px;
  perspective: 1200px;
}

/* Correção flip no desktop:
   .reveal-card.is-visible deixa um `filter: blur(0)` residual. Qualquer
   filter (mesmo blur(0)) cria contexto de composição, achata o 3D e quebra
   o backface-visibility → verso sem texto no desktop (no mobile o overflow
   do slider mascara o bug). Zeramos o filter no palco do flip. */
.df-card.reveal-card,
.df-card.reveal-card.is-visible {
  filter: none !important;
  will-change: opacity, transform;
}

/* INNER — bloco que gira */
.df-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.35, 0.15, 0.15, 1);
  will-change: transform;
}

/* Flip no hover — mouse/trackpad */
@media (hover: hover) and (pointer: fine) {
  .df-card:hover .df-inner {
    transform: rotateY(180deg);
  }
}

/* Flip via toque (JS) */
.df-card.is-flipped .df-inner {
  transform: rotateY(180deg);
}

/* FACES */
.df-front,
.df-back {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(189, 155, 96, 0.22);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

/* FRENTE — ícone + título */
.df-front {
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 26px 26px;
  gap: 0;
}

.df-card__icon {
  position: relative;          /* contexto para o ::after da linha dourada */
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(189, 155, 96, 0.09);
  border: 1px solid rgba(189, 155, 96, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #BD9B60;
  flex-shrink: 0;
  margin-bottom: 28px;         /* espaço para a linha + título */
}

/* Linha dourada separadora entre ícone e título */
.df-card__icon::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1.5px;
  background: #BD9B60;
  border-radius: 999px;
  opacity: 0.65;
}

.df-card__title {
  font-family: 'Questrial', sans-serif;
  color: #f5f0e8;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

/* VERSO — texto explicativo */
.df-back {
  background: rgba(0, 95, 72, 0.18);
  border-color: rgba(189, 155, 96, 0.42);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 26px;
}

.df-card__text {
  font-family: 'Nunito', sans-serif;
  color: rgba(245, 240, 232, 0.82);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

/* Hover: intensifica borda dourada nas faces */
@media (hover: hover) and (pointer: fine) {
  .df-card:hover .df-front,
  .df-card:hover .df-back {
    border-color: rgba(189, 155, 96, 0.58);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  }
}

/* Acessibilidade — respeita "reduzir animações":
   remove só a TRANSIÇÃO (o flip vira instantâneo, sem movimento), mantendo
   a função e o texto do verso. O esquema anterior escondia o verso
   (display:none) e quebrava o hover no desktop → card virava vazio. */
@media (prefers-reduced-motion: reduce) {
  .df-inner { transition: none; }
}

/* RESPONSIVO */
@media (max-width: 991.98px) {
  .df-area    { padding: 70px 0; }
  .df-header  { margin-bottom: 40px; }
  .df-grid    { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .df-card    { height: 230px; }
}

/* ── Mobile: slider horizontal com snap ── */
@media (max-width: 767.98px) {
  .df-area { padding: 60px 0; }

  .df-grid {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
    padding-bottom: 6px;          /* evita clipar box-shadow dos cards */
  }

  .df-grid::-webkit-scrollbar {
    display: none;                /* Chrome/Safari */
  }

  .df-card {
    flex: 0 0 82%;                /* mostra ~18% do próximo card */
    height: 250px;
    scroll-snap-align: start;
  }
}

/* Ajustes de tamanho para telas pequenas (slider ativo) */
@media (max-width: 575.98px) {
  .df-area  { padding: 52px 0; }
  .df-card  { height: 230px; flex: 0 0 84%; }

  .df-front { padding: 24px 18px 20px; border-radius: 16px; }
  .df-back  { padding: 22px 16px;      border-radius: 16px; }

  .df-card__icon  { width: 50px; height: 50px; font-size: 22px; margin-bottom: 14px; }
  .df-card__title { font-size: 18px; }
  .df-card__text  { font-size: 15px; }
}

@media (max-width: 400px) {
  .df-card { height: 210px; flex: 0 0 88%; }
}

/* =========================================
   SOBRE (igual ao print)
   ========================================= */

.banner-sec{
    background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
  padding: 90px 0;
}

/* bloco do texto */
.text-geral{
  max-width: 520px;   /* deixa o texto "com respiro" igual */
}

/* "Sobre a Brasicon" (kicker) */
.title-h4{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
  color: #B89355;      /* dourado */
  letter-spacing: .01em;
}

/* Título grande */
.text-sobre-3{
      margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #0F2A21;
    position: relative;
    padding-bottom: 14px;
}

/* barrinha dourada embaixo do título */
.text-sobre-3::after{
  content:"";
  display:block;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #B89355;
  margin-top: 14px;
}

/* Texto do editor (conteúdo do WP) */
.text-geral p{
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(15,42,33,.78);
}

/* se vier listas do editor */
.text-geral ul,
.text-geral ol{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(15,42,33,.78);
  line-height: 1.7;
  font-size: 15px;
}

/* destaque */
.text-geral strong{
  color: #0F2A21;
  font-weight: 700;
}

/* botão igual ao print */
.btn-ba{
  background: #B89355 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  transition: transform .15s ease, filter .15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ba:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* imagem (opcional: deixa mais “limpa” como no print) */
.dra-sbmais{
  border-radius: 18px;
}

/* Container da seção Sobre: ampliado */
#sobre .container{
  max-width: 1480px;
  padding-inline: clamp(16px, 2vw, 28px);
}

/* Alinhamento vertical entre mapa e texto */
#sobre .row{
  align-items: center;
}

/* Texto ocupa toda a largura da coluna */
#sobre .text-geral{
  max-width: 100%;
}

/* Responsivo */
@media (max-width: 991.98px){
  .banner-sec{
    padding: 60px 0;
  }
  .text-geral{
    max-width: 100%;
  }
  #sobre .text-geral{
    max-width: 100%;
  }
  .text-sobre-3{
    font-size: 36px;
  }
}



/* SLIDER INFINITO DE LOGOS */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* fade nas laterais (opcional, fica bonito) */
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #F4F1EA 0%, rgba(244, 241, 234, 0) 100%);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #F4F1EA 0%, rgba(244, 241, 234, 0) 100%);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partners-scroll 26s linear infinite;
  /* velocidade */
}

/* pausa quando passar o mouse */
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding: 8px 24px;
}

.partners__logo {
  height: 75px;
  width: auto;
  display: block;
  opacity: .95;
}

/* animação: anda exatamente 50% porque duplicamos o conteúdo */
@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tags-home {
  color: rgba(189,155,96,.5);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

/* Responsivo */
@media (max-width: 991px) {
  .partners__logo {
    height: 72px;
  }

  .partners-group {
    gap: 26px;
  }

  .partners-track {
    animation-duration: 22s;
  }
}

@media (max-width: 575px) {
  .partners__logo {
    height: 72px;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 50px;
  }

  .partners-track {
    animation-duration: 18s;
  }
}

/* acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}





/* ==========================================================================
   SEÇÃO DE CONTATO — Premium redesign
   Estrutura: esquerda (info + mapa) | direita (formulário)
   ========================================================================== */

/* ── Variável local para o ouro ── */
.cs-section { --cs-gold: var(--secundaria); }

/* ── Seção base ── */
.cs-section {
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
  background-color: var(--primaria);
}

/* ── Imagem de fundo com overlay escuro ── */
.cs-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/Prancheta-12.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* overlay gradiente sutil para reforçar profundidade */
.cs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(2,50,41,0.55) 0%,
    rgba(2,50,41,0.10) 60%,
    rgba(2,50,41,0.40) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Container grid ── */
.cs-container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ══════════════════════════════════════════════════════
   COLUNA ESQUERDA — informações de contato + mapa
   ══════════════════════════════════════════════════════ */

.cs-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Cabeçalho da coluna ── */
.cs-info__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-gold);
  padding-left: 2px;
}

.cs-title {
  font-family: 'Questrial', sans-serif !important;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.cs-title__accent {
  color: var(--cs-gold);
}

.cs-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 4px 0 0;
  max-width: 420px;
}

/* ── Items de contato ── */
.cs-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

a.cs-contact-item:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(189,155,96,0.35);
}

.cs-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(189,155,96,0.15);
  border: 1px solid rgba(189,155,96,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-gold);
  font-size: 18px;
  transition: background 0.2s ease;
}

a.cs-contact-item:hover .cs-contact-icon {
  background: rgba(189,155,96,0.25);
}

.cs-contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1;
}

.cs-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

/* ── Redes Sociais ── */
.cs-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cs-social-link:hover {
  background: rgba(189,155,96,0.20);
  border-color: rgba(189,155,96,0.40);
  color: var(--cs-gold);
}

/* ── Mapa ── */
.cs-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(189,155,96,0.30),
    0 16px 48px rgba(0,0,0,0.35);
  border: 1px solid rgba(189,155,96,0.20);
  aspect-ratio: 16 / 10;
  position: relative;
}

.cs-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ══════════════════════════════════════════════════════
   COLUNA DIREITA — formulário
   ══════════════════════════════════════════════════════ */

.cs-form-wrap {
  /* cola na parte de cima do grid */
  position: sticky;
  top: 100px;
}

.cs-form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow:
    0 1px 0 rgba(189,155,96,0.20),
    0 32px 80px rgba(0,0,0,0.22),
    0  8px 24px rgba(0,0,0,0.10);
  border: 1px solid rgba(255,255,255,0.90);
}

/* ── Cabeçalho do form ── */
.cs-form-eyebrow {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cs-gold);
  margin-bottom: 8px;
}

.cs-form-title {
  font-family: 'Questrial', sans-serif !important;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--primaria);
  margin: 0 0 6px;
  line-height: 1.15;
}

.cs-form-sub {
  font-size: 14px;
  color: #7a8a85;
  margin: 0 0 32px;
  font-weight: 500;
}

.cs-form-header {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid #f0f0ee;
}

/* ── Layout de campos ── */
.cs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.cs-field:not(.cs-field-row .cs-field) {
  margin-bottom: 16px;
}

/* ── Label ── */
.cs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a5e59;
}

.cs-label span {
  color: var(--cs-gold);
}

/* ── Input base ── */
.cs-input {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a2e2b;
  background: #f8faf9;
  border: 1.5px solid #dde8e5;
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cs-input::placeholder {
  color: #a5b8b4;
  font-weight: 400;
}

.cs-input:focus {
  background: #ffffff;
  border-color: var(--cs-gold);
  box-shadow: 0 0 0 3px rgba(189,155,96,0.14);
}

/* ── Select ── */
.cs-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5e59' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* ── Textarea ── */
.cs-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── Botão de envio ── */
.cs-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  margin-top: 8px;
  padding: 15px 28px;
  border-radius: 12px;
  border: 2px solid var(--primaria);
  background: var(--primaria);
  color: #ffffff;

  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;

  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
}

.cs-submit:hover {
  background: var(--cs-gold);
  border-color: var(--cs-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.cs-submit:active {
  transform: translateY(0);
}

.cs-submit i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.cs-submit:hover i {
  transform: translateX(4px);
}

/* ── Mensagem de sucesso ── */
.cs-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 14px;
}

.cs-form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(2,50,41,0.08);
  border: 2px solid rgba(2,50,41,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primaria);
}

.cs-form-success__title {
  font-family: 'Questrial', sans-serif !important;
  font-size: 26px;
  color: var(--primaria);
  margin: 0;
}

.cs-form-success__text {
  font-size: 15px;
  color: #5a7070;
  margin: 0;
}

/* ── Mensagem de erro ── */
.cs-form-error {
  background: #fff3f3;
  border: 1px solid #f5c2c2;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #b83232;
  margin-bottom: 16px;
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .cs-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cs-form-card {
    padding: 38px 32px;
  }
}

@media (max-width: 900px) {
  .cs-section {
    padding: 72px 0 120px;
  }

  .cs-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(680px, calc(100vw - 32px));
  }

  .cs-form-wrap {
    position: static;
  }

  /* no mobile: info primeiro, form embaixo */
  .cs-info   { order: 1; }
  .cs-form-wrap { order: 2; }

  .cs-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cs-section {
    padding: 60px 0 110px;
  }

  .cs-container {
    width: calc(100vw - 24px);
    gap: 32px;
  }

  .cs-field-row {
    grid-template-columns: 1fr;
  }

  .cs-form-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .cs-title {
    font-size: 28px;
  }
}

@media (max-width: 380px) {
  .cs-form-card {
    padding: 24px 16px;
  }

  .cs-contact-item {
    padding: 12px 14px;
  }
}



/* ==========================================================================
   SERVICES SECTION — premium redesign
   ========================================================================== */

.services {
  background: #f7f7f5;
  padding: 90px 0 100px;
}

.services .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.services__header,
.services__grid {
  width: min(960px, calc(100vw - 120px));
  margin-left: auto;
  margin-right: auto;
}

.services__header {
  margin-bottom: 52px;
}

.services__title {
  color: var(--primaria);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  position: relative;
  padding-top: 26px;
  line-height: 1.15;
}

.services__title::before {
  content: none;
}

.services__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: var(--secundaria);
  margin: 16px auto 0;
}

/* GRID */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* ─── CARD BASE ─────────────────────────────────────────────── */
.service-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--primaria);
  /* forma orgânica "nuvem": topo arredondado, canto inf-dir cortado */
  border-radius: 36px 36px 6px 36px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(2, 50, 41, 0.08);
  transition: box-shadow 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}

/* fundo verde sobe no hover */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: var(--primaria);
  transition: height 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* reset ::after — sem uso nos cards brancos */
.service-card::after { content: none; }

.service-card:hover {
  box-shadow: 0 14px 44px rgba(2, 50, 41, 0.2);
  transform: translateY(-4px);
  border-color: var(--primaria);
}

.service-card:hover::before { height: 100%; }

/* LINK */
.service-card__link {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* CONTENT */
.service-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ─── ICON ──────────────────────────────────────────────────── */
.service-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(2, 50, 41, 0.07);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.45s ease;
}

.service-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  transition: filter 0.45s ease;
}

.service-card:hover .service-card__icon {
  background: rgba(255, 255, 255, 0.15);
}

.service-card:hover .service-card__icon img {
  filter: brightness(0) invert(1);
}

/* ─── TITLE ─────────────────────────────────────────────────── */
.service-card__title {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--primaria);
  transition: color 0.45s ease;
}

.service-card:hover .service-card__title { color: #fff; }

/* ─── TEXT ──────────────────────────────────────────────────── */
.service-card__text {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #4a5e59;
  flex-grow: 1;
  transition: color 0.45s ease;
}

.service-card:hover .service-card__text {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── BUTTON — card branco: botão verde sólido ──────────────── */
.service-card__button {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primaria);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--primaria);
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}

.service-card__button-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__button-icon { transform: translateX(3px); }

/* no hover (card preenchido de verde): botão vira branco */
.service-card:hover .service-card__button {
  background: var(--secundaria);
  color: var(--primaria);
}

/* ─── IS-ACTIVE (JS) ────────────────────────────────────────── */
.service-card.is-active::before           { height: 100%; }
.service-card.is-active .service-card__title { color: #fff; }
.service-card.is-active .service-card__text  { color: rgba(255, 255, 255, 0.8); }
.service-card.is-active .service-card__icon  { background: rgba(255, 255, 255, 0.15); }
.service-card.is-active .service-card__icon img { filter: brightness(0) invert(1); }
.service-card.is-active .service-card__button {
  background: #fff;
  color: var(--primaria);
  border-color: #fff;
}

/* ─── FIRST CARD — fundo verde, botão branco ────────────────── */
.service-card--first {
  background: var(--primaria);
  border-color: var(--primaria);
  box-shadow: 0 8px 36px rgba(2, 50, 41, 0.26);
}

.service-card--first::before { background: #0b3d35; }

.service-card--first .service-card__icon {
  background: rgba(255, 255, 255, 0.13);
}

.service-card--first .service-card__icon img {
  filter: brightness(0) invert(1);
}

.service-card--first .service-card__title { color: #fff; }

.service-card--first .service-card__text {
  color: rgba(255, 255, 255, 0.74);
}

/* botão branco sólido no card verde */
.service-card--first .service-card__button {
  background: #fff;
  color: var(--primaria);
  border-color: #fff;
}

/* hover do primeiro card: botão fica dourado */
.service-card--first:hover .service-card__button {
  background: var(--secundaria);
  color: var(--primaria);
  border-color: var(--secundaria);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .services { padding: 70px 0 80px; }

  .services__header,
  .services__grid { width: calc(100vw - 40px); }

  .services__header { margin-bottom: 40px; }

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

  .service-card__content { padding: 24px 22px 22px; }
  .service-card__title   { font-size: 16px; }
  .service-card__text    { font-size: 13px; }

  .service-card__button {
    font-size: 12px;
    padding: 10px 18px;
  }
}

@media (max-width: 575px) {
  .services { padding: 56px 0 68px; }

  .services__header,
  .services__grid { width: calc(100vw - 24px); }

  .services__header { margin-bottom: 32px; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card__content { padding: 24px; }
  .service-card__title   { font-size: 18px; }
  .service-card__text    { color: #4a5e59; }
}

/* Termos */
.termos-custom h6 {
  font-size: 30px;
  color: var(--primaria);
}

.border-termos {
  border-right: 1px solid var(--primaria);
  border-left: 1px solid var(--primaria);
}

.bg-termos {
  background-color: #c6c6c6;
}

.termos-custom p {
  color: var(--primaria);
}

/* Blog Home */
.page-numbers .current {
  background-color: var(--primaria) !important;
  padding: 5px;
  border-radius: 5px;
  color: var(--secundaria) !important;
}

.page-numbers .page-numbers {
  background-color: #e8e8e8;
  padding: 5px;
  border-radius: 5px;
  color: black;
  text-decoration: none;
}

.page-numbers {
  display: flex;
  padding-top: 30px;
  justify-content: center;
}

.page-numbers li {
  list-style: none;
  padding: 10px;
}

.entry-title {
  font-size: 25px;
  height: 75px;
}

.blog-card h4 {
  color: var(--primaria);
}

.arrow-blog:after {
  color: var(--primaria);
}

/* Contato */
.mapa-contato iframe {
  border-radius: 20px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
  width: 100%;
  height: 50vh;
}

.contato-custom h5,
.contato-custom p {
  color: var(--primaria);
}

.contato-custom a {
  color: var(--primaria);
  text-decoration: none;
}

.form-contato input,
.form-contato textarea {
  border: 1px solid var(--primaria);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
}




.accordion-button:not(.collapsed)::after {
  background-image: url(../img/arrow.svg);
}

.accordion-button:focus {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, .3);
  border-color: transparent !important;
}

.accordion-item {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
  border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
  font-weight: bold;
  font-size: 20px;
  background-color: var(--primaria);
  color: #875726;
  padding: 32px 16px;
  border-radius: 20px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  background-color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 32px 16px;
  color: var(--quaternaria);
  border-radius: 20px !important;
}

.accordion-header {
  border-radius: 50px;
}

.text-serv-p p,
.text-serv-p li {
  color: white;
}

.img-serv-p iframe {
  width: 100%;
}

.img-serv {
  border-radius: 100%;
}

.hg-custom {
  height: 140px;
}

/* Whats flutuante */
.whatsapp {
  width: 60px;
  height: 60px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  cursor: pointer;
  border-radius: 30%;
  transition: transform ease-out 0.1s, background 0.2s;
  z-index: 999;
  animation-duration: 1s;
}

/* Depoimentos */
#card-depoimento {
  position: relative;
  top: 0;
}

#card-depoimento:hover {
  top: -4px;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, .3);
  transition: all .2s ease-in-out;
}

.b-radius-10 {
  border-radius: 10px;
}

.ava-custom p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.b-radius-100 {
  border-radius: 100%;
}

.nome-depoimento {
  font-size: 14px;
  font-weight: bold;
}

.font-date {
  font-size: 12px;
  color: #989898;
}

.overflow-depoi {
  height: 100px;
  overflow-y: scroll;
  max-width: 100%;
}

.color-star i {
  color: #fdc400;
}

.overflow-depoi::-webkit-scrollbar {
  width: 12px;
}

.overflow-depoi::-webkit-scrollbar-track {
  background: #eeeeee;
}

.overflow-depoi::-webkit-scrollbar-thumb {
  background-color: #929292;
  border-radius: 20px;
  border: 3px solid #eeeeee;
}

.fs-7 {
  font-size: 14px;
}

.shadow-depoi {
  border-radius: 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, .3);
  background-color: white;
}

.pad-depoi {
  padding: 10px 20px;
}

.text-depoi-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.icone-google img {
  width: 20px !important;
}

.wd-avatar {
  width: 50px !important;
}

/* Para quem é indicado */
.title-cuida {
  font-size: 40px;
  font-weight: 600;
}

.text-indic {
  text-align: justify;
  line-height: 23px;
  word-spacing: 0.3px;
  /* corrigido: vírgula -> ponto */
}

.text-cuid {
  color: var(--quaternaria);
  text-align: justify;
}

.text-olter {
  text-align: center;
  color: white;
}

.title-older {
  font-size: 40px;
  color: var(--terciaria);
  font-weight: 600;
  text-align: start;
}

.icon-user {
  color: white;
  font-size: 50px;
  text-align: justify;
}

.closecl {
  background-color: var(--primaria) !important;
  color: white;
}

/* Iframe / banners */
.banner-v {
  background-image: url(../img/fundo.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-depo {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background: #F4F1EA;
}

.borda-footer {
  border-radius: 50px 50px 0px 0px;
  background: #7fc241;
}

.text-video {
  color: var(--quaternaria);
  font-size: 40px;
  font-weight: 600;
}
.text-video-2 {
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
}

.back-3 {
  color: #929292;
}

.sombra-img-2 {
  border-radius: 31px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
}

/* Indicados */
.title-sect {
  font-size: 50px;
  color: #e8e8e8;
  font-weight: 700;
}

.text-sect {
  font-weight: 500;
  color: #e8e8e8;
  font-size: 23px;
  text-align: justify;
}

.text-sect-2 {
  font-weight: 400;
  color: #e8e8e8;
  font-size: 16px;
  text-align: justify;
}

.sombra-img-3 {
  border-radius: 10px;
}

.img-ngtv {
  border-radius: 100%;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
}

.genero {
  color: white;
  font-size: 30px;
  font-weight: 700;
}

.icone {
  color: #eeeeee;
}

.text-dic {
  color: wheat;
  text-align: justify;
}

/* Serviços */
.title-Servic {
  color: var(--quaternaria);
  font-weight: 600;
  font-size: 30px;
}

.title-Servic-2 {
  color: var(--terciaria);
  font-weight: 900;
  font-size: 32px;
}

.hr-white {
  background-color: var(--terciaria);
  width: 100%;
}

.text-aba {
  color: white;
  text-align: justify;
}

.text-aba-2 {
  color: rgb(0, 0, 0);
  text-align: justify;
}

.title-faq {
  color: #f7007c;
}

.text-ser p {
  color: rgb(0, 0, 0);
  text-align: justify;
}

/* Perguntas Frequentes */
.number-1 {
  font-size: 80px;
  color: #ffffff;
}

.card-ser {
  border-radius: 30px;
  background-color: #af7d62;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
}

.card-ser:hover {
  background-color: rgb(119, 119, 119);
  box-shadow: 0px 10px 10px rgba(251, 142, 255, .3);
}

.img-anali-lef {
  padding-left: 50px;
}

.img-sobr {
  border-radius: 30px;
  margin-top: 30px;
  box-shadow: 0px 10px 10px rgba(251, 142, 255, .568);
}

.img-sobr:hover {
  box-shadow: 0px 10px 10px rgba(255, 13, 74, .3);
}

.logo-1 {
  width: 500px;
  height: 500px;
}

.lista-1 ul {
  list-style: none;
  font-size: 16px;
  line-height: 35px;
  font-weight: 300;
  padding-left: 0;
}

/* Header alinhado estilo print */
.nav-custom .logo-drath img {
  height: 130px;
  width: auto;
}

.nav-custom {
 
  font-size: 18px;
  background-color: #fff;
}

.nav-custom-hover a {
  color: var(--primaria)!important;
  font-weight: bold;
  text-decoration: none;
}

.nav-custom-hover a:hover {
  color: var(--secundaria) !important;
}

@media (min-width: 992px) {
  .text-total {
    padding-left: 32px;
  }

  .nav-custom .navbar-collapse {
    display: flex !important;
    align-items: center;
    gap: 24px;
  }

  .nav-custom .navbar-nav {
    display: flex;
    align-items: center;
    gap: 18px;
  }
}

@media (min-width: 992px) {
  .nav-custom .navbar-brand {
    transform: translateX(-22px);
  }
}


/* Seu hover */
.nav-custom-hover a:before {
  background-color: var(--terciaria);
}
/* =========================================
   MENU BRANCO (somente na página Agro)
========================================= */

.nav-custom--white .nav-custom-hover a{
  color: var(--primaria) !important;
}

.nav-custom--white .nav-custom-hover a:hover{
  color: var(--secundaria) !important;
}

/* hamburguer branco */
.nav-custom--white .navbar-toggler{
  border-color: rgba(255,255,255,.35) !important;
}

.nav-custom--white .navbar-toggler-icon{
  filter: invert(1) brightness(2);
}

/* no mobile, quando abrir o menu, garante fundo escuro pra ler */
@media (max-width: 991.98px){
  .nav-custom--white .navbar-collapse{
    background: rgba(6,42,35,.92);
    border-radius: 14px;
    padding: 12px;
    margin-top: 10px;
  }
}

/* =========================================
   MOBILE ONLY
========================================= */
@media (max-width: 991.98px){

  .nav-custom .logo-drath img{
    height: 70px;
    width: auto;
  }

  .nav-custom{
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .navbar-toggler{
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: none !important;
  }

  .navbar-toggler:focus{
    box-shadow: none !important;
  }
}

/* =========================================
   OFFCANVAS MOBILE
========================================= */
.menu-mobile-custom{
  width: min(86vw, 320px) !important;
  background: #fff;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  overflow: hidden;
}

.menu-mobile-custom__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid #ececec;
}

.menu-mobile-custom__brand img{
  height: 42px;
  width: auto;
  display: block;
}

.menu-mobile-custom .btn-close{
  width: 40px;
  height: 40px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background-size: 14px;
  box-shadow: none !important;
}

.menu-mobile-custom__body{
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: calc(100vh - 77px);
}

.menu-mobile-custom__nav{
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-mobile-custom__nav > li{
  border-bottom: 1px solid #ececec;
}

.menu-mobile-custom__nav > li > a{
  display: block;
  width: 100%;
  padding: 18px 24px;
  color: #183b2d !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.menu-mobile-custom__footer{
  margin-top: auto;
  padding: 18px 14px 14px;
}
.navbar-light .navbar-toggler {
  background-color: white;
    
}
.menu-mobile-custom__cta{
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003b22;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
}

.offcanvas-backdrop.show{
  opacity: .35;
}

@media (min-width: 992px) {
  .nav-custom .navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .nav-custom .navbar-nav > li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
  }

  .nav-custom .navbar-nav > li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 18px;
    background-color: var(--primaria);
    opacity: 0.25;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}



.nav-custom{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  transition: all .28s ease;
}

.nav-custom .logo-drath img{
  height: 130px;
  width: auto;
  transition: height .28s ease;
}

/* estado menor ao rolar */
.nav-custom.is-scrolled{
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}

.nav-custom.is-scrolled .logo-drath img{
  height: 82px;
}

body{
  padding-top: 130px;
}

@media (max-width: 991.98px){
  .nav-custom .logo-drath img{
    height: 70px;
  }

  body{
    padding-top: 82px;
  }

  .nav-custom.is-scrolled .logo-drath img{
    height: 58px;
  }
}


/* Banner - Landing Page Sitex */
.banner-prin {
  position: relative;
  display: grid;
  background: linear-gradient(112deg, #7da84a 48%, #668045 58%);
  overflow: hidden;
  height: 750px;
}

.text-projet {
  color: var(--primaria);
  font-size: 60px;
  font-weight: 500;
  font-family: 'Nunito', sans-serif;
}

.text-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.text-total .logo-drath {
  margin: 0 0 14px 0;
  padding: 0 !important;
  text-align: left !important;
  width: 100%;
}

.text-total .logo-drath img {
  max-width: 260px;
  height: auto;
  display: block;
}

.text-total .text-temp {
  width: 100%;
}

.text-total .btn {
  margin-top: 18px;
}

.text-temp {
  color: #4140428f;
  line-height: 35px;
  font-size: 18px;
}

.seu-ema {
  border: 1px solid var(--primaria);
  width: 365px;
  height: 51px;
  padding: 16px;
  border-radius: 8px;
  gap: 8px;
}

/* Parceiros */
.parceiros {
  font-size: 25px;
  text-align: center !important;
  color: #999;
  font-weight: 600;
}

.linha-d {
  border-top: 1px solid;
  margin: 30px 0;
}

.swiper-container {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.swiper-container .swiper-slide-p {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-container .swiper-slide-p img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container .swiper-slide {
  width: 60%;
}

.swiper-container .swiper-slide:nth-child(2n) {
  width: 40%;
}

.swiper-container .swiper-slide:nth-child(3n) {
  width: 20%;
}

/* Card Sitex */


/* ==========================
   CTA SITEX (igual ao mock)
   ========================== */

/* Área preta (onde aparece a faixa branca atrás) */
.sitex-cta-area {
  position: relative;
  padding: 34px 0;
  background: transparent;
  /* (se sua seção já é preta, pode manter) */
}

/* Faixa branca ATRÁS do card (igual ao print) */
.sitex-cta-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  background: #fff;
  z-index: 0;
}

/* Garante que o card fique acima da faixa */
.sitex-cta-container {
  position: relative;
  z-index: 1;
}

/* Card verde */
.sitex-cta__row {
  position: relative;
  background: #86c34a;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .20);

  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 34px 44px;
}

/* X branco (imagem) — posição e tamanho para ficar IGUAL ao print */
.sitex-cta__decor {
  position: absolute;
  left: -10%;
  /* empurra para a esquerda (mostra o X grande sem cobrir o texto) */
  top: 50%;
  transform: translateY(-50%);
  width: 74%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.sitex-cta__decor img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* mantém o desenho do X */
  object-position: center;
  transform: scale(1.08);
}

/* Conteúdo por cima */
.sitex-cta__content {
  position: relative;
  z-index: 2;
  width: 100%;

  /* “reserva” a área do X (igual ao mock) */
  padding-left: clamp(300px, 40vw, 620px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo-escri {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f211c;
  line-height: 1;
}

/* Coluna direita */
.sitex-cta__right {
  max-width: 420px;
}

/* Texto */
.sitex-cta__title {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

/* Lista */
.sitex-cta__list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

/* Botão */
.sitex-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 26px;
  border-radius: 10px;

  background: #fff;
  color: #6aa92d;
  text-decoration: none;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transition: transform .15s ease, filter .15s ease;
}

.sitex-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Responsivo */
@media (max-width: 991px) {
  .sitex-cta-area::before {
    height: 90px;
  }

  .sitex-cta__row {
    padding: 26px 18px;
    border-radius: 32px;
    min-height: auto;
  }

  .sitex-cta__content {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sitex-cta__right {
    max-width: 520px;
  }

  .sitex-cta__list {
    padding-left: 0;
    list-style: none;
  }

  .sitex-cta__decor {
    left: -38%;
    width: 125%;
    height: 220%;
    opacity: .22;
    /* para não brigar com o conteúdo no mobile */
  }
}

/* Sobre base */
.title-sitex {
  color: var(--secundaria);
  font-size: 44px;
  font-weight: 600;
}

.text-sobre {
  color: #ffffff;
  font-weight: 500;
  font-size: 25px;
}

.banner-sobre {
  background: var(--primaria);
  border-radius: 60px;
  border: 3px solid var(--secundaria);

}

/* Cases */
.Cases {
  color: #999;
  font-size: 40px;
}

.quadro-indic {
  border: 1px solid var(--secundaria);
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(251, 242, 252, .3);
  background-color: #f4f1f0;
  color: var(--terciaria);
  background-image: url(/wp-content/themes/Sitex/assets/img/drrhandersen.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  cursor: pointer;
  transition: 8s;
  background-position: 100% 0%;
}

.quadro-indic:hover {
  background-color: #f4f1f0;
  background-position: 100% 100%;
}

.btn-cases {
  background-color: var(--secundaria);
  color: #ffffff;
  text-align: center;
  padding: 8px 40px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
}

.btn-cases:hover {
  background-color: white;
  color: var(--secundaria);
  border: 1px solid gray;
  transition: 1s;
}

/* ===== SOBRE (IGUAL REFERÊNCIA) ===== */
#sobre .banner-sobre {
  background: #86C34A;
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 55px !important;
}

#sobre .title-sitex {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

#sobre .sobre-swiper {
  width: 100%;
  overflow: hidden;
}

#sobre .sobre-swiper .swiper-wrapper {
  align-items: center;
  padding-right: 70px;
}

#sobre .sobre-slide {
  width: 210px !important;
  display: flex;
  justify-content: center;
}

#sobre .sobre-card {
  width: 180px;
  height: 180px;
  border-radius: 22px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

#sobre .sobre-card.dark {
  background: #1f1f1f;
  color: #fff;
}

#sobre .sobre-card.light {
  background: #fff;
  color: #1f1f1f;
}

#sobre .sobre-card i {
  font-size: 62px;
  margin-bottom: 12px;
  line-height: 1;
}

#sobre .sobre-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 140px;
}

/* ✅ RESPONSIVO (corrigido: media query fechado) */
@media (max-width: 991px) {
  #sobre .banner-sobre {
    padding: 36px 22px !important;
  }

  #sobre .title-sitex {
    font-size: 38px;
    text-align: center;
  }

  #sobre .sobre-swiper .swiper-wrapper {
    padding-right: 0;
  }

  #sobre .sobre-slide {
    width: 200px !important;
  }

  #sobre .sobre-card {
    width: 170px;
    height: 170px;
  }
}





/* HERO BASE */
.home-hero {
  padding: 40px 0 60px;
  background: #fff;
}

/* TOPO */
.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* BOTÃO ORÇAMENTO */
.btn-orcamento {
  background: #9BCB3B;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

/* HERO */
.hero-row {
  min-height: 480px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-logo {
  max-width: 220px;
}

.hero-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* CTA */
.btn-cta {
  background: #9BCB3B;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  width: fit-content;
}

/* IMAGEM */
.hero-right {
  display: flex;
  justify-content: flex-end;
}





/* =========================
   BANNER AGRO (igual ao print)
   Classe base: .banner-agro-1
========================= */
/* =========================
   AGRO HERO - limpo e funcionando
========================= */
/* =========================
   AGRO BANNER (igual ao print)
========================= */
.agro-banner {
  position: relative;
  background-image: var(--agro-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 560px;
  display: flex;
  align-items: center;

  padding: 90px 0;
  overflow: hidden;
}

/* overlay escuro para legibilidade */
.agro-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .35) 55%,
      rgba(0, 0, 0, .25) 100%);
  z-index: 0;
}

.agro-banner__container {
  position: relative;
  z-index: 1;
}

.agro-banner__content {
  max-width: 860px;
}

.agro-banner__title {
  margin: 0 0 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.18;
  font-size: clamp(28px, 3.1vw, 44px);
  text-transform: uppercase;
}

.agro-banner__title strong {
  font-weight: 900;
}

.agro-banner__sub {
  max-width: 640px;
  color: rgba(255, 255, 255, .85);
  font-size: 18px;
  line-height: 1.65;
}

.agro-banner__sub p {
  margin: 0;
}

/* CTA na direita (como no print) */
.agro-banner__cta {
  display: flex;
  justify-content: start;
  align-items: flex-end;
  height: 100%;
}

.agro-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  /* botão reto igual print */
  background: #ffffff;
  color: var(--primaria);
  /* verde água do print (ajuste se quiser) */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.agro-banner__btn:hover {
  filter: brightness(1.03);
  color: var(--secundaria);
}

/* Responsivo */
@media (max-width: 991px) {
  .agro-banner {
    padding: 70px 0;
    min-height: 520px;
  }

  .agro-banner__cta {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .agro-banner__btn {
    width: 100%;
  }

  .agro-banner__sub {
    font-size: 16px;
  }
}














/* Form Trabalhe Conosco */
.trabalhe-form {
  background: #fff;
  border-radius: 14px;
  padding: 34px 34px;
}

.trabalhe-title {
  font-size: 40px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #111;
}

.trabalhe-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  background: #B89355;
  border-radius: 99px;
  margin-top: 10px;
}

.trabalhe-sub {
  margin: 0 0 22px;
  color: #6b7280;
  font-weight: 600;
}

.trabalhe-form .form-label {
  font-weight: 700;
  font-size: 13px;
  color: #1f2937;
  margin-bottom: 6px;
}

.trabalhe-form .form-control {
  border-radius: 10px;
  border: 1px solid #d8dee6;
  padding: 12px 14px;
}

.trabalhe-form .form-control:focus {
  border-color: #86C34A;
  box-shadow: 0 0 0 4px rgba(134, 195, 74, .18);
}

/* Upload estilo mock */
.upload-box {
  width: 100%;
  border: 2px dashed #d8dee6;
  border-radius: 12px;
  padding: 22px 16px;
  display: grid;
  place-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  text-align: center;
}

.upload-icon {
  font-size: 18px;
  opacity: .7;
}

.upload-text {
  font-weight: 600;
  color: #6b7280;
  font-size: 13px;
}

.upload-plus {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.upload-input {
  display: none;
}

.upload-hint {
  display: block;
  margin-top: 8px;
  color: #6b7280;
}

/* Checkbox */
.trabalhe-form .form-check-label {
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
}

.trabalhe-form .form-check-label a {
  color: #6b7280;
  text-decoration: underline;
}

/* Botão */
.btn-enviar {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: #B89355;
  color: #fff;
  font-weight: 800;
  border: 0;
}

.btn-enviar:hover {
  filter: brightness(1.03);
}

.fundo-news {
  background-image: url("../img/FUNDO\ LISO.png");
  background-attachment: fixed;
}

.destaque-news {
  color: white;
  font-weight: 500;
  font-size: 20px;
}





/* ================================
   DEPOIMENTOS (igual ao mock)
   ================================ */

/* Seção + fundo */
.depoimentos-area {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  /* corta o slide “entrando” */
}

/* Efeito diagonais (como no print) */
.depoimentos-area::before,
.depoimentos-area::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

.depoimentos-area::after {
  inset: -40% -30%;
  background: linear-gradient(315deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 60%);
  transform: rotate(-16deg);
}

/* Container interno */
.depoimentos-wrap {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
}

/* Título */
.depoimentos-title {
  color: var(--primaria);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 44px;
}

.depo-cli {
  color: white;
}

/* Swiper: garante o “corte” do próximo card */
.depoSwiper {
  overflow: visible;
  /* importante: quem corta é a seção */
}

/* Slide com largura fixa (pra mostrar “um pedaço” do próximo) */
.depo-slide {
  width: 520px !important;
  /* ajuste fino */
}

/* Card */
.depo-card {
  background: #fff;
  border-radius: 42px;
  padding: 26px 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .30);
  min-height: 180px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

/* Texto do depoimento */
.depo-text {
  color: #a1a1a1;
  font-size: 16px;
  line-height: 1.55;
}

/* Evita que o wp injete margens enormes */
.depo-text p {
  margin: 0;
}

/* Rodapé do card */
.depo-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar */
.depo-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: #1f211c;
  flex: 0 0 52px;
}

.depo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nome + estrelas */
.depo-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.depo-name {
  color: #1f211c;
  font-weight: 800;
  font-size: 14px;
}

.depo-stars {
  display: flex;
  gap: 2px;
  color: #fdc400;
  font-size: 12px;
}

/* (Opcional) ícone Google */
.depo-google {
  margin-left: auto;
  opacity: .9;
}

.depo-google img {
  width: 18px;
  height: auto;
  display: block;
}

/* Responsivo */
@media (max-width: 991px) {
  .depoimentos-area {
    padding: 56px 0;
  }

  .depo-slide {
    width: 86vw !important;
  }

  /* no mobile vira 1 por vez */
  .depo-card {
    border-radius: 32px;
  }
}

/* ===== DEPOIMENTOS: todos os cards com a mesma altura ===== */

/* Faz todos os slides “esticar” igual */
.depoSwiper .swiper-wrapper {
  align-items: stretch;
}

/* O slide precisa permitir o card ocupar 100% */
.depo-slide {
  height: auto;
  display: flex;
}

/* Card com altura fixa/igual + estrutura */
.depo-card {
  width: 100%;
  height: 220px;
  /* ajuste aqui (ex: 210/230) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Texto: limita quantidade de linhas para não aumentar o card */
.depo-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* quantidade de linhas (3 ou 4) */
  overflow: hidden;
}

/* Garante que o rodapé “cole” embaixo */
.depo-footer {
  margin-top: auto;
}

/* Avatar sempre com o mesmo tamanho (evita variações) */
.depo-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.depo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

/* Mobile: deixa o card um pouco mais alto (opcional) */
@media (max-width: 991px) {
  .depo-card {
    height: 240px;
  }

  .depo-text {
    -webkit-line-clamp: 4;
  }
}


/* =========================
   AJUSTE FINAL (igual print)
   ========================= */

:root {
  --overlap-sitex: 120px;
  /* quanto o card Sitex "entra" no preto */
  --faixa-sitex: 120px;
  /* altura da faixa branca atrás do card */
}


/* 2) DEPOIMENTOS: cria espaço no topo e no fim (pra receber Sitex) */
.banner-depo {
  position: relative;
  z-index: 1;

  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ===== Inverter layout do depoimento: topo = perfil / baixo = texto ===== */

/* o card vira coluna */
.depo-card {
  display: flex;
  flex-direction: column;
  /* empilha do topo pra baixo: perfil e depois texto, sem empurrar o texto pro fim */
  justify-content: flex-start;
}

/* joga o footer (avatar + nome + estrelas) pra cima */
.depo-card .depo-footer {
  order: 1;
  margin-top: 0;
  margin-bottom: 14px;
  /* espaço entre topo e texto */
}

/* texto vai pra baixo */
.depo-card .depo-text {
  order: 2;
}

/* opcional: se você tinha clamp/altura fixa, garante que o texto não "suma" */
.depo-text {
  -webkit-line-clamp: unset !important;
  display: block !important;
  overflow: visible !important;
}

/* 3) SITEX: fica "dentro" da área preta, com faixa branca atrás */
.sitex-cta-area {
  position: relative;
  z-index: 6;
  margin-top: calc(var(--overlap-sitex) * -1);
  /* sobe e entra no banner-depo */
  padding-top: 0 !important;
  padding-bottom: 0 !important;

  background: transparent !important;
  /* mata qualquer fundo branco/cinza do section */
}

/* faixa branca atrás (igual print) */
.sitex-cta-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  /* centraliza a faixa na altura do card */
  top: 50%;
  transform: translateY(-50%);

  height: var(--faixa-sitex);
  background: #ffffff;
  z-index: -1;
}

/* garante que nada interno pinte fundo */
.sitex-cta-area>.container,
.sitex-cta-area .sitex-cta {
  background: transparent !important;
}

/* 4) Mobile: reduz overlaps */
@media (max-width: 575px) {
  :root {
    --overlap-sitex: 70px;
    --faixa-sitex: 80px;
  }
}



/* =========================
   SITEX entrando no CONTATO
   ========================= */
.sitex-cta-area {
  position: relative;
  z-index: 20;
  margin-bottom: calc(var(--overlap-sitex-contato) * -1) !important;
}





.services-agro {
  background-image: url(../img//FUNDO_GRAFISMOS.png);
  background-attachment: fixed;

}














.para-ma {
  font-size: 25px;
  color: white;
}

.portfolio-filters .is-active {
  background: gray;
  color: #ffffff;
  font-size: 16px;
  border-radius: 5px;
}

.btn-outline-dark {
  color: #212529;
  border: 1px solid var(--secundaria);
  font-size: 16px;

}

.depoSwiper {
  overscroll-behavior: contain;
  touch-action: pan-y;
}




/* =========================================
   HERO AGRO — versão clean (igual referência)
========================================= */

.agro-hero{
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: url("/wp-content/themes/Brasicon/assets/img/Banner-agro.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay mais uniforme e elegante */
.agro-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(6, 42, 35, .80) 0%,
    rgba(6, 42, 35, .70) 45%,
    rgba(6, 42, 35, .78) 100%
  );
  z-index: 0;
}

/* menu fica acima e não interfere */
.agro-hero__menu{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

/* container central */
.agro-hero__container{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 110px 0 80px; /* espaço pro menu */
  
}

.agro-hero__content{
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
}

/* "Pacotes" */
.agro-hero__tag{
  display: inline-block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 12px;
}

/* título */
.agro-hero__title{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(30px, 4.2vw, 60px);
}

/* subtítulo */
.agro-hero__subtitle{
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  opacity: .92;
}

.agro-hero__subtitle p{ margin: 0; }

/* botão */
.agro-hero__actions{
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.agro-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #b89355;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  transition: transform .15s ease, filter .15s ease;
}

.agro-hero__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: var(--primaria);
}

/* responsivo */
@media (max-width: 991.98px){
  .agro-hero__container{
    width: calc(100vw - 24px);
    padding: 96px 0 64px;
  }
}

@media (max-width: 575.98px){
  .agro-hero{
    min-height: 480px;
  }

  .agro-hero__btn{
    width: 100%;
    max-width: 320px;
  }
}







/* ================================
   REVEAL KIT (Scroll + Stagger)
   ================================ */

/* estado inicial (antes de entrar na viewport) */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

/* quando entra */
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* variações opcionais */
.reveal--up{ transform: translateY(18px); }
.reveal--down{ transform: translateY(-18px); }
.reveal--left{ transform: translateX(18px); }
.reveal--right{ transform: translateX(-18px); }
.reveal--scale{ transform: scale(.98); }

/* STAGGER: aplica delay automático nos filhos */
.reveal-stagger > *{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}

.reveal-stagger.is-in > *{
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   HOVER LIFT (cards/botões)
   ================================ */
.hover-lift{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hover-lift:hover{
  transform: translateY(-2px);
  filter: brightness(1.01);
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hover-lift{
    transition: none !important;
  }
}


/* =========================================
   HERO SPLIT — animação elegante (sem parallax)
========================================= */

/* prepara estado inicial (só quando JS adiciona .hero-anim) */
.hero-split.hero-anim .hero-split__left .hero-split__content > *{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}

/* stagger (cada bloco entra um pouco depois) */
.hero-split.hero-anim .hero-split__left .hero-split__content > *:nth-child(1){ transition-delay: .05s; }
.hero-split.hero-anim .hero-split__left .hero-split__content > *:nth-child(2){ transition-delay: .12s; }
.hero-split.hero-anim .hero-split__left .hero-split__content > *:nth-child(3){ transition-delay: .20s; }
.hero-split.hero-anim .hero-split__left .hero-split__content > *:nth-child(4){ transition-delay: .28s; }
.hero-split.hero-anim .hero-split__left .hero-split__content > *:nth-child(5){ transition-delay: .36s; }

/* quando ativa */
.hero-split.hero-anim.is-in .hero-split__left .hero-split__content > *{
  opacity: 1;
  transform: translateY(0);
}

/* imagem da direita: fade + zoom leve */
.hero-split.hero-anim .hero-split__img{
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 1.1s ease;
  will-change: transform, opacity;
}

.hero-split.hero-anim.is-in .hero-split__img{
  opacity: 1;
  transform: scale(1);
}

/* micro-efeito no span "impulsiona" (glow bem suave) */
.hero-split.hero-anim.is-in .hero-title span{
  text-shadow: 0 8px 26px rgba(184,147,85,.22);
}

/* opcional: hover lift em CTA do topo (seu botão .btn-card-s-menu) */
.btn-card-s-menu{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-card-s-menu:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .hero-split.hero-anim .hero-split__left .hero-split__content > *,
  .hero-split.hero-anim .hero-split__img,
  .hero-split.hero-anim .hero-split__right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-split__logo {
    animation: none !important;
  }
  .hero-accent-bar {
    transform: scaleX(1) !important;
    animation: none !important;
  }
}

/* =========================================
   HERO ACCENT BAR — animated gold reveal
========================================= */
@keyframes heroBarReveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-split.hero-anim.is-in .hero-accent-bar {
  animation: heroBarReveal 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.55s both;
}

@media (min-width: 991px) and (max-width: 1400px) {
  .service-card__text {
    font-size: 13.5px;
    line-height: 1.65;
  }
}

/* ==========================================================================
   SINGLE SERVIÇO — página interna premium
   ========================================================================== */

/* ─── hero ─────────────────────────────────────────────────────── */
.servico-single {
  min-height: 100vh;
}

.servico-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--primaria);
}

.servico-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.servico-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.servico-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 50, 41, 0.35) 0%,
    rgba(2, 50, 41, 0.78) 100%
  );
}

/* fallback — sem imagem */
.servico-hero__media--fallback {
  background: linear-gradient(135deg, var(--primaria) 0%, #0f4c45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-hero__fallback-icon {
  color: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-hero__fallback-icon svg {
  width: 120px;
  height: 120px;
}

/* hero body — texto sobre a imagem */
.servico-hero__body {
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

.servico-hero__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.servico-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.25s ease;
}

.servico-hero__back:hover {
  color: var(--secundaria);
}

.servico-hero__back svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.servico-hero__back:hover svg {
  transform: translateX(-3px);
}

/* gold accent bar above title */
.servico-hero__inner::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secundaria);
  border-radius: 999px;
  margin-bottom: 18px;
  margin-top: 10px;
}

.servico-hero__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

/* ─── content ───────────────────────────────────────────────────── */
.servico-content {
  background: #fff;
  padding: 72px 0 96px;
}

.servico-content__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 17px;
  line-height: 1.85;
  color: #2e3d3a;
}

/* typography inside the content */
.servico-content__inner h2,
.servico-content__inner h3,
.servico-content__inner h4 {
  color: var(--primaria);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.servico-content__inner h2 { font-size: clamp(22px, 2.5vw, 30px); }
.servico-content__inner h3 { font-size: clamp(18px, 2vw, 24px); }

.servico-content__inner p     { margin-bottom: 1.4em; }
.servico-content__inner ul,
.servico-content__inner ol    { padding-left: 1.4em; margin-bottom: 1.4em; }
.servico-content__inner li    { margin-bottom: 0.45em; }

.servico-content__inner strong { color: var(--primaria); }

.servico-content__inner a {
  color: var(--primaria);
  text-decoration: underline;
  text-decoration-color: var(--secundaria);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.servico-content__inner a:hover { color: var(--secundaria); }

/* separator */
.servico-content__inner > *:first-child::before {
  content: none;
}

/* back footer */
.servico-content__footer {
  max-width: 720px;
  margin: 52px auto 0;
  padding: 0 40px;
  border-top: 1px solid rgba(2, 50, 41, 0.1);
  padding-top: 36px;
}

.servico-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primaria);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(2, 50, 41, 0.3);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.servico-back-btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.servico-back-btn:hover svg { transform: translateX(-3px); }

.servico-back-btn:hover {
  background: var(--primaria);
  color: #fff;
  border-color: var(--primaria);
}

/* ─── responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .servico-hero {
    min-height: 340px;
  }

  .servico-hero__body {
    padding: 40px 0;
  }

  .servico-hero__inner {
    padding: 0 24px;
  }

  .servico-hero__title {
    font-size: clamp(26px, 6vw, 38px);
  }

  .servico-content {
    padding: 48px 0 72px;
  }

  .servico-content__inner,
  .servico-content__footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .servico-content__inner {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .servico-hero {
    min-height: 280px;
  }

  .servico-content {
    padding: 36px 0 60px;
  }
}












/* =========================================================
   FOOTER / CONTATO
   Base: versão anterior
   Mantidos da versão nova: tipografia, mapa colorido, ícones sociais quadrados
   ========================================================= */

/* ── Seção base — mesmo fundo de imagem do hero ── */
.footer-serac {
  position: relative;
  overflow: hidden;
  padding: 90px 0 26px;
  background: var(--primaria);
}

/* ── Imagem de fundo ── */
.footer-serac__bg {
  position: absolute;
  inset: 0;
  background: url("../img/FUNDO1_VidroBRASICON.png") center center / cover no-repeat;
  filter: brightness(0.48) saturate(0.80);
  transform: scale(1.03);
}

/* ── Overlay — mesma direção do hero, com densidade adequada à imagem do footer ── */
.footer-serac::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(2, 50, 41, 0.90) 0%,
    rgba(2, 50, 41, 0.72) 50%,
    rgba(2, 50, 41, 0.56) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.footer-serac__container {
  position: relative;
  z-index: 2;
}

/* ── Grid (versão anterior) ── */
.footer-serac__grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1.15fr);
  gap: 72px;
  align-items: stretch;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-serac__left,
.footer-serac__right {
  color: #fff;
}

.footer-serac__left {
  display: flex;
  flex-direction: column;
}


/* ══════════════════════════════════════════════════
   COLUNA ESQUERDA — versão anterior
   ══════════════════════════════════════════════════ */

.footer-serac__info {
  margin-bottom: 0;
}

/* MANTIDO DA VERSÃO NOVA: eyebrow com tom dourado e traço */
.footer-serac__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secundaria);
  margin-bottom: 18px;
}

.footer-serac__eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--secundaria);
  flex-shrink: 0;
}

/* MANTIDO DA VERSÃO NOVA: tipografia do título mais refinada */
.footer-serac__title {
  font-family: 'Questrial', sans-serif !important;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  color: #f4f1ea;
  margin: 0 0 26px;
  letter-spacing: -0.02em;
}

/* Textos de contato (versão anterior) */
.footer-serac__form-msg {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.footer-serac__form-msg--ok {
  background: rgba(46, 139, 87, 0.18);
  border: 1px solid rgba(46, 139, 87, 0.45);
  color: #d7f0e0;
}

.footer-serac__form-msg--err {
  background: rgba(200, 60, 60, 0.16);
  border: 1px solid rgba(200, 60, 60, 0.45);
  color: #f3d6d6;
}

.footer-serac__text {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 480px;
}

.footer-serac__text a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.footer-serac__text a:hover {
  text-decoration: underline;
}

/* Mapa (versão anterior, exceto filtro) */
.footer-serac__map {
  width: 100%;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  min-height: 300px;
  border: 1px solid rgba(255,255,255,0.12);
  flex: 1 1 auto;
  display: flex;
}

.footer-serac__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  /* MANTIDO DA VERSÃO NOVA: sem filtro grayscale — mapa colorido */
}

.footer-serac__map-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

/* MANTIDO DA VERSÃO NOVA: ícones sociais em botões quadrados glass */
.footer-serac__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

/* ícones simples: Facebook, LinkedIn, YouTube */
.footer-serac__socials a:not(.footer-serac__ig-row) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  font-size: 17px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-serac__socials a:not(.footer-serac__ig-row):hover {
  background: rgba(189,155,96,0.20);
  border-color: rgba(189,155,96,0.45);
  color: var(--secundaria);
  transform: translateY(-3px);
}

/* Instagram — ícone + label em linha */
.footer-serac__ig-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.footer-serac__ig-row i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 17px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-serac__ig-row:hover {
  color: var(--secundaria);
}

.footer-serac__ig-row:hover i {
  background: rgba(189,155,96,0.20);
  border-color: rgba(189,155,96,0.45);
}

.footer-serac__ig-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════
   COLUNA DIREITA — versão anterior (glass card)
   ══════════════════════════════════════════════════ */

.footer-serac__right {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  padding: 40px 40px 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.footer-serac__tabs {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.footer-serac__tabs button {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.62);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 0 0 14px;
  cursor: pointer;
}

.footer-serac__tabs button.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

/* MANTIDO DA VERSÃO NOVA: tipografia do título do form com Questrial + sublinhado dourado */
.footer-serac__tabs--single {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  position: relative;
}

.footer-serac__tabs--single span {
  font-family: 'Questrial', sans-serif !important;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  position: relative;
  padding-bottom: 18px;
}

/* sublinhado dourado centralizado abaixo do título */
.footer-serac__tabs--single span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--secundaria);
}

.footer-serac__actions--center {
  display: flex;
  justify-content: center;
}

/* ── Formulário (versão anterior) ── */
.footer-serac__form {
  width: 100%;
}

.footer-serac__row {
  display: grid;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-serac__row--1 {
  grid-template-columns: 1fr;
}

.footer-serac__row--2 {
  grid-template-columns: 1fr 1fr;
}

.footer-serac__field {
  position: relative;
}

.footer-serac__field input,
.footer-serac__field select,
.footer-serac__field textarea {
  width: 100%;
  background: #f3f2f2;
  border: 0;
  border-radius: 18px;
  padding: 18px 20px;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  box-shadow: none;
}

.footer-serac__field input::placeholder,
.footer-serac__field textarea::placeholder,
.footer-serac__field select,
.footer-serac__field option {
  color: #000;
}

.footer-serac__field select {
  cursor: pointer;
}

.footer-serac__field textarea {
  min-height: 170px;
  resize: vertical;
}

.footer-serac__field input:focus,
.footer-serac__field select:focus,
.footer-serac__field textarea:focus {
  box-shadow: 0 0 0 2px rgba(49,123,73,0.25);
  color: #000;
}

.footer-serac__field--file input[type="file"] {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: none;
  background: #fff;
  color: #000;
}

/* ── Botão (versão anterior) ── */
.footer-serac__actions {
  margin-top: 12px;
}

.footer-serac__btn {
  min-width: 108px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #2f7b49;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 28px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-serac__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════
   RODAPÉ INFERIOR (versão anterior)
   ══════════════════════════════════════════════════ */

.footer-serac__bottom {
  max-width: 1200px;
  margin: 70px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-serac__bottom p,
.footer-serac__bottom a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  margin: 0;
}

.footer-serac__bottom-center {
  text-align: center;
}

.footer-serac__bottom-center a {
  display: inline-block;
  margin: 0 10px;
}

.footer-serac__bottom-right {
  text-align: right;
}

.footer-serac__bottom a:hover {
  text-decoration: underline;
}


/* ══════════════════════════════════════════════════
   RESPONSIVO (versão anterior)
   ══════════════════════════════════════════════════ */

@media (max-width: 991.98px) {
  .footer-serac {
    padding: 60px 0 20px;
  }

  .footer-serac__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-serac__right {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .footer-serac__map {
    min-height: 260px;
  }

  .footer-serac__map iframe {
    min-height: 260px;
  }

  .footer-serac__tabs {
    gap: 18px;
    flex-wrap: wrap;
  }

  .footer-serac__row--2 {
    grid-template-columns: 1fr;
  }

  .footer-serac__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 42px;
  }

  .footer-serac__bottom-center,
  .footer-serac__bottom-right {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer-serac__tabs--single span {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .footer-serac__tabs button {
    font-size: 15px;
  }

  .footer-serac__text {
    font-size: 15px;
  }

  .footer-serac__field input,
  .footer-serac__field select,
  .footer-serac__field textarea {
    font-size: 14px;
    padding: 16px 16px;
  }

  .footer-serac__socials {
    gap: 8px;
  }
}

/* =========================================
   ANIMAÇÕES MAIS PERCEPTÍVEIS
   ========================================= */

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-card,
.reveal-title,
.reveal-soft {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition-property: opacity, transform, filter, letter-spacing, box-shadow;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* entrada padrão */
.reveal,
.reveal-up {
  transform: translateY(70px);
  transition-duration: 1s;
}

/* entrada lateral */
.reveal-left {
  transform: translateX(-80px);
  transition-duration: 1s;
}

.reveal-right {
  transform: translateX(80px);
  transition-duration: 1s;
}

/* escala */
.reveal-scale {
  transform: scale(0.84);
  filter: blur(6px);
  transition-duration: 1s;
}

/* cards */
.reveal-card {
  transform: translateY(60px) scale(0.92);
  filter: blur(4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.116);
  transition-duration: 1s;
}

/* títulos mais perceptíveis, porém elegantes */
.reveal-title {
  transform: translateY(40px);
  filter: blur(8px);
  letter-spacing: 0.06em;
  transition-duration: 1.1s;
}

/* versão mais delicada */
.reveal-soft {
  transform: translateY(30px);
  filter: blur(3px);
  transition-duration: 0.9s;
}

/* estado visível */
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-card.is-visible,
.reveal-title.is-visible,
.reveal-soft.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
  letter-spacing: normal;
}


/* delays */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* hover para reforçar presença */
.service-card,
.footer-serac__right,
.footer-serac__map,
.noticia-card,
.avaliacao-card,
.projeto-card,
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.footer-serac__right:hover,
.footer-serac__map:hover,
.noticia-card:hover,
.avaliacao-card:hover,
.projeto-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/* banner: mais delicado */
.hero__title.reveal-title,
.banner__title.reveal-title,
.slide-title.reveal-title {
  transform: translateY(24px);
  filter: blur(3px);
  transition-duration: 0.9s;
}

/* botões */
.btn.reveal,
button.reveal,
.service-card__button.reveal,
.footer-serac__btn.reveal {
  transform: translateY(24px) scale(0.96);
  transition-duration: 0.8s;
}

.btn.reveal.is-visible,
button.reveal.is-visible,
.service-card__button.reveal.is-visible,
.footer-serac__btn.reveal.is-visible {
  transform: none;
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-card,
  .reveal-title,
  .reveal-soft {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =================================================================
   TYPOGRAPHY SYSTEM — Brasicon Premium
   Cormorant Garamond (headings) + Inter (body/UI)
   Cascades over legacy scattered rules at the end of the file
================================================================= */

/* ── Navigation ── */
.nav-custom {
  font-size: 14px;
}

.nav-custom-hover a {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu-mobile-custom__nav > li > a {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu-mobile-custom__cta {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Services section ── */
.services__title {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.services__title::before {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.service-card__title {
  font-family: 'Questrial', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.service-card__button {
  font-family: 'Nunito', sans-serif;
  font-size: 1px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── About section ── */
.title-h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-sobre-3 {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(34px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-geral p {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.text-geral strong {
  font-weight: 700;
}

/* ── News section — overrides de fonte apenas (layout definido acima) ── */
.news-kicker {
  font-family: 'Nunito', sans-serif;
}

.news-title {
  font-family: 'Questrial', sans-serif;
}

.news-card__title,
.news-card__title a {
  font-family: 'Questrial', sans-serif;
}

.news-card__category {
  font-family: 'Nunito', sans-serif;
}

/* ── Footer ── (overrides removidos — estilos definidos no bloco footer-serac acima) */

/* =================================================================
   QUESTRIAL WEIGHT RESET
   Questrial is a single-weight font (400 only).
   This block overrides any legacy 600/700 declarations that were
   tuned for Cormorant Garamond, preventing ugly browser-synthesized
   bold on all heading-type elements.
================================================================= */
h1, h2, h3, h4, h5, h6,
.hero-title,
.services__title,
.service-card__title,
.text-sobre-3,
.news-title,
.news-card__title,
.news-card__title a,
.footer-serac__title,
.agro-hero__title,
.lp-dor__title,
.numeros-area__value,
.cta-final__title {
  font-family: 'Questrial', sans-serif !important;
  font-weight: 400 !important;
}


/* =================================================================
   REVEAL-DELAY helpers  (front-page usa reveal-delay-N, não delay-N)
================================================================= */
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }
.reveal-delay-5 { transition-delay: .60s; }


/* =================================================================
   LP-DOR  —  Seção Dores + Formulário
================================================================= */
.lp-dor {
  padding: 90px 0;
}

.lp-dor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- bloco de problemas --- */
.lp-dor__title {
  color: var(--primaria);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 20px;
}

.lp-dor__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--secundaria);
  border-radius: 999px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.lp-dor__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-dor__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--quaternaria);
  font-weight: 500;
  line-height: 1.4;
}

.lp-dor__list li .bi {
  color: #c0392b;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-dor__transition {
  font-size: 17px;
  color: var(--quaternaria);
  line-height: 1.6;
  border-left: 3px solid var(--secundaria);
  padding-left: 16px;
  margin-top: 10px;
}

.lp-dor__transition strong {
  color: var(--primaria);
}

/* --- bloco do formulário --- */
.lp-dor__form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(2, 50, 41, .10);
  border: 1px solid rgba(2, 50, 41, .08);
}

.lp-dor__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-dor__field input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #d4d8d3;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--quaternaria);
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.lp-dor__field input:focus {
  border-color: var(--primaria);
  box-shadow: 0 0 0 3px rgba(2, 50, 41, .10);
  background: #fff;
}

.lp-dor__field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.lp-dor__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primaria);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .07em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 4px;
  transition: background .2s, transform .18s, box-shadow .18s;
}

.lp-dor__btn:hover {
  background: #01251e;
  box-shadow: 0 6px 22px rgba(2, 50, 41, .22);
}

/* microcopy */
.lp-dor__microcopy {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-dor__microcopy li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

.lp-dor__microcopy li .bi {
  color: var(--primaria);
  font-size: 14px;
}

/* success / error */
.lp-dor__success {
  text-align: center;
  padding: 30px 0;
  color: var(--primaria);
}

.lp-dor__success .bi {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
  color: var(--secundaria);
}

.lp-dor__success p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.lp-dor__error {
  background: #fef3f2;
  border: 1px solid #fca5a5;
  color: #c0392b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* responsivo */
@media (max-width: 991.98px) {
  .lp-dor {
    padding: 70px 0;
  }

  .lp-dor__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .lp-dor {
    padding: 56px 0;
  }

  .lp-dor__form-wrap {
    padding: 28px 20px;
  }

  .lp-dor__microcopy {
    gap: 14px;
  }
}


/* =================================================================
   NÚMEROS  —  Métricas de resultado
================================================================= */
.numeros-area {
  background: linear-gradient(180deg, #001612 0%, #002820 55%, #001c16 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.numeros-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,130,95,.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 80% 100%, rgba(189,155,96,.05) 0%, transparent 50%);
}

.numeros-area .container {
  position: relative;
  z-index: 1;
}

.numeros-area__intro {
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.numeros-area__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.numeros-area__item {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(189,155,96,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  transition: border-color .3s, background .3s;
}

.numeros-area__item:hover {
  border-color: rgba(189,155,96,.45);
  background: rgba(255,255,255,.05);
}

.numeros-area__value {
  display: block;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--secundaria);
  line-height: 1;
  margin-bottom: 10px;
}

.numeros-area__label {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .numeros-area {
    padding: 60px 0;
  }

  .numeros-area__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .numeros-area__item {
    padding: 28px 20px;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  .numeros-area__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}


/* =================================================================
   CTA FINAL
================================================================= */
.cta-final {
  background: linear-gradient(135deg, var(--primaria) 0%, #013d2f 60%, #01231b 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(189,155,96,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-final__text {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-final__btn {
  display: inline-block;
  background: var(--secundaria);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .07em;
  padding: 18px 44px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .18s;
}

.cta-final__btn:hover {
  background: #a8894f;
  box-shadow: 0 8px 28px rgba(189,155,96,.35);
  color: #fff;
}

@media (max-width: 767.98px) {
  .cta-final {
    padding: 70px 0;
  }

  .cta-final__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .cta-final__text {
    font-size: 16px;
  }

  .cta-final__btn {
    padding: 16px 32px;
    font-size: 14px;
  }
}


/* =================================================================
   MAPA + ESTATÍSTICAS — seção de resultados
================================================================= */
.mapa-stats {
  background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
  padding: 80px 0 70px;
}

/* Grid externo: mapa ocupa +20% | conteúdo */
.mapa-stats__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mapa-stats__mapa figure {
  margin: 0;
  transform: scale(1.1);
  transform-origin: left center;
}
.mapa-stats__mapa .dra-sbmais {
  border-radius: 18px;
  width: 100%;
  max-width: 680px;
}

/* Coluna direita: eyebrow + texto + grid dos cards */
.mapa-stats__content {
  display: flex;
  flex-direction: column;
}

.mapa-stats__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--secundaria);
  margin: 0 0 18px;
}

.mapa-stats__texto-inst {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(2, 50, 41, .70);
  margin: 0 0 32px;
}

/* Card maior (linha 1) + 2 menores (linha 2) */
.mapa-stats__numeros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  border-top: 1px solid rgba(2, 50, 41, .08);
  padding-top: 24px;
}

/* Primeiro card ocupa a largura toda — acomoda +R$30.000.000 sem corte */
.mapa-stats__stat:first-child {
  grid-column: 1 / -1;
}

.mapa-stats__stat {
  padding: 26px 28px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 14px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(2, 50, 41, .04);
  border-top: 3px solid var(--secundaria);
}

.mapa-stats__value {
  display: block;
  font-family: 'Questrial', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primaria);
  white-space: nowrap;
  line-height: 1.1;
  margin-bottom: 8px;
}

.mapa-stats__label {
  display: block;
  font-size: 15px;
  color: rgba(2, 50, 41, .62);
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.8;
}

/* Tablet */
@media (max-width: 991.98px) {
  .mapa-stats { padding: 60px 0 52px; }
  .mapa-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .mapa-stats__mapa figure { transform: none; }
  .mapa-stats__numeros { gap: 14px; margin-top: 24px; }
  .mapa-stats__stat { padding: 20px 22px; min-height: 110px; }
  .mapa-stats__value { font-size: clamp(24px, 3.6vw, 36px); }
  .mapa-stats__texto-inst { font-size: 15px; }
  .mapa-stats__label { font-size: 14px; }
}

/* Mobile: mapa acima, todos os cards em coluna única */
@media (max-width: 767.98px) {
  .mapa-stats { padding: 52px 0 44px; }

  .mapa-stats__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mapa-stats__numeros {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
  }

  /* Em mobile todos os cards são coluna única — reset do span */
  .mapa-stats__stat:first-child {
    grid-column: auto;
  }

  .mapa-stats__stat {
    padding: 22px 22px;
    min-height: 100px;
  }

  .mapa-stats__value { font-size: clamp(28px, 7vw, 40px); }
  .mapa-stats__label { font-size: 14px; }
  .mapa-stats__texto-inst { font-size: 15px; margin-bottom: 20px; }
}


/* =================================================================
   SÓCIOS / EQUIPE — carrosséis Swiper (sócios + escritório)
================================================================= */
.socios-sec {
  background: #fff;
  padding: 64px 0 80px;
  border-top: 1px solid rgba(2,50,41,.06);
}

.socios-sec__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.socios-sec__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--secundaria);
  margin: 0 0 18px;
}

.socios-sec__title {
  font-size: clamp(22px, 2.6vw, 36px);
  color: var(--primaria);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 400;
  padding-bottom: 14px;
  position: relative;
}

.socios-sec__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--secundaria);
  border-radius: 999px;
  margin-top: 16px;
}

.socios-sec__text {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(15, 42, 33, .76);
  margin: 0 0 14px;
}

.socios-sec__text:last-of-type { margin-bottom: 0; }

/* Coluna de fotos: grid 2 colunas — idêntico ao layout original */
.socios-sec__fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Carrossel base ── */
.sobre-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(2,50,41,.04);
  line-height: 0;
  /* ambos os carrosséis ocupam as duas colunas (como o --wide original) */
  grid-column: 1 / -1;
  /* impede que o Swiper (conteúdo intrínseco largo) estoure a largura do grid */
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

/* garante que os slides não empurrem a largura do container */
.sobre-carousel .swiper-slide {
  min-width: 0;
}

/* Sócios: altura proporcional ao par de slots originais */
.sobre-carousel--socios {
  height: 200px;
}

/* Escritório: fotos reais em retrato — altura maior para aparecerem bem */
.sobre-carousel--escritorio {
  height: 380px;
}

/* Imagens preenchem o slide com cover */
.sobre-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Slide e wrapper herdam a altura do container fixo */
.sobre-carousel .swiper-wrapper {
  height: 100%;
}

.sobre-carousel .swiper-slide {
  height: 100%;
  overflow: hidden;
}

/* Paginação (bolinhas) */
.sobre-carousel .swiper-pagination {
  bottom: 10px;
}

.sobre-carousel .swiper-pagination-bullet {
  background: #fff;
  opacity: .55;
  width: 8px;
  height: 8px;
  transition: opacity .2s, background .2s;
}

.sobre-carousel .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--secundaria);
}

/* Setas de navegação */
.sobre-carousel .swiper-button-prev,
.sobre-carousel .swiper-button-next {
  width: 36px;
  height: 36px;
  background: rgba(2,50,41,.65);
  border-radius: 50%;
  color: #fff;
  transition: background .2s;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.sobre-carousel .swiper-button-prev:hover,
.sobre-carousel .swiper-button-next:hover {
  background: var(--primaria);
}

.sobre-carousel .swiper-button-prev::after,
.sobre-carousel .swiper-button-next::after {
  font-size: 12px;
  font-weight: 700;
}

/* Placeholders (fallback) — restaurados ao padding original */
.socios-foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-column: 1 / -1;       /* ocupa ambas as colunas como o carousel */
  padding: 40px 16px;
  border: 2px dashed rgba(2,50,41,.14);
  border-radius: 16px;
  background: rgba(2,50,41,.02);
  color: rgba(2,50,41,.36);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  transition: border-color .25s, background .25s;
}

.socios-foto-placeholder:hover {
  border-color: rgba(189,155,96,.4);
  background: rgba(189,155,96,.03);
  color: rgba(2,50,41,.55);
}

.socios-foto-placeholder i { font-size: 30px; }

.socios-foto-placeholder--wide {
  padding: 30px 16px;
}

@media (max-width: 991.98px) {
  .socios-sec { padding: 52px 0 64px; }
  .socios-sec__inner { gap: 40px; }
}

@media (max-width: 767.98px) {
  .socios-sec { padding: 44px 0 56px; }

  .socios-sec__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sobre-carousel--socios     { height: 180px; }
  .sobre-carousel--escritorio { height: 340px; }
}

@media (max-width: 575.98px) {
  .socios-foto-placeholder       { padding: 30px 12px; }
  .socios-foto-placeholder--wide { padding: 24px 12px; }

  .sobre-carousel--socios     { height: 160px; }
  .sobre-carousel--escritorio { height: 300px; }

  .sobre-carousel .swiper-button-prev,
  .sobre-carousel .swiper-button-next { display: none; }
}


/* =================================================================
   SERVIÇOS — Horizontal Bands (layout exclusivo Brasicon)
   Diferenciado da concorrência: lista numerada horizontal, não grade
================================================================= */
.svc-bands {
  background: #f7f7f5;
  padding: 90px 0 100px;
}

.svc-bands__header {
  margin-bottom: 68px;
}

.svc-bands__title {
  color: var(--primaria);
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 0;
}

.svc-bands__bar {
  width: 48px;
  height: 2px;
  background: var(--secundaria);
  border-radius: 999px;
  margin: 20px auto 0;
}

.svc-bands__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Banda (linha de serviço) */
.svc-band {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid rgba(2, 50, 41, .08);
  border-radius: 16px;
  transition: border-color .45s ease,
              transform .3s ease,
              box-shadow .45s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

/* Fill que avança da esquerda para a direita */
.svc-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primaria);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s ease;
  z-index: 0;
}

.svc-band:hover {
  border-color: var(--primaria);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(2, 50, 41, .18);
}

.svc-band:hover::before {
  transform: scaleX(1);
}

/* Todo o conteúdo fica acima do fill */
.svc-band__num,
.svc-band__icon,
.svc-band__body,
.svc-band__btn {
  position: relative;
  z-index: 1;
}

/* Número decorativo */
.svc-band__num {
  font-family: 'Questrial', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: rgba(2, 50, 41, .12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
  transition: color .35s ease;
  user-select: none;
}

.svc-band:hover .svc-band__num { color: rgba(189, 155, 96, .25); }

/* Ícone */
.svc-band__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(2, 50, 41, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primaria);
  transition: background .35s ease, color .35s ease;
}

.svc-band__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  transition: filter .35s ease;
}

.svc-band:hover .svc-band__icon {
  background: rgba(189, 155, 96, .2);
  color: var(--secundaria);
}

.svc-band:hover .svc-band__icon img { filter: brightness(0) invert(1); }

/* Texto */
.svc-band__body { flex: 1; }

.svc-band__title {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--primaria);
  margin: 0 0 6px;
  font-weight: 600;
  transition: color .35s ease;
}

.svc-band:hover .svc-band__title { color: #fff; }

.svc-band__text {
  font-size: 14px;
  color: #6b7c78;
  margin: 0;
  line-height: 1.6;
  transition: color .35s ease;
}

.svc-band:hover .svc-band__text { color: rgba(255, 255, 255, .72); }

/* Botão CTA */
.svc-band__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  border-radius: 100px;
  background: var(--primaria);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--primaria);
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .25s ease;
}

.svc-band:hover .svc-band__btn {
  background: var(--secundaria);
  border-color: var(--secundaria);
  color: #0F2A21;
  box-shadow: 0 4px 18px rgba(189, 155, 96, .35);
}

/* Responsivo: tablet */
@media (max-width: 991.98px) {
  .svc-bands { padding: 70px 0 80px; }

  .svc-band {
    gap: 20px;
    padding: 22px 24px;
  }

  .svc-band__num { font-size: 32px; min-width: 42px; }
}

/* ── Mobile: grid 2×2 ── */
@media (max-width: 767.98px) {
  .svc-bands {
    padding: 44px 0 52px;
  }

  .svc-bands__header { margin-bottom: 28px; }

  /* Grid 2 colunas — sem scroll horizontal */
  .svc-bands__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow-x: visible;
    padding: 0;
  }

  /* Card: conteúdo empilhado verticalmente */
  .svc-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 12px;
    flex: unset;
    min-width: 0;
  }

  .svc-band__num { display: none; }

  .svc-band__icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .svc-band__body {
    flex: 1;
    min-width: 0;
    flex-basis: auto;
  }

  .svc-band__title { font-size: 14px; margin-bottom: 0; }

  /* Descrição oculta no mobile — mantém card compacto */
  .svc-band__text { display: none; }

  .svc-band__btn {
    align-self: stretch;
    justify-content: center;
    border-radius: 8px;
    padding: 9px 8px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
  }
}

/* Telas muito pequenas: 1 coluna */
@media (max-width: 359px) {
  .svc-bands__list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  /* Remove animação de varredura — fill aparece/some instantaneamente */
  .svc-band         { transition: none; }
  .svc-band::before { transition: none; }
  .svc-band:hover   { transform: none; }

  .svc-band__num,
  .svc-band__icon,
  .svc-band__icon img,
  .svc-band__title,
  .svc-band__text,
  .svc-band__btn    { transition: none; }
}


/* =================================================================
   LOGOS DE CLIENTES — gerenciadas pelo painel (CPT logos_clientes)
================================================================= */
.client-logos {
  padding: 44px 0 52px;
  text-align: center;
}

.client-logos__label {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primaria);
  margin-bottom: 28px;
}

/* Carrossel (Swiper) — espaço lateral para as setas */
.client-logos__swiper {
  position: relative;
  padding: 6px 44px 44px;
}

/* Cada slide é um cartão branco arredondado; a LARGURA é definida pelo Swiper */
.client-logos__swiper .swiper-slide {
  height: auto;
}

.client-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  max-width: 100%;
  height: 116px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(2, 50, 41, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.client-logos__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(2, 50, 41, .12);
}

/* Setas e paginação com a paleta do tema */
.client-logos__swiper .swiper-button-prev,
.client-logos__swiper .swiper-button-next {
  color: var(--secundaria, #BD9B60);
  width: 32px;
  height: 32px;
}
.client-logos__swiper .swiper-button-prev { left: 0; }
.client-logos__swiper .swiper-button-next { right: 0; }
.client-logos__swiper .swiper-button-prev::after,
.client-logos__swiper .swiper-button-next::after {
  font-size: 22px;
  font-weight: 700;
}

.client-logos__swiper .swiper-pagination {
  bottom: 8px;
}
.client-logos__swiper .swiper-pagination-bullet {
  background: rgba(2, 50, 41, .3);
  opacity: 1;
}
.client-logos__swiper .swiper-pagination-bullet-active {
  background: var(--secundaria, #BD9B60);
}

/* Logo real — bordas arredondadas na própria imagem */
.client-logos__img {
  max-width: 82%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform .3s ease;
  will-change: transform;
}

/* Zoom na logo ao passar o mouse sobre o card */
.client-logos__item:hover .client-logos__img {
  transform: scale(1.18);
}

/* Placeholder (exibido dentro do item se não houver imagem no post) */
.client-logos__placeholder {
  width: 130px;
  height: 64px;
  background: rgba(2, 50, 41, .04);
  border: 2px dashed rgba(2, 50, 41, .14);
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease;
}

.client-logos__placeholder:hover {
  border-color: rgba(189, 155, 96, .45);
  background: rgba(189, 155, 96, .04);
}

@media (max-width: 575.98px) {
  .client-logos__swiper {
    padding: 6px 32px 40px;
  }
  .client-logos__label {
    font-size: 20px;
  }
  .client-logos__item {
    width: 120px;
    height: 92px;
    padding: 16px;
    border-radius: 16px;
  }
  .client-logos__img {
    max-height: 56px;
  }
  .client-logos__placeholder {
    width: 104px;
    height: 52px;
  }
}


/* =================================================================
   CTA INTERMEDIÁRIO — antes de "Nossa Força"
================================================================= */
.cta-inter {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-inter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(189, 155, 96, .1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inter .container { position: relative; z-index: 1; }

.cta-inter__inner { max-width: 680px; margin: 0 auto; }

.cta-inter__title {
  color: var(--primaria);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-inter__sub {
  color: var(--primaria);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-inter__btn {
  display: inline-block;
  background: var(--secundaria);
  color: #0F2A21;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .07em;
  padding: 17px 44px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .18s;
}

.cta-inter__btn:hover {
  background: #c9a464;
  box-shadow: 0 8px 28px rgba(189, 155, 96, .38);
  color: #0F2A21;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .cta-inter { padding: 60px 0; }
  .cta-inter__sub { font-size: 15px; margin-bottom: 28px; }
  .cta-inter__btn { padding: 15px 32px; font-size: 14px; }
}

@media (max-width: 575.98px) {
  .cta-inter { padding: 50px 0; }
  .cta-inter__btn { width: 100%; text-align: center; }
}


/* =================================================================
   EXIT POPUP — intent de saída
================================================================= */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup[hidden] { display: none; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 50, 41, .7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 52px 44px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
  border: 1px solid rgba(189, 155, 96, .22);
  animation: epIn .45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes epIn {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(2, 50, 41, .07);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--primaria);
  transition: background .2s ease, transform .15s ease;
}

.exit-popup__close:hover {
  background: rgba(2, 50, 41, .14);
  transform: rotate(90deg);
}

.exit-popup__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(189, 155, 96, .1);
  border: 1px solid rgba(189, 155, 96, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--secundaria);
  margin: 0 auto 22px;
}

.exit-popup__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secundaria);
  margin-bottom: 10px;
}

.exit-popup__text {
  font-family: 'Questrial', sans-serif;
  font-size: 21px;
  color: var(--primaria);
  line-height: 1.35;
  margin-bottom: 32px;
}

.exit-popup__btn {
  display: block;
  background: var(--primaria);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  padding: 17px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
  margin-bottom: 16px;
}

.exit-popup__btn:hover {
  background: #013d2f;
  box-shadow: 0 8px 24px rgba(2, 50, 41, .28);
  color: #fff;
}

.exit-popup__alt {
  display: inline-block;
  font-size: 13px;
  color: #7a8a85;
  text-decoration: underline;
  cursor: pointer;
  transition: color .2s ease;
}

.exit-popup__alt:hover { color: var(--primaria); }

@media (max-width: 575.98px) {
  .exit-popup__box {
    padding: 42px 24px 34px;
    border-radius: 18px;
  }

  .exit-popup__text { font-size: 18px; }

  .exit-popup__btn {
    font-size: 13px;
    padding: 15px 20px;
  }
}

/* =========================================
   SMOOTH SCROLL GLOBAL
========================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

@media (min-width: 992px) {
  html {
    scroll-padding-top: 130px;
  }
}

/* =========================================
   LINKS RÁPIDOS MOBILE — header shortcuts
========================================= */
.nav-quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  padding: 0 6px;
  overflow: hidden;
}

.nav-quick-links__item {
  color: var(--primaria) !important;
  font-size: 11.5px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-decoration: none !important;
  padding: 5px 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-quick-links__item:hover,
.nav-quick-links__item:active {
  color: var(--secundaria) !important;
}

.nav-quick-links__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: var(--primaria);
  opacity: 0.25;
}

/* Telas muito pequenas: ocultar quick links para preservar layout */
@media (max-width: 359px) {
  .nav-quick-links {
    display: none !important;
  }
}


/* =================================================================
   REVEAL — VERSÃO AUTORITATIVA E PERCEPTÍVEL
   ─────────────────────────────────────────────────────────────
   Consolida os blocos anteriores. Este bloco vem por ÚLTIMO no
   arquivo, então vence o cascade. O JS (custom.js) adiciona a
   classe .is-in via IntersectionObserver — TODO o estado final
   é resolvido aqui a partir de .is-in (os blocos antigos usavam
   .is-visible, que nunca era aplicada, deixando títulos borrados).
   ================================================================= */

/* Estado inicial + curva de transição (curva com desaceleração forte) */
.reveal,
.reveal-title,
.reveal-card {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .95s cubic-bezier(.16, 1, .3, 1),
    filter .95s cubic-bezier(.16, 1, .3, 1),
    letter-spacing .95s cubic-bezier(.16, 1, .3, 1);
}

/* Deslocamento base — bem perceptível */
.reveal { transform: translateY(56px); }

/* Variações direcionais (declaradas DEPOIS da base p/ vencerem) */
.reveal--up    { transform: translateY(56px); }
.reveal--down  { transform: translateY(-56px); }
.reveal--left  { transform: translateX(-70px); }
.reveal--right { transform: translateX(70px); }
.reveal--scale { transform: scale(.85); filter: blur(6px); }

/* Títulos: sobem + desfoque + leve expansão de tracking */
.reveal-title {
  transform: translateY(46px);
  filter: blur(10px);
  letter-spacing: .08em;
}

/* Cards: sobem, encolhem e desfocam */
.reveal-card {
  transform: translateY(64px) scale(.9);
  filter: blur(6px);
}

/* Estado final — limpa TUDO (vence os estados iniciais acima) */
.reveal.is-in,
.reveal--up.is-in,
.reveal--down.is-in,
.reveal--left.is-in,
.reveal--right.is-in,
.reveal--scale.is-in,
.reveal-title.is-in,
.reveal-card.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  letter-spacing: normal;
}

/* Stagger — filhos entram em cascata (o pai recebe .is-in;
   o custom.js aplica transition-delay progressivo nos filhos) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(50px) scale(.96);
  will-change: opacity, transform;
  transition:
    opacity .8s cubic-bezier(.16, 1, .3, 1),
    transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal-stagger.is-in > * {
  opacity: 1;
  transform: none;
}


/* =================================================================
   ANIMAÇÕES AMBIENTE (contínuas) — reforçam a presença visual
   ================================================================= */

/* Hover mais perceptível em qualquer elemento .hover-lift */
.hover-lift:hover {
  transform: translateY(-5px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

/* Pulso de brilho nos CTAs principais para chamar a atenção */
@keyframes bxCtaPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(189, 155, 96, .32); }
  50%      { box-shadow: 0 10px 34px rgba(189, 155, 96, .62); }
}
.hero-btn--primary,
.lp-dor__btn,
.footer-serac__btn {
  animation: bxCtaPulse 2.6s ease-in-out infinite;
}
.hero-btn--primary:hover,
.lp-dor__btn:hover,
.footer-serac__btn:hover {
  animation-play-state: paused;
}

/* Pulso do CTA verde (form) usa tom esverdeado */
.lp-dor__btn,
.footer-serac__btn {
  animation-name: bxCtaPulseGreen;
}
@keyframes bxCtaPulseGreen {
  0%, 100% { box-shadow: 0 6px 22px rgba(47, 123, 73, .30); }
  50%      { box-shadow: 0 10px 34px rgba(47, 123, 73, .58); }
}

/* Varredura de brilho (shine) cruzando os CTAs principais */
.hero-btn--primary,
.lp-dor__btn {
  position: relative;
  overflow: hidden;
}
.hero-btn--primary::after,
.lp-dor__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: bxShine 3.6s ease-in-out infinite;
}
@keyframes bxShine {
  0%   { left: -140%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

/* Barra dourada do hero: brilho suave e contínuo após entrar */
@keyframes bxAccentGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(189, 155, 96, 0)); opacity: .85; }
  50%      { filter: drop-shadow(0 0 10px rgba(189, 155, 96, .55)); opacity: 1; }
}
.hero-split.hero-anim.is-in .hero-accent-bar {
  animation: bxAccentGlow 3.2s ease-in-out 1.2s infinite;
}

/* Acessibilidade — desliga as animações ambiente para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .hero-btn--primary,
  .lp-dor__btn,
  .footer-serac__btn,
  .hero-split.hero-anim.is-in .hero-accent-bar {
    animation: none !important;
  }
  .hero-btn--primary::after,
  .lp-dor__btn::after {
    display: none !important;
  }
  .reveal,
  .reveal-title,
  .reveal-card,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    letter-spacing: normal !important;
    transition: none !important;
  }
}
