@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* 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;
}

p,
a {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
  font-family: "IBM Plex Sans", sans-serif;
}

.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 {
  padding: 10px;
  font-weight: bold;
  font-size: 18px;
  color: var(--primaria);
  background: var(--secundaria);
  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 SPLIT */
.hero-split {
  width: 100%;
  overflow: hidden;
}

.hero-split__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero-split__left {
  background: #F4F1EA;
  /* bege claro */
  display: flex;
  align-items: center;
}

.hero-split__content {
  width: 100%;
  max-width: 560px;
  padding: 64px 56px;
}

.hero-title {
  margin: 0 0 18px 0;
  font-size: 70px;
  line-height: 1.05;
  font-weight: 800;
  color: #0F2A21;
  /* verde escuro */
  letter-spacing: -0.5px;
}

.hero-title span {
  color: #B89355;
  /* dourado */
  font-weight: 800;
}

.hero-sub {
  max-width: 520px;
  font-size: 29px;
  line-height: 1.6;
  color: #2A2A2A;
  margin-bottom: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: #0F2A21;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* sempre 3 na mesma linha */
  gap: 16px;
  margin-top: 26px;
  max-width: 520px;
  /* parecido com o layout */
}

.hero-tag {
  height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;

  background: #F4F1EA;
  border: 1px solid #E2D8C8;
  border-radius: 10px;

  text-decoration: none;
  color: #0F2A21;
  font-weight: 700;
  white-space: nowrap;
  /* evita quebrar texto */
}

.hero-tag__icon {
  width: 22px;
  /* ajuste fino pro seu ícone */
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* LADO DIREITO (IMAGEM) */
.hero-split__right {
  position: relative;
  min-height: 520px;
}

.hero-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* RESPONSIVO */
@media (max-width: 991px) {
  .hero-split__wrap {
    grid-template-columns: 1fr;
  }

  .hero-split__content {
    padding: 42px 18px;
    max-width: 100%;
  }

  .hero-tags {
    grid-template-columns: 1fr;
  }

  .hero-split__right {
    min-height: 340px;
  }
}

/* Centraliza melhor o conteúdo do lado esquerdo */
.hero-split__left {
  display: flex;
  align-items: center;
  /* centraliza verticalmente */
  justify-content: center;
  /* centraliza horizontalmente */
}

/* Controla largura e “respiro” do conteúdo */
.hero-split__content {
  width: 100%;
  max-width: 620px;
  /* aumenta um pouco a área do texto */
  padding: 40px 48px;
  /* menos padding pra não empurrar */
}

/* Se ainda estiver muito “pra cima”, use isso também */
.hero-title {
  margin-top: 0;
}

/* Ajuste fino do bloco geral (se quiser mais “miolo”) */
.hero-split__wrap {
  min-height: 600px;
  /* aumenta a altura da área pra ficar mais central */
}

@media (min-width: 992px) {
  .nav-custom .navbar-brand {
    transform: translateX(-22px);
  }
}

@media (min-width: 992px) {

  /* cria uma “régua” igual ao .container do menu */
  .hero-split__left {
    justify-content: flex-start !important;
    padding-left: calc((100vw - 1140px) / 2) !important;
    /* igual container */
    padding-right: 0 !important;
  }

  /* respiro interno normal */
  .hero-split__content {
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
    padding-right: 48px !important;
    max-width: 620px;
  }
}

/* para telas muito grandes (não estourar) */
@media (min-width: 1400px) {
  .hero-split__left {
    padding-left: calc((100vw - 1320px) / 2) !important;
    /* container xxl */
  }
}





.stats {
  background: #F4F1EA;
  padding: 60px 0;
}

.stats__wrap {
  text-align: center;
}

.stats__title {
  color: #0F2A21;
  font-weight: 700;
  margin: 0 0 26px;
}

.stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  min-width: 180px;
}

.stat__num {
  font-size: 48px;
  font-weight: 900;
  color: #B89355;
  line-height: 1;
}

.stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: #222;
  font-weight: 600;
}

.stat__divider {
  width: 1px;
  height: 54px;
  background: rgba(0, 0, 0, .25);
}

@media (max-width: 767px) {
  .stat__divider {
    display: none;
  }

  .stat__num {
    font-size: 40px;
  }
}

.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;
}

/* NEWS - 2 cards */
.news-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-card {
  background: #fff;
  border-radius: 33px;
  overflow: hidden;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .12);
  border: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}




/* ==========================
   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;
  }
}


/* ==========================
   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 (igual a referência)
   ========================= */

   
/* fundo da seção */
.news-area{
  padding: 60px 0;
  background-image: url(../img/FUNDO\ LISO.png);
  background-attachment: fixed;
      background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

/* card externo */
.news-wrap{
  position: relative;
  background: #062a23; /* verde bem escuro */
  border: 2px solid rgba(205,170,110,.85); /* dourado */
  border-radius: 40px;
  padding: 38px 38px;
  overflow: hidden;
}

/* opcional: leve brilho/sombra */
.news-wrap{
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
/* =========================
   NEWS — VOLTAR AO PADRÃO (igual antes)
   imagem em cima + texto embaixo
   ========================= */

.news-card{
  position: relative !important;
  aspect-ratio: auto !important;      /* remove quadrado */
  overflow: hidden;
  border-radius: 26px;
  background: #f4f1ea;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* imagem volta a ser “topo” e com altura fixa */
.news-card__thumb{
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: 220px;                      /* ajuste fino */
  display: block;
  transform: none !important;
  transition: none !important;
  backface-visibility: visible !important;
}

/* imagem preencher */
.news-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body volta a aparecer embaixo */
.news-card__body{
  position: relative !important;
  inset: auto !important;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  transform: none !important;
  transition: none !important;
  backface-visibility: visible !important;
  background: #f4f1ea;
}
.news-card__body{
  padding: 14px 14px 16px;
  background: #f4f1ea;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.news-card__date{
  font-size:12px;
  opacity:.75;
}

.news-card__title{
  margin:0;
  font-size:20px;
  line-height:1.2;
  font-weight:800;
}

.partir{
  font-size: 23px;
}
.news-card__title a{
  color:#0F2A21;
  text-decoration:none;
}

.news-card__btn{
  margin-top:auto;
  display:inline-flex;
  width:fit-content;
  padding:10px 12px;
  border-radius:10px;
  background:#0F2A21;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:13px;
}
/* desativa qualquer hover que esconda */
.news-card:hover .news-card__thumb,
.news-card:hover .news-card__body{
  transform: none !important;
}
/* logo escura (placeholder no topo direito do painel esquerdo) */
/* logo escura abaixo do título */
.news-logo-dark{
  display: block;
  margin-top: 18px;
  width: 120px;      /* ajuste fino */
  height: auto; 
  opacity: 70%;
}
.sx-callout__decor-2{
  position: absolute;
  inset: 0;                 /* ocupa a área toda da coluna esquerda */
  z-index: 0;               /* ✅ atrás do texto */
  pointer-events: none;
  opacity: 25%;             /* ajuste fino */
  display: flex;
  align-items: center;
  justify-content: center;
}
.sx-callout__decor-2 img{
  width: 120%;
  height: auto;
  display: block;
  object-fit: contain;
}
.news-kicker,
.news-title{
  position: relative;
  z-index: 2;              /* ✅ acima da logo */
}
/* garante a coluna esquerda como referência */
.news-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* cola na esquerda */
  position: relative;
}

/* LOGO abaixo do título (igual referência) */
.news-logo-dark{
  display: block;
  width: 96px;        /* tamanho parecido com a referência */
  height: auto;
  margin-top: 10px;   /* espaçamento pequeno abaixo do título */
  opacity: 100%;
}

/* mobile: logo menor */
@media (max-width: 991.98px){
  .news-logo-dark{
    width: 84px;
    margin-top: 8px;
  }
}
/* layout interno */
.news-inner{
  display: grid;
  grid-template-columns: 1fr 1.6fr; /* esquerda / direita */
  gap: 34px;
  align-items: center;
}

/* coluna esquerda */
.news-left{
  padding-left: 6px;
}

.news-kicker{
  margin: 0 0 10px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 500;
}

.news-title{
  margin: 0;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.02;
  letter-spacing: .02em;
  font-weight: 800;
  color: #c9a45a; /* dourado */
  text-transform: uppercase;
}

.news-title span{
  display: inline-block;
  color: #c9a45a;
}

/* coluna direita (cards) */
.news-right{
  display: flex;
  justify-content: flex-end;
}

/* grid dos 2 cards */
.news-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 26px;
  justify-content: end;
}

/* card quadrado (apenas thumb, igual à referência) */
.news-card{
  background: #f4f1ea; /* bege claro */
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* quadrado perfeito */
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* thumb ocupa tudo */
.news-card__thumb{
  display: block;
  width: 100%;
  height: 100%;
}

.news-card__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback sem imagem */
.news-card__thumb--fallback{
  width: 100%;
  height: 100%;
  background: #f4f1ea;
}

/* estado sem posts */
.news-empty{
  margin: 0;
  color: rgba(255,255,255,.75);
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 991.98px){
  .news-wrap{
    padding: 28px 18px;
    border-radius: 28px;
  }

  .news-inner{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-right{
    justify-content: center;
  }

  .news-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-logo-dark{
    width: 70px;
    top: 16px;
    right: 16px;
  }
}

/* =========================================
   FIX: "Destaques da Semana" central no topo
   sem bugar o BOLETIM/BRASICON
   ========================================= */

/* referência para posicionar no card todo */
.news-wrap{
  position: relative;
}

/* o kicker vira absoluto no CARD TODO (não na coluna esquerda) */
.news-left .news-kicker{
      position: absolute !important;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    font-size: 30px;
    width: max-content;
    text-align: center;
    z-index: 10;
}

/* IMPORTANTE:
   tira o position:relative do news-left pra não "puxar" o kicker */
.news-left{
  position: static !important;
}

/* abre espaço no topo para o kicker não colidir */
.news-inner{
  padding-top: 58px;         /* ajuste fino */
}

/* mantém textos do lado esquerdo acima da logo overlay */
.news-title,
.news-title span{
  position: relative;
  z-index: 3;
}

/* sua logo/grafismo (Subtract) continua atrás,
   mas agora preso no news-wrap e limitado à área esquerda */
.sx-callout__decor-2{
  position: absolute !important;
  top: 0;
  left: 0;
  bottom: 0;

  width: 38%;                /* ~largura da coluna esquerda */
  max-width: 520px;

  z-index: 1;
  pointer-events: none;
  opacity: .25;              /* sua opacidade */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sx-callout__decor-2 img{
  width: 130%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Mobile */
@media (max-width: 991.98px){
  .news-left .news-kicker{
    top: 18px;
    font-size: 14px;
  }

  .news-inner{
    padding-top: 48px;
  }

  .sx-callout__decor-2{
    width: 100%;
    max-width: none;
    opacity: .18;
  }
}


/* =========================================================
   PLANOS (layout com faixas douradas em imagem)
   Usa: ../Images/listradouradas.png
   ========================================================= */

/* Seção inteira */
.planos-area {
  position: relative;
  overflow: hidden;
  background-image: url("../img/FUNDO_GRAFISMOS.png");
  background-attachment: fixed;
      background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}



/* Conteúdo acima das faixas */
.planos-area .container {
  position: relative;
  z-index: 2;
}

/* === PLANOS: quanto o card invade pra baixo === */
.plano-card--featured {
  bottom: -86px;
  /* ✅ invade mais (igual ao print) */
}

/* === PLANOS: precisa ter espaço embaixo pra não cortar === */
.planos-wrap {
  padding-bottom: 140px;
  /* ✅ espaço interno pro card “vazar” */
}

/* =========================================================
   SEÇÃO DE BAIXO (onde está "Empresas que confiam...")
   -> dá espaço pra não ficar embaixo do card invadindo
   Troque ".empresas-area" pelo ID/classe real da sua seção
   ========================================================= */
.empresas-area {
  padding-top: 120px;
  /* ✅ empurra o texto pra baixo */
  position: relative;
  z-index: 1;
}

/* garante que o bloco de planos fica acima */
.planos-area {
  position: relative;
  z-index: 2;
}

/* Quadro principal (cartão grande) */
.planos-wrap {
  position: relative;
  background: #061c17;
  /* placa escura do mock */
  border: 2px solid rgba(205, 170, 110, .85);
  border-radius: 34px;
  padding: 56px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .30);
  overflow: visible;
}

/* Cabeçalho */
.planos-head {
  margin-bottom: 36px;
}

.planos-title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0;
}

/* Linha decorativa abaixo do título */
.planos-head::after {
  content: "";
  display: block;
  width: 62px;
  height: 2px;
  margin: 18px auto 0;
  background: rgba(205, 170, 110, .9);
  border-radius: 2px;
}

/* Grid */
.planos-grid {
  margin-top: 10px;
}

/* Card do plano (apenas 1 no seu HTML, mas já fica pronto pra mais) */
.plano-card {
  background: rgba(0, 0, 0, .45);
  border-radius: 26px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  min-height: 470px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.plano-card--featured {
  background: rgba(0, 0, 0, .55);
}

/* (Opcional) destaque sobe um pouco no desktop */
@media (min-width: 992px) {
  .plano-card--featured {
    transform: translateY(10px);
  }
}

/* Nome */
.plano-nome {
  font-size: 18px;
  font-weight: 800;
  margin: 6px 0 18px;
}

/* Preço */
.plano-preco {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 0 0 6px;
}

.plano-moeda {
  font-weight: 800;
  font-size: 18px;
  opacity: .95;
  margin-top: 12px;
}

.plano-valor {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Subdesc */
.plano-desc {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 18px;
}

/* Benefícios (pills) */
.plano-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.plano-pill {
  width: min(260px, 100%);
  border: 1px solid rgba(205, 170, 110, .75);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  background: rgba(205, 170, 110, .10);
  color: rgba(255, 255, 255, .95);
}

/* Botão */
.plano-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;

  background: rgba(205, 170, 110, .18);
  border: 2px solid rgba(205, 170, 110, .95);
  color: #fff;
  text-decoration: none;

  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;

  transition: transform .15s ease, background .15s ease, filter .15s ease;
}

.plano-cta:hover {
  transform: translateY(-2px);
  background: rgba(205, 170, 110, .28);
  filter: brightness(1.05);
  color: var(--secundaria);
}


/* =========================================
   PLANOS — manter proporcional no mobile
   (card só DIMINUI conforme a tela diminui)
   ========================================= */

/* Centraliza e limita o card interno SEMPRE */
.planos-grid{
  display: flex !important;
  justify-content: center !important;
}

.planos-grid > [class*="col-"]{
  display: flex !important;
  justify-content: center !important;
}

.planos-grid .plano-card{
  width: 100% !important;
  max-width: 420px !important;   /* ✅ limite igual ao “tamanho ideal” */
  margin: 0 auto !important;
}

/* Tablet/Mobile: o limite vai diminuindo suave */
@media (max-width: 991.98px){

  /* diminui o quadro grande por proporção também */
  .planos-wrap{
    padding: 26px 18px !important;
    border-radius: 26px !important;
  }

  /* tira o espaço extra do pt-5 no título */
  .planos-title{
    padding-top: 0 !important;
    margin-top: 0 !important;
    font-size: 28px !important;
  }

  .planos-head{ margin-bottom: 16px !important; }

  /* ✅ aqui é o “segredo”: max-width vai reduzindo com a tela */
  .planos-grid .plano-card{
    max-width: min(420px, 92vw) !important; /* nunca “abre” demais */
  }
  

  /* remove qualquer “empurrão”/invasão no mobile */
  .plano-card--featured{
    position: static !important;
    transform: none !important;
    bottom: auto !important;
  }

  .plano-card{
    min-height: auto !important;
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }

  .plano-valor{ font-size: 32px !important; }
}

/* Telas menores: afunila ainda mais (fica bem parecido com seu print) */
@media (max-width: 575.98px){
  .planos-grid .plano-card{
    max-width: min(360px, 92vw) !important;
  }
  .plano-valor{ font-size: 30px !important; }
}

/* =========================
   NEWS — ocupar mais tela (quase full)
   Cole NO FINAL do CSS
========================= */

/* 1) Faz a seção virar “quase full width” */
.news-area .container{
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 2) Aumenta o painel principal e centraliza */
.news-wrap{
  width: min(1600px, calc(100vw - 80px)) !important; /* quase a tela toda */
  margin: 0 auto !important;

  /* 3) Mais “altura” visual */
  padding: 60px 60px !important; /* aumenta a área */
  border-radius: 44px !important;
}

/* Deixa o conteúdo respirar mais */
.news-inner{
  gap: 60px !important;
}

/* Cards um pouco maiores */
.news-grid{
  gap: 34px !important;
}
.news-card{
  border-radius: 28px !important;
}

/* Responsivo */
@media (max-width: 991.98px){
  .news-wrap{
    width: calc(100vw - 28px) !important;
    padding: 34px 18px !important;
    border-radius: 28px !important;
  }

  .news-inner{
    gap: 22px !important;
  }
}
/* =========================================================
   NEWS — Ajuste intermediário (685px a 991.98px)
   Evita ficar "gigante/estranho" nessa faixa
========================================================= */
@media (max-width: 991.98px) and (min-width: 685px){

  /* painel */
  .news-wrap{
    padding: 34px 26px !important;
    border-radius: 32px !important;
  }

  /* mantém estrutura mais equilibrada */
  .news-inner{
    grid-template-columns: 1fr !important;   /* texto em cima */
    gap: 22px !important;
    padding-top: 56px !important;            /* espaço do kicker central */
  }

  /* kicker central igual você já queria */
  .news-left .news-kicker{
    top: 22px !important;
    font-size: 18px !important;
  }

  /* cards: 2 colunas (não 1) */
  .news-grid{
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
    gap: 18px !important;
  }

  /* ✅ trava o card no formato "imagem em cima + corpo embaixo" */
  .news-card{
    aspect-ratio: auto !important;     /* mata o quadrado */
    height: auto !important;
  }

  .news-card__thumb{
    height: 200px !important;          /* evita card gigante */
  }

  .news-card__thumb img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .news-card__body{
    display: flex !important;
  }

  /* decor não dominar */
  .sx-callout__decor-2{
    width: 100% !important;
    opacity: .16 !important;
  }
}

/* =========================================================
   NEWS — Mobile menor (<685px): 1 card por linha (ok)
   Mantém sua regra atual, só garante card não ficar quadrado
========================================================= */
@media (max-width: 684.98px){

  .news-grid{
    grid-template-columns: 1fr !important;
  }

  .news-card{
    aspect-ratio: auto !important;
  }

  .news-card__thumb{
    height: 210px !important;
  }
}
/* =========================================================
   NEWS — cards mais "gordinhos" (992px a 1600px)
   ========================================================= */
@media (min-width: 992px) and (max-width: 1600px){

  /* dá mais espaço útil pra coluna dos cards */
  .news-inner{
    grid-template-columns: 1fr 1.45fr !important; /* mais largura pros cards */
    gap: 40px !important;
    align-items: center !important;
  }

  /* cards mais largos */
  .news-grid{
    grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
    gap: 26px !important;
    align-items: start !important;
  }

  /* remove o “quadrado” e deixa o card com corpo */
  .news-card{
    aspect-ratio: auto !important;
  }

  /* thumb um pouco menor pra não ficar “alto demais” */
  .news-card__thumb{
    height: 210px !important;
  }

  /* corpo com padding mais confortável */
  .news-card__body{
    padding: 14px 16px 18px !important;
  }

  /* título em 2-3 linhas no máximo (fica mais clean) */
  .news-card__title{
    font-size: 15px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* evita o "Destaques da Semana" encostar no topo */
  .news-left .news-kicker{
    top: 26px !important;
  }
}
/* =========================================
   SOBRE (igual ao print)
   ========================================= */

.banner-sec{
  background: #F4F1EA; /* bege clarinho do print */
  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: 50px;
    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: 20px;
  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;
}

/* Responsivo */
@media (max-width: 991.98px){
  .banner-sec{
    padding: 60px 0;
  }
  .text-geral{
    max-width: 100%;
  }
  .text-sobre-3{
    font-size: 36px;
  }
}
/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 991.98px) {
  .planos-area {
    padding: 60px 0;
  }

  .planos-wrap {
    padding: 34px 18px;
    border-radius: 26px;
  }

  /* faixas menores no mobile */
  .planos-area::after {
    width: 280px;
    background-size: cover;
    opacity: .95;
  }

  .plano-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .plano-valor {
    font-size: 56px;
  }
}


/* =========================================================
   FIX PLANOS - igual referência:
   - título mais perto do card
   - card pequeno sólido (sem cinza ao invadir o bege)
   - invasão correta pra baixo
   ========================================================= */

/* 1) Aproxima título do card */
.planos-head {
  margin-bottom: 14px !important;
}

.planos-grid {
  margin-top: 8px !important;
}

/* 2) Card grande (planos-wrap) com menos “vazio” interno
      e ainda invadindo a section de baixo */
.planos-wrap {
  position: relative !important;
  overflow: visible !important;

  /* menos respiro em cima pra não “afastar” do título */
  padding-top: 34px !important;

  /* suficiente pra caber o card pequeno sem empurrar tudo */
  padding-bottom: 95px !important;

  /* invade a section de baixo */
  margin-bottom: -85px !important;

  z-index: 3 !important;
}

/* 3) Card pequeno (interno) invade mais e fica sólido (SEM RGBA) */
.planos-grid .plano-card,
.planos-grid .plano-card--featured {
  background: var(--primaria) !important;
  /* ✅ sólido (evita ficar cinza no bege) */
}

.planos-grid .plano-card--featured {
  position: relative !important;
  transform: translateY(62px) !important;
  /* ✅ invade mais a section de baixo */
  z-index: 4 !important;
}

/* 4) Section de baixo (stats) abre espaço pro título não ficar “por trás” */
.stats {
  position: relative !important;
  z-index: 1 !important;
  padding-top: 120px !important;
  /* ajusta o quanto o card invade sem cobrir o título */
}

/* ===== Responsivo: reduz um pouco no mobile ===== */
@media (max-width: 991.98px) {
  .planos-head {
    margin-bottom: 10px !important;
  }

  .planos-grid {
    margin-top: 6px !important;
  }

  .planos-wrap {
    padding-top: 26px !important;
    padding-bottom: 85px !important;
    margin-bottom: -60px !important;
  }

  .planos-grid .plano-card--featured {
    transform: translateY(42px) !important;
  }

  .stats {
    padding-top: 100px !important;
  }
}

/* ===== Aproximar card do título (igual referência) ===== */

/* tira o “vão” do header */
.planos-head {
  margin-bottom: 6px !important;
}

/* remove margin padrão do H2 */
.planos-title {
  margin-bottom: 0 !important;
}

/* reduz o respiro entre header e grid */
.planos-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* o Bootstrap g-4 cria gap vertical grande, reduz só aqui */
.planos-grid.row {
  --bs-gutter-y: 14px;
  /* antes era ~24px */
}

/* sobe um pouco o card interno (sem perder a invasão) */
.planos-grid .plano-card--featured {
  transform: translateY(40px) !important;
  /* antes estava maior */
}

/* mantém a invasão pra baixo do bloco todo */
.planos-wrap {
  padding-bottom: 95px !important;
  margin-bottom: -85px !important;
}

/* =========================================
   PLANOS -> igual referência (título perto + invade pouco)
   Cole no FINAL do CSS
========================================= */

/* não cortar o “vazamento” */
.planos-area,
.planos-wrap {
  overflow: visible !important;
}

/* camadas */
.planos-area {
  position: relative;
  z-index: 2;
}

.stats {
  position: relative;
  z-index: 1;
}

/* 1) reduz MUITO o espaço do título pro card */
.planos-head {
  margin-bottom: 15px !important;
}

/* antes estava gigante */
.planos-grid {
  margin-top: 10px !important;
}

/* cola o card no título */

/* 2) card grande de fora mais “compacto” (igual print) */
.planos-wrap {
  padding-top: 34px !important;
  /* menos respiro em cima */
  padding-bottom: 90px !important;
  /* só o necessário p/ o card invadir */
}

/* 3) card interno invade POUCO a área de baixo (igual referência) */
.planos-grid .plano-card--featured {
  position: relative !important;
  transform: translateY(62px) !important;
  /* ✅ invade só um pouco */
  z-index: 10 !important;
}

/* 4) seção de baixo: sobe um pouco e dá espaço pro texto não ficar embaixo do card */
.stats {
  margin-top: -52px !important;
  /* encosta no bloco de planos */
  padding-top: 90px !important;
  /* “Empresas...” aparece igual ao print */
}

/* Mobile/tablet: invade menos ainda */
@media (max-width: 991.98px) {
  .planos-head {
    margin-bottom: 12px !important;
  }

  .planos-grid {
    margin-top: 8px !important;
  }

  .planos-wrap {
    padding-top: 26px !important;
    padding-bottom: 76px !important;
  }

  .planos-grid .plano-card--featured {
    transform: translateY(34px) !important;
  }

  .stats {
    margin-top: -34px !important;
    padding-top: 74px !important;
  }
}

/* =========================================================
   PLANOS — DIMINUIR O CARD GRANDE (planos-wrap) DE VERDADE
   (override forte pra vencer regras antigas)
   ========================================================= */

/* diminui o "card maior" (o de fora) */

/* aproxima o conteúdo do topo (título) */
.planos-area .planos-head {
  margin-bottom: 10px !important;
}

/* aproxima o grid do título */
.planos-area .planos-grid {
  margin-top: 0px !important;
}

/* =========================================================
   CARD INTERNO — INVADINDO A SECTION DE BAIXO (igual ref)
   ========================================================= */
.planos-area .plano-card--featured {
  /* sobe um pouquinho pra reduzir o "vazio" e ainda invadir embaixo */
  transform: translateY(6px) !important;
}

/* se ainda invadir demais ou de menos, ajuste só esse número:
   -70 (invade mais), -50 (invade menos) */
/* ===== PLANOS: 2 cards invadindo a section de baixo + título mais perto ===== */

/* 1) Título mais perto do card */
.planos-head {
  margin-bottom: 10px !important;
  /* menos distância do título */
}

.planos-grid {
  margin-top: 6px !important;
  /* card sobe (fica mais próximo) */
}

/* 2) Card grande (de fora) também invade a section de baixo */
.planos-wrap {
  overflow: visible !important;
  padding-top: 34px !important;
  /* controla distância do topo */
  padding-bottom: 90px !important;
  /* espaço interno p/ card pequeno “vazar” */
  margin-bottom: -70px !important;
  /* ✅ card grande invade a section de baixo */
  position: relative !important;
  z-index: 3 !important;
}

/* 3) Card pequeno (interno) invade ainda mais */
.planos-grid .plano-card--featured {
  position: relative !important;

  /* ✅ invade a section de baixo */
  z-index: 4 !important;
}

/* 4) Section de baixo: abre espaço pro conteúdo não ficar por trás */
.stats {
  position: relative;
  z-index: 1;
  padding-top: 110px !important;
  /* ✅ empurra o título “Empresas...” pra baixo */
}

/* ===== Mobile: reduz a invasão e mantém o título perto ===== */
@media (max-width: 991.98px) {
  .planos-head {
    margin-bottom: 8px !important;
  }

  .planos-grid {
    margin-top: 4px !important;
  }

  .planos-wrap {
    padding-top: 26px !important;
    padding-bottom: 80px !important;
    margin-bottom: -50px !important;
    /* invade menos no mobile */
  }

  .stats {
    padding-top: 92px !important;
  }
}
/* =========================================
   PLANOS - VOLTAR AO NORMAL (sem invadir)
   Cole no FINAL do CSS
========================================= */

/* Não invade a section de baixo */
.planos-wrap{
  margin-bottom: 0 !important;
  overflow: hidden !important;       /* corta qualquer "vazamento" */
}

/* Card interno não desce nem invade */
.plano-card--featured{
  position: static !important;       /* remove qualquer bottom/relative */
  bottom: auto !important;
  transform: none !important;        /* remove translateY */
}

/* Seção de baixo não precisa mais de compensação */
.stats{
  margin-top: 0 !important;
  padding-top: initial !important;   /* ou ajuste pra um valor fixo se quiser */
}

/* Tablet/Mobile: garante igual */
@media (max-width: 991.98px){
  
  .plano-card--featured{
    transform: none !important;
    bottom: auto !important;
  }
}
/* 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: 140px;
  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: var(--secundaria);
  font-size: 28px;
}

/* 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;
  }
}

/* mobile */
@media (max-width: 575px) {
  .planos-wrap {
    width: calc(100vw - 24px) !important;
    padding: 46px 14px 34px !important;
    border-radius: 26px !important;
  }
}

/* MAPA com altura compatível com o FORM */
.contato-split__wrap {
  align-items: stretch;
  /* as colunas esticam igual */
}

.contato-split__map,
.contato-split__form {
  height: 100%;
  display: flex;
}

.contato-split__map {
  align-items: center;
  /* centraliza o mapa na coluna */
  justify-content: center;
}

.contato-map-embed {
  height: 60% !important;
  /* mapa ocupa toda altura da coluna */
  min-height: 0 !important;
  /* remove travas antigas */
  aspect-ratio: auto !important;
  /* não força proporção */
}

/* se quiser que o mapa encoste mais e pareça maior */
.contato-split__map {
  padding: 22px !important;
}

/* Mobile: volta ao normal */
@media (max-width: 991px) {
  .contato-map-embed {
    height: 320px !important;
    /* tamanho bom no mobile */
  }
}


/* Fundo escuro + diagonais */
.contato-area {
  position: relative;
  padding: 78px 0;
  overflow: hidden;



  background:
    radial-gradient(ellipse at center, #C4C4C4 0%, #ADAEAD 35%, #A09FA0 55%, #464646 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.contato-area::before,
.contato-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;
}

.contato-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 centralizado */
.contato-wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, .30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Ícone verde redondo */
.contato-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  /* arredonda o iframe */
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  /* parecido com o print */
}

.contato-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 575px) {
  .contato-area {
    padding: 56px 0;
  }

  .contato-btn {
    width: 100%;
    justify-content: center;
  }

  .contato-map-embed {
    aspect-ratio: 16 / 10;
  }
}

/* CONTATO SPLIT (mapa + form) */
.contato-split {
  background: var(--primaria);
  /* similar ao exemplo (escuro do lado do mapa) */
  padding: 0;
  /* sem respiro externo */
}

.contato-split__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  max-width: 1320px;
  /* acompanha seu layout */
}

/* MAPA (esquerda) */
.contato-split__map {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-map-embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 10;
  /* parecido com o print */
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.contato-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FORM (direita) */
.contato-split__form {
  background: #ffffff;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-form__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
}

.contato-form__sub {
  margin: 0 0 26px;
  color: #6b7280;
  font-weight: 600;
}

/* deixa inputs bonitos independente do plugin */
.contato-split__form input,
.contato-split__form select,
.contato-split__form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8dee6;
  padding: 12px 14px;
  outline: none;
}

.contato-split__form input:focus,
.contato-split__form select:focus,
.contato-split__form textarea:focus {
  border-color: #86C34A;
  box-shadow: 0 0 0 4px rgba(134, 195, 74, .18);
}

/* Responsivo */
@media (max-width: 991px) {
  .contato-split__wrap {
    grid-template-columns: 1fr;
  }

  .contato-split__map {
    padding: 18px;
  }

  .contato-split__form {
    padding: 34px 18px;
  }

  .contato-form__title {
    font-size: 34px;
  }
}

/* Centralizar o layout (mapa + form) */
.contato-split {
  padding: 80px 0 !important;
  /* dá respiro em cima/baixo */
}

.contato-split__wrap {
  width: min(1320px, calc(100vw - 48px)) !important;
  /* largura máxima */
  margin: 0 auto !important;
  /* centraliza */
  grid-template-columns: 1fr 1fr;
  min-height: auto !important;
}

/* mantém o mapa e o form bonitos dentro */
.contato-split__map {
  padding: 22px !important;
}

.contato-split__form {
  padding: 46px 42px !important;
  justify-content: center;
  border-radius: 45px;
}

/* Mobile */
@media (max-width: 991px) {
  .contato-split {
    padding: 24px 0 !important;
  }

  .contato-split__wrap {
    width: calc(100vw - 24px) !important;
  }
}
/* bloco do mapa + texto */
.contato-map-block{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px; /* espaço entre mapa e texto */
}

/* texto abaixo do mapa */
.contato-map-text{
  margin: 0;
  color: rgba(255,255,255,.85); /* aparece bem no fundo escuro */
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 6px; /* leve alinhamento com borda do mapa */
}

/* mobile: centraliza o texto */
@media (max-width: 991.98px){
  .contato-map-text{
    text-align: center;
    padding-left: 0;
    font-size: 13px;
  }
}
/* garante que o bloco do mapa exista (não colapse) */
.contato-map-embed{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);

  /* ✅ altura fixa + responsiva */
  min-height: 420px;
}

/* garante iframe sempre preenchendo */
.contato-map-embed iframe{
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block !important;
}

/* se o embed vier com algum wrapper interno */
.contato-map-embed > *{
  width: 100% !important;
}

/* mobile */
@media (max-width: 991.98px){
  .contato-map-embed{ min-height: 320px; }
  .contato-map-embed iframe{ height: 320px !important; }
}
/* Coluna do mapa vira "coluna" e mantém o mapa + texto */
.contato-split__map{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
}

/* Caixa do mapa: SEM aspect-ratio, com altura garantida */
.contato-map-embed{
  width: 100% !important;
  max-width: 640px;                /* ajuste se quiser maior */
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.35) !important;

  min-height: 520px !important;    /* ✅ força existir */
}

/* ✅ pega qualquer iframe que venha dentro (mesmo com wrappers) */
.contato-map-embed iframe{
  width: 100% !important;
  height: 520px !important;        /* ✅ força aparecer */
  display: block !important;
  border: 0 !important;
}

/* texto abaixo do mapa */
.contato-map-text{
  margin: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  text-align: center !important;
  opacity: .95 !important;
}

/* Mobile */
@media (max-width: 991.98px){
  .contato-map-embed{ min-height: 360px !important; }
  .contato-map-embed iframe{ height: 360px !important; }
  .contato-map-text{ font-size: 12px !important; }
}



/* =========================
   SITEX entrando no CONTATO
   ========================= */

:root {
  --overlap-sitex-contato: 110px;
  /* quanto o card Sitex entra no contato */
  --overlap-footer: 110px;
  /* quanto o footer verde entra no contato */
}

/* =========================
   CONTATO (seção preta)
   ========================= */

/* Fundo escuro + diagonais */
.contato-area {
  position: relative;
  z-index: 1;

  /* antes era: padding: 78px 0;
     agora: reserva espaço em cima (card Sitex) e embaixo (footer) */
  padding-top: calc(78px + var(--overlap-sitex-contato));
  padding-bottom: calc(78px + var(--overlap-footer));
  padding-left: 0;
  padding-right: 0;

  overflow: hidden;

  background-image: url(../img/Prancheta-12.webp);

  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contato-area::before,
.contato-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;
}

.contato-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 centralizado */
.contato-wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, .30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Ícone verde redondo */
.contato-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
}

.contato-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* 1) a seção de cima precisa "reservar" espaço pro footer subir */
.contato-area,
.contato-split,
#contato,
section[id="contato"]{
  padding-bottom: calc(var(--footer-overlap) + 40px) !important;
  position: relative;
  z-index: 1;
}

/* 2) footer sobe por cima */
.footer-custom{
  position: relative;
  z-index: 50;
  margin-top: calc(var(--footer-overlap) * -1);
}

/* 3) garante que o card do footer apareça completo (sem cortes) */
.footer-card{
  position: relative;
  z-index: 51;
  overflow: hidden; /* mantém seu visual */
}

/* 4) se a section anterior tiver pseudo-elementos (diagonais/fundos),
      garante que não passem por cima do footer */
.contato-area::before,
.contato-area::after,
.contato-split::before,
.contato-split::after{
  z-index: 0 !important;
}

/* Mobile: invade menos */
@media (max-width: 575px){
  :root{ --footer-overlap: 70px; }

  .contato-area,
  .contato-split,
  #contato,
  section[id="contato"]{
    padding-bottom: calc(var(--footer-overlap) + 28px) !important;
  }
} 
:root{
  --footer-overlap: 120px;
}

/* ✅ ZERA qualquer padding extra que estava criando o "vão" */
.contato-area,
#contato,
section[id="contato"]{
  padding-bottom: 0 !important;
}

/* ✅ a ÚNICA section que deve "reservar espaço" pro footer subir */
.contato-split{
  padding-bottom: calc(var(--footer-overlap) + 40px) !important;
  position: relative;
  z-index: 1;
}



/* =========================================================
   CONTATO (mapa + form) — abaixo de 991px NÃO fica lado a lado
   Cole no FINAL do CSS
========================================================= */
@media (max-width: 991.98px){

  /* empilha tudo */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: min(720px, calc(100vw - 24px)) !important;
    margin: 0 auto !important;
  }

  /* mapa em cima */
  .contato-split__map{
    order: 1 !important;
    padding: 0 !important;
  }

  /* form embaixo */
  .contato-split__form{
    order: 2 !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  /* garante que o mapa apareça e fique proporcional */
  .contato-map-embed{
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 260px !important;  /* evita “sumir” */
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .contato-map-embed iframe{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
}


@media (max-width: 991.98px){

  :root{
    --sx-overlap-m: 28px;     /* invadir em cima/baixo (menos que antes) */
    --sx-band-h-m: 110px;     /* faixa branca menor */
  }

  /* CARD BRASICON invadindo duas áreas (sem criar buraco) */
  .sx-callout-area{
    margin-top: calc(var(--sx-overlap-m) * -1) !important;
    margin-bottom: calc(var(--sx-overlap-m) * -1) !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .sx-callout-area::before{
    height: var(--sx-band-h-m) !important;
  }

  /* container não pode “reservar espaço” demais */
  .sx-callout-container{
    padding: 26px 0 !important; /* antes estava alto, isso criava o buraco */
  }

  /* tamanho do card no mobile */
  .sx-callout__row{
    margin: 0 auto !important;
    border-radius: 26px !important;
    min-height: auto !important;
    transform: none !important;
  }

  /* ✅ PUXA O CONTATO PRA ENCAIXAR NO CARD (sem ficar “longe”) */
  .contato-split{
    margin-top: calc(var(--sx-overlap-m) * -1) !important;
    padding-top: 18px !important; /* pequeno respiro só */
  }

  /* contato empilhado (mapa em cima / form embaixo) */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: min(92vw, 720px) !important;
    margin: 0 auto !important;
  }

  /* ✅ respiro entre borda e mapa */
  .contato-split__map{
    padding: 14px !important;
  }

  .contato-map-embed{
    aspect-ratio: 16 / 10 !important;
    min-height: 280px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  .contato-map-embed iframe{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .contato-split__form{
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }
}

/* =========================================================
   CONTATO — MOBILE: MAPA EM CIMA, FORM EMBAIXO (sempre)
   Não altera desktop
========================================================= */
@media (max-width: 991.98px){

  /* 1) empilha (não pode ficar lado a lado) */
  .contato-split__wrap{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 2) garante ordem: mapa primeiro, form depois */
  .contato-split__map{ 
    order: 1 !important;
    width: 100% !important;
  }

  .contato-split__form{
    order: 2 !important;
    width: 100% !important;
  }

  /* 3) mapa responsivo (sem height fixa brigando) */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 240px !important;
    overflow: hidden !important;
  }

  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    transform: none !important;
  }
}
/* =========================================================
   CONTATO — manter layout (mapa em cima / form embaixo)
   e impedir mapa de vazar no mobile
========================================================= */
@media (max-width: 991.98px){

  /* layout 1 coluna */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .contato-split__map{ order: 1 !important; }
  .contato-split__form{ order: 2 !important; }

  /* ✅ a caixa do mapa é a referência do tamanho */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 240px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
  }

  /* ✅ se vier iframe direto, ele preenche */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;

    /* neutraliza qualquer crop antigo */
    top: 0 !important;
    transform: none !important;
  }

  /* ✅ SE O EMBED VIER COM WRAPPER (div, figure, p, etc.), ele não pode ter largura fixa */
  .contato-map-embed > *{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }

  /* ✅ garante que QUALQUER iframe lá dentro obedeça */
  .contato-map-embed iframe,
  .contato-map-embed * iframe{
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }
}

/* ultra mobile: reduz paddings pra não “comer” o card */
@media (max-width: 430px){
  .contato-split__map{ padding: 12px !important; }
  .contato-split__form{ padding: 26px 14px !important; }
  .contato-split__wrap{ width: 100% !important; padding: 0 12px !important; }
}

/* =========================================
   FIX ULTRA-MOBILE (<= 423px)
   Mantém o mesmo layout, só impede vazar/cortar
   ========================================= */
@media (max-width: 423px){

  /* 1) o wrap NÃO pode usar 100vw/calc — usa 100% + padding interno */
  .contato-split__wrap{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    grid-template-columns: 1fr !important;
    gap: 14px !important;

    padding-left: 12px !important;
    padding-right: 12px !important;

    box-sizing: border-box !important;
  }

  /* 2) reduz padding das colunas pra não “comer” o card */
  .contato-split__map{ padding: 10px !important; }
  .contato-split__form{ padding: 22px 14px !important; }

  /* 3) o card do mapa precisa ficar 100% dentro do espaço */
  .contato-map-block{ width: 100% !important; }

  .contato-map-embed{
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;          /* ✅ remove qualquer margin padrão */
    padding: 0 !important;         /* ✅ remove padding interno */

    border-radius: 18px !important;
    overflow: hidden !important;

    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 220px !important;

    box-sizing: border-box !important;
  }

  /* 4) mata qualquer wrapper/margem do embed salvo no WP */
  .contato-map-embed > *{
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 5) iframe sempre preenchendo e nunca maior que o container */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    border: 0 !important;
    display: block !important;

    top: 0 !important;
    transform: none !important;
  }
}
/* =========================================
   FIX EXTREMO: <= 380px (até 100px)
   Objetivo: NADA pode vazar/cortar no mapa + form
   ========================================= */
@media (max-width: 380px){

  /* base: tudo conta padding no cálculo */
  .contato-split__wrap,
  .contato-split__map,
  .contato-split__form,
  .contato-map-block,
  .contato-map-embed{
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  /* wrap 100% + gutter pequeno (evita 100vw) */
  .contato-split__wrap{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* padding mínimo */
  .contato-split__map{ padding: 8px !important; }
  .contato-split__form{ padding: 20px 12px !important; border-radius: 18px !important; }

  /* ✅ impede QUALQUER elemento interno de estourar */
  .contato-map-embed,
  .contato-map-embed *{
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* caixa do mapa responsiva e sempre dentro */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 16px !important;

    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 200px !important;
  }

  /* iframe preenchendo sem chance de "sobrar" */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
    top: 0 !important;
    transform: none !important;
  }

  @media (max-width: 991.98px){

  /* 1) encaixe do contato sob o card (só posição) */
  .contato-split{
    margin-top: -28px !important;   /* aproxima do card */
    padding-top: 46px !important;   /* distância exata como no print */
  }

  /* 2) “janela” do mapa (aparece só um pedaço) */
  .contato-map-embed{
    height: 155px !important;       /* altura da fatia visível */
    overflow: hidden !important;    /* recorte */
  }

  /* 3) move o mapa pra mostrar só a parte de cima (sem mexer em cor/fundo) */
  .contato-map-embed iframe{
    top: -210px !important;         /* corte vertical (ajuste fino) */
    height: 520px !important;       /* maior que a janela */
  }

  /* 4) se o endereço estiver empurrando o layout no mobile, esconda.
        Se você quer manter o endereço, APAGUE este bloco. */
  .contato-map-text{
    display: none !important;
  }
}



  /* título do form quebra bem em telas minúsculas */
  .trabalhe-title{
    font-size: 28px !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
  }
}






/* Subtítulo (sem precisar criar novo HTML) */
.planos-head::after {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(13, 59, 44, .55);
}

/* ✅ DIMINUIR O CARD MAIOR (o de fora) */
.planos-wrap {
  /* controla o tamanho total do “card externo” */
  max-width: 1100px;
  /* antes estava muito grande */
  margin: 0 auto;

  /* diminui o “respiro” interno */
  padding: 40px 40px 44px;

  /* se quiser menos arredondado também (opcional) */
  border-radius: 28px;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .planos-wrap {
    max-width: 92vw;
    padding: 28px 18px 30px;
    border-radius: 24px;
  }
}




.services {
  background-image: url(../img/FUNDO\ LISO.png);
  padding: 70px 0;
  background-attachment: fixed;
      background-size: cover;
    background-position: top;
    background-repeat: no-repeat;

}

.services__kicker {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--secundaria);


}



/* Título (somente tipografia/decoração do header) */
.services__title {
  color: #0d3b2c;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0;
  position: relative;
  padding-top: 16px;
}

/* “Planos” pequeno acima do título */
.services__title::before {
  content: "Serviços";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a45a;
  font-weight: 700;
}

/* Barrinha dourada abaixo do título */
.services__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: #c9a45a;
  margin: 14px auto 0;
}


.services__title {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: white;
}

.services__sub {
  line-height: 1.5;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

}

/* grid 4 colunas como no layout */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .08);
  min-height: 170px;
}

/* =========================================
   SERVIÇOS: hover com texto branco
   (ícone some no hover)
   ========================================= */

/* Normal */
.services .service-card__title {
  color: #0F2A21 !important;
  opacity: 1 !important;
  transform: none !important;
}

.services .service-card__text {
  color: rgba(0, 0, 0, .65) !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Hover do card (fundo escuro e leve lift) */
.services .service-card {
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  background: #fff;
}

.services .service-card:hover {
  background: #0F2A21;
  /* fundo escuro */
  transform: translateY(-2px);
  box-shadow: 0px 14px 18px rgba(0, 0, 0, .10);
}

/* Texto branco no hover */
.services .service-card:hover .service-card__title,
.services .service-card:hover .service-card__text {
  color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
  /* não deixa “subir”/sumir */
}

/* Ícone: aparece normal, some no hover */
.services .service-card__icon {
  opacity: 1 !important;
  transition: opacity .18s ease !important;
}

.services .service-card:hover .service-card__icon {
  opacity: 0 !important;
}

/* segurança: garante que nada do texto fique invisível */
.services .service-card__title,
.services .service-card__text {
  visibility: visible !important;
}

.service-card__icon {
  height: 28px;
  margin-bottom: 14px;
  transition: opacity .18s ease, transform .18s ease;
}

.service-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.service-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #0F2A21;
  transition: transform .18s ease;
}


.service-card__title:hover {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.service-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, .65);
  transition: transform .18s ease;
}

.service-card__text:hover {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

/* HOVER: ícone some e texto sobe */
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 14px 18px rgba(0, 0, 0, .10);
  background-color: var(--primaria);
  color: white !important;
}

.service-card:hover .service-card__icon {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.service-card:hover .service-card__title,
.service-card:hover .service-card__text {
  transform: translateY(-10px);
}

/* responsivo */
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}


/* BLOCO INFERIOR (1 grande + 1 pequeno) */
.services-bottom {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  /* grande + pequeno */
  gap: 18px;
}

/* Card grande com imagem */
.services-feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 170px;
  display: block;
  text-decoration: none;

  /* coloque aqui a imagem */
  background-image: url("../img/Free.png");
  background-size: cover;
  background-position: center;
}


.services-feature__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 22px;
  display: flex;
  align-items: center;
}

.services-feature__title {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  font-size: clamp(20px, 2.2vw, 30px);
}

.services-feature__title span {
  font-weight: 800;
}

.services-feature__title .is-gold {
  color: #B89355;
}

/* Card pequeno */
.services-cta {
  border-radius: 14px;
  background: #B89355;
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}

.services-cta__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: .95;
}

.services-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  margin-top: 16px;
}

.services-cta__arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .services-bottom {
    grid-template-columns: 1fr;
    /* empilha */
  }

  .services-feature,
  .services-cta {
    min-height: 160px;
  }

  .services-feature__overlay {
    padding: 18px;
  }
}

/* ===== SERVICES CARD FLIP (vertical) ===== */

/* grid mantém o que você já tem */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* o card vira "palco" 3D */
.service-card {
  height: 170px;
  /* mesma altura do layout atual */
  perspective: 1100px;
  /* profundidade do 3D */
}

/* bloco que gira */
.service-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

/* gira no hover (flip vertical = eixo X) */
.service-card:hover .service-card__inner {
  transform: rotateX(180deg);
}

/* as duas faces */
.service-card__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

/* FRENTE */
.service-card__front {
  background: #fff;
  justify-content: flex-start;
}

/* VERSO */
.service-card__back {
  background: var(--secundaria);
  /* fundo escuro */
  color: #fff;
  transform: rotateX(180deg);
  justify-content: center;
}

/* ícone e título frente */
.service-card__icon {
  height: 28px;
  margin-bottom: 14px;
}

.service-card__icon img {
  width: 40px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.service-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

/* título na frente */
.service-card__front .service-card__title {
  color: #0F2A21;
}

/* título + texto no verso */
.service-card__back .service-card__title {
  color: var(--primaria);
  margin-bottom: 10px;
}

.service-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--primaria);
}
.service-card__title-2{
  color: var(--primaria) !important;
  font-size: 22px;
  font-weight: 600;
}
/* acessibilidade: se usuário prefere menos animação */
@media (prefers-reduced-motion: reduce) {
  .service-card__inner {
    transition: none;
  }

  .service-card:hover .service-card__inner {
    transform: none;
  }

  .service-card__back {
    display: none;
  }
}

/* responsivo */
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 180px;
  }

  /* leve respiro no mobile */
}

/* ================================
   FIX: parar de parecer 2 cards
   ================================ */

/* o <article> vira só o “palco” do 3D */
.services .service-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  min-height: unset !important;
}

/* garante que só as faces têm borda/sombra */
.services .service-card__face {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .08) !important;
  border: 1px solid rgba(0, 0, 0, .06) !important;
}

/* se seu CSS antigo tinha “card interno” com wrapper,
   isso garante que nada extra apareça */
.services .service-card__inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* CENTRALIZAR ÍCONE + TÍTULO (frente do card) */
.services .service-card__front {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal */
  justify-content: center;
  /* vertical */
  text-align: center;
  gap: 12px;
  padding: 24px;
  /* mantém respiro */
}

/* tira margens que empurram */
.services .service-card__icon {
  margin: 0 !important;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-card__title {
  margin: 0 !important;
}
/* =========================================================
   SERVICES — ocupar mais a tela mantendo proporção
   (Cole no FINAL do CSS)
   ========================================================= */

/* 1) solta o container só dentro de Services (vira quase full) */
.services .container{
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 2) cria “margem de respiro” lateral igual a News */
.services{
  padding: 90px 0 !important; /* mais altura da área */
}

/* 3) mantém o conteúdo centralizado e grande */
.services__header,
.services__grid,
.services-bottom{
  width: min(1600px, calc(100vw - 80px)) !important; /* quase a tela toda */
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 4) título um pouco maior, sem estourar */
.services__title{
  font-size: clamp(40px, 3.4vw, 56px) !important;
  margin-bottom: 22px !important;
}

/* 5) grid mais “cheio” e proporcional */
.services__grid{
  gap: 26px !important; /* antes 18 */
}

/* 6) cards maiores mantendo proporção */
.services .service-card{
  height: 210px !important;      /* antes 170 */
  perspective: 1100px;
}

/* faces acompanham (mesma borda/raio/sombra) */
.services .service-card__face{
  border-radius: 18px !important;
  padding: 28px !important;
}

/* ícone + título maiores, mas proporcionais */
.services .service-card__icon img{
  width: 46px !important;
  height: 38px !important;
}
.services .service-card__title{
  font-size: 23px !important;
  font-weight: 600;
}

/* texto do verso levemente maior */
.services .service-card__text{
  font-size: 18px !important;
  line-height: 1.5 !important;
  font-weight: 600;
}

/* 7) responsivo — mantém proporção sem quebrar */
@media (max-width: 991.98px){
  .services{
    padding: 70px 0 !important;
  }

  .services__header,
  .services__grid,
  .services-bottom{
    width: calc(100vw - 28px) !important;
  }

  .services__grid{
    gap: 16px !important;
  }

  .services .service-card{
    height: 200px !important;
  }
}

@media (max-width: 575.98px){
  .services .service-card{
    height: 190px !important;
  }
}
/* 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(--terciaria) !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-image: url("../img/FUNDO_GRAFISMOS.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.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: 160px;
  width: auto;
}

.nav-custom {
 
  font-size: 23px;
  background-color: var(--primaria);
}

.nav-custom-hover a {
  color: white!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;
  }
}

/* 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: #fff !important;
}

.nav-custom--white .nav-custom-hover a:hover{
  color: rgba(255,255,255,.85) !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;
}
/* 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: "Montserrat", 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;
  }
}

/* ==========================
   CONTATO (igual ao mock)
   ========================== */

/* Fundo escuro + diagonais */
.contato-area {
  position: relative;
  padding: 78px 0;
  overflow: hidden;



  background:
    radial-gradient(ellipse at center, #C4C4C4 0%, #ADAEAD 35%, #A09FA0 55%, #464646 100%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.35) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.contato-area::before,
.contato-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;
}

.contato-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 centralizado */
.contato-wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, .30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Ícone verde redondo */
.contato-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  /* arredonda o iframe */
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  /* parecido com o print */
}

.contato-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 575px) {
  .contato-area {
    padding: 56px 0;
  }

  .contato-btn {
    width: 100%;
    justify-content: center;
  }

  .contato-map-embed {
    aspect-ratio: 16 / 10;
  }
}

/* CONTATO SPLIT (mapa + form) */
.contato-split {
  background: var(--primaria);
  /* similar ao exemplo (escuro do lado do mapa) */
  padding: 0;
  /* sem respiro externo */
}

.contato-split__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  max-width: 1320px;
  /* acompanha seu layout */
}

/* MAPA (esquerda) */
.contato-split__map {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-map-embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 10;
  /* parecido com o print */
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.contato-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FORM (direita) */
.contato-split__form {
  background: #ffffff;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-form__title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
}

.contato-form__sub {
  margin: 0 0 26px;
  color: #6b7280;
  font-weight: 600;
}

/* deixa inputs bonitos independente do plugin */
.contato-split__form input,
.contato-split__form select,
.contato-split__form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8dee6;
  padding: 12px 14px;
  outline: none;
}

.contato-split__form input:focus,
.contato-split__form select:focus,
.contato-split__form textarea:focus {
  border-color: #86C34A;
  box-shadow: 0 0 0 4px rgba(134, 195, 74, .18);
}

/* Responsivo */
@media (max-width: 991px) {
  .contato-split__wrap {
    grid-template-columns: 1fr;
  }

  .contato-split__map {
    padding: 18px;
  }

  .contato-split__form {
    padding: 34px 18px;
  }

  .contato-form__title {
    font-size: 34px;
  }
}

/* Centralizar o layout (mapa + form) */
.contato-split {
  padding: 80px 0 !important;
  /* dá respiro em cima/baixo */
}

.contato-split__wrap {
  width: min(1320px, calc(100vw - 48px)) !important;
  /* largura máxima */
  margin: 0 auto !important;
  /* centraliza */
  grid-template-columns: 1fr 1fr;
  min-height: auto !important;
}

/* mantém o mapa e o form bonitos dentro */
.contato-split__map {
  padding: 22px !important;
}

.contato-split__form {
  padding: 46px 42px !important;
  justify-content: center;
  border-radius: 45px;
}

/* Mobile */
@media (max-width: 991px) {
  .contato-split {
    padding: 24px 0 !important;
  }

  .contato-split__wrap {
    width: calc(100vw - 24px) !important;
  }
}
/* bloco do mapa + texto */
.contato-map-block{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px; /* espaço entre mapa e texto */
}

/* texto abaixo do mapa */
.contato-map-text{
  margin: 0;
  color: rgba(255,255,255,.85); /* aparece bem no fundo escuro */
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 6px; /* leve alinhamento com borda do mapa */
}

/* mobile: centraliza o texto */
@media (max-width: 991.98px){
  .contato-map-text{
    text-align: center;
    padding-left: 0;
    font-size: 13px;
  }
}
/* garante que o bloco do mapa exista (não colapse) */
.contato-map-embed{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);

  /* ✅ altura fixa + responsiva */
  min-height: 420px;
}

/* garante iframe sempre preenchendo */
.contato-map-embed iframe{
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block !important;
}

/* se o embed vier com algum wrapper interno */
.contato-map-embed > *{
  width: 100% !important;
}

/* mobile */
@media (max-width: 991.98px){
  .contato-map-embed{ min-height: 320px; }
  .contato-map-embed iframe{ height: 320px !important; }
}
/* Coluna do mapa vira "coluna" e mantém o mapa + texto */
.contato-split__map{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
}

/* Caixa do mapa: SEM aspect-ratio, com altura garantida */
.contato-map-embed{
  width: 100% !important;
  max-width: 640px;                /* ajuste se quiser maior */
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.35) !important;

  min-height: 520px !important;    /* ✅ força existir */
}

/* ✅ pega qualquer iframe que venha dentro (mesmo com wrappers) */
.contato-map-embed iframe{
  width: 100% !important;
  height: 520px !important;        /* ✅ força aparecer */
  display: block !important;
  border: 0 !important;
}

/* texto abaixo do mapa */
.contato-map-text{
  margin: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  text-align: center !important;
  opacity: .95 !important;
}

/* Mobile */
@media (max-width: 991.98px){
  .contato-map-embed{ min-height: 360px !important; }
  .contato-map-embed iframe{ height: 360px !important; }
  .contato-map-text{ font-size: 12px !important; }
}



/* =========================
   SITEX entrando no CONTATO
   ========================= */

:root {
  --overlap-sitex-contato: 110px;
  /* quanto o card Sitex entra no contato */
  --overlap-footer: 110px;
  /* quanto o footer verde entra no contato */
}

/* =========================
   CONTATO (seção preta)
   ========================= */

/* Fundo escuro + diagonais */
.contato-area {
  position: relative;
  z-index: 1;

  /* antes era: padding: 78px 0;
     agora: reserva espaço em cima (card Sitex) e embaixo (footer) */
  padding-top: calc(78px + var(--overlap-sitex-contato));
  padding-bottom: calc(78px + var(--overlap-footer));
  padding-left: 0;
  padding-right: 0;

  overflow: hidden;

  background-image: url(../img/Prancheta-12.webp);

  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.contato-area::before,
.contato-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;
}

.contato-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 centralizado */
.contato-wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, .30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Ícone verde redondo */
.contato-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i {
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
}

.contato-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* 1) a seção de cima precisa "reservar" espaço pro footer subir */
.contato-area,
.contato-split,
#contato,
section[id="contato"]{
  padding-bottom: calc(var(--footer-overlap) + 40px) !important;
  position: relative;
  z-index: 1;
}

/* 2) footer sobe por cima */
.footer-custom{
  position: relative;
  z-index: 50;
  margin-top: calc(var(--footer-overlap) * -1);
}

/* 3) garante que o card do footer apareça completo (sem cortes) */
.footer-card{
  position: relative;
  z-index: 51;
  overflow: hidden; /* mantém seu visual */
}

/* 4) se a section anterior tiver pseudo-elementos (diagonais/fundos),
      garante que não passem por cima do footer */
.contato-area::before,
.contato-area::after,
.contato-split::before,
.contato-split::after{
  z-index: 0 !important;
}

/* Mobile: invade menos */
@media (max-width: 575px){
  :root{ --footer-overlap: 70px; }

  .contato-area,
  .contato-split,
  #contato,
  section[id="contato"]{
    padding-bottom: calc(var(--footer-overlap) + 28px) !important;
  }
} 
:root{
  --footer-overlap: 120px;
}

/* ✅ ZERA qualquer padding extra que estava criando o "vão" */
.contato-area,
#contato,
section[id="contato"]{
  padding-bottom: 0 !important;
}

/* ✅ a ÚNICA section que deve "reservar espaço" pro footer subir */
.contato-split{
  padding-bottom: calc(var(--footer-overlap) + 40px) !important;
  position: relative;
  z-index: 1;
}



/* =========================================================
   CONTATO (mapa + form) — abaixo de 991px NÃO fica lado a lado
   Cole no FINAL do CSS
========================================================= */
@media (max-width: 991.98px){

  /* empilha tudo */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: min(720px, calc(100vw - 24px)) !important;
    margin: 0 auto !important;
  }

  /* mapa em cima */
  .contato-split__map{
    order: 1 !important;
    padding: 0 !important;
  }

  /* form embaixo */
  .contato-split__form{
    order: 2 !important;
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  /* garante que o mapa apareça e fique proporcional */
  .contato-map-embed{
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 260px !important;  /* evita “sumir” */
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .contato-map-embed iframe{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }
}


@media (max-width: 991.98px){

  :root{
    --sx-overlap-m: 28px;     /* invadir em cima/baixo (menos que antes) */
    --sx-band-h-m: 110px;     /* faixa branca menor */
  }

  /* CARD BRASICON invadindo duas áreas (sem criar buraco) */
  .sx-callout-area{
    margin-top: calc(var(--sx-overlap-m) * -1) !important;
    margin-bottom: calc(var(--sx-overlap-m) * -1) !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .sx-callout-area::before{
    height: var(--sx-band-h-m) !important;
  }

  /* container não pode “reservar espaço” demais */
  .sx-callout-container{
    padding: 26px 0 !important; /* antes estava alto, isso criava o buraco */
  }

  /* tamanho do card no mobile */
  .sx-callout__row{
    margin: 0 auto !important;
    border-radius: 26px !important;
    min-height: auto !important;
    transform: none !important;
  }

  /* ✅ PUXA O CONTATO PRA ENCAIXAR NO CARD (sem ficar “longe”) */
  .contato-split{
    margin-top: calc(var(--sx-overlap-m) * -1) !important;
    padding-top: 18px !important; /* pequeno respiro só */
  }

  /* contato empilhado (mapa em cima / form embaixo) */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: min(92vw, 720px) !important;
    margin: 0 auto !important;
  }

  /* ✅ respiro entre borda e mapa */
  .contato-split__map{
    padding: 14px !important;
  }

  .contato-map-embed{
    aspect-ratio: 16 / 10 !important;
    min-height: 280px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  .contato-map-embed iframe{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .contato-split__form{
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }
}

/* =========================================================
   CONTATO — MOBILE: MAPA EM CIMA, FORM EMBAIXO (sempre)
   Não altera desktop
========================================================= */
@media (max-width: 991.98px){

  /* 1) empilha (não pode ficar lado a lado) */
  .contato-split__wrap{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 2) garante ordem: mapa primeiro, form depois */
  .contato-split__map{ 
    order: 1 !important;
    width: 100% !important;
  }

  .contato-split__form{
    order: 2 !important;
    width: 100% !important;
  }

  /* 3) mapa responsivo (sem height fixa brigando) */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 240px !important;
    overflow: hidden !important;
  }

  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    transform: none !important;
  }
}
/* =========================================================
   CONTATO — manter layout (mapa em cima / form embaixo)
   e impedir mapa de vazar no mobile
========================================================= */
@media (max-width: 991.98px){

  /* layout 1 coluna */
  .contato-split__wrap{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .contato-split__map{ order: 1 !important; }
  .contato-split__form{ order: 2 !important; }

  /* ✅ a caixa do mapa é a referência do tamanho */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 240px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
  }

  /* ✅ se vier iframe direto, ele preenche */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;

    /* neutraliza qualquer crop antigo */
    top: 0 !important;
    transform: none !important;
  }

  /* ✅ SE O EMBED VIER COM WRAPPER (div, figure, p, etc.), ele não pode ter largura fixa */
  .contato-map-embed > *{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }

  /* ✅ garante que QUALQUER iframe lá dentro obedeça */
  .contato-map-embed iframe,
  .contato-map-embed * iframe{
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }
}

/* ultra mobile: reduz paddings pra não “comer” o card */
@media (max-width: 430px){
  .contato-split__map{ padding: 12px !important; }
  .contato-split__form{ padding: 26px 14px !important; }
  .contato-split__wrap{ width: 100% !important; padding: 0 12px !important; }
}

/* =========================================
   FIX ULTRA-MOBILE (<= 423px)
   Mantém o mesmo layout, só impede vazar/cortar
   ========================================= */
@media (max-width: 423px){

  /* 1) o wrap NÃO pode usar 100vw/calc — usa 100% + padding interno */
  .contato-split__wrap{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    grid-template-columns: 1fr !important;
    gap: 14px !important;

    padding-left: 12px !important;
    padding-right: 12px !important;

    box-sizing: border-box !important;
  }

  /* 2) reduz padding das colunas pra não “comer” o card */
  .contato-split__map{ padding: 10px !important; }
  .contato-split__form{ padding: 22px 14px !important; }

  /* 3) o card do mapa precisa ficar 100% dentro do espaço */
  .contato-map-block{ width: 100% !important; }

  .contato-map-embed{
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;          /* ✅ remove qualquer margin padrão */
    padding: 0 !important;         /* ✅ remove padding interno */

    border-radius: 18px !important;
    overflow: hidden !important;

    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 220px !important;

    box-sizing: border-box !important;
  }

  /* 4) mata qualquer wrapper/margem do embed salvo no WP */
  .contato-map-embed > *{
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 5) iframe sempre preenchendo e nunca maior que o container */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    border: 0 !important;
    display: block !important;

    top: 0 !important;
    transform: none !important;
  }
}
/* =========================================
   FIX EXTREMO: <= 380px (até 100px)
   Objetivo: NADA pode vazar/cortar no mapa + form
   ========================================= */
@media (max-width: 380px){

  /* base: tudo conta padding no cálculo */
  .contato-split__wrap,
  .contato-split__map,
  .contato-split__form,
  .contato-map-block,
  .contato-map-embed{
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  /* wrap 100% + gutter pequeno (evita 100vw) */
  .contato-split__wrap{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* padding mínimo */
  .contato-split__map{ padding: 8px !important; }
  .contato-split__form{ padding: 20px 12px !important; border-radius: 18px !important; }

  /* ✅ impede QUALQUER elemento interno de estourar */
  .contato-map-embed,
  .contato-map-embed *{
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* caixa do mapa responsiva e sempre dentro */
  .contato-map-embed{
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 16px !important;

    aspect-ratio: 16 / 10 !important;
    height: auto !important;
    min-height: 200px !important;
  }

  /* iframe preenchendo sem chance de "sobrar" */
  .contato-map-embed iframe{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
    top: 0 !important;
    transform: none !important;
  }

  @media (max-width: 991.98px){

  /* 1) encaixe do contato sob o card (só posição) */
  .contato-split{
    margin-top: -28px !important;   /* aproxima do card */
    padding-top: 46px !important;   /* distância exata como no print */
  }

  /* 2) “janela” do mapa (aparece só um pedaço) */
  .contato-map-embed{
    height: 155px !important;       /* altura da fatia visível */
    overflow: hidden !important;    /* recorte */
  }

  /* 3) move o mapa pra mostrar só a parte de cima (sem mexer em cor/fundo) */
  .contato-map-embed iframe{
    top: -210px !important;         /* corte vertical (ajuste fino) */
    height: 520px !important;       /* maior que a janela */
  }

  /* 4) se o endereço estiver empurrando o layout no mobile, esconda.
        Se você quer manter o endereço, APAGUE este bloco. */
  .contato-map-text{
    display: none !important;
  }
}



  /* título do form quebra bem em telas minúsculas */
  .trabalhe-title{
    font-size: 28px !important;
    line-height: 1.05 !important;
    word-break: break-word !important;
  }
}

/* =========================================
   CONTATO - FORM EM CIMA / MAPA EMBAIXO
   ========================================= */

.contato-split {
  background: var(--primaria);
  padding: 80px 0 !important;
}

.contato-split__wrap {
  width: min(1100px, calc(100vw - 48px)) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 36px !important;
}

/* FORM */
.contato-split__form {
  width: 100%;
  max-width: 820px;
  background: #fff;
  padding: 46px 42px !important;
  border-radius: 32px;
  display: block !important;
}

/* MAPA */
.contato-split__map {
  width: 100%;
  max-width: 820px;
  padding: 0 !important;
  display: block !important;
}

.contato-map-block {
  width: 100%;
}

.contato-map-embed {
  position: relative !important;
  width: 100% !important;
  min-height: 420px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.35) !important;
}

.contato-map-embed iframe,
.contato-map-embed * iframe {
  width: 100% !important;
  height: 420px !important;
  border: 0 !important;
  display: block !important;
}

.contato-map-text {
  margin: 0 !important;
  text-align: center !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1.4;
}

/* =========================================
   FORMULÁRIO EM 2 COLUNAS
   ========================================= */

.trabalhe-form {
  width: 100%;
}

.trabalhe-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}

.trabalhe-form__row--full {
  grid-template-columns: 1fr;
}

.trabalhe-form .form-group,
.trabalhe-form .form-check {
  width: 100%;
  margin-bottom: 0 !important;
}

.trabalhe-form .mb-3 {
  margin-bottom: 18px !important;
}

.trabalhe-form input,
.trabalhe-form select,
.trabalhe-form textarea {
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid #d8dee6;
  padding: 12px 14px;
  outline: none;
}

.trabalhe-form input:focus,
.trabalhe-form select:focus,
.trabalhe-form textarea:focus {
  border-color: #86C34A;
  box-shadow: 0 0 0 4px rgba(134, 195, 74, .18);
}

.btn-enviar {
  margin-top: 8px;
}

/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 991.98px) {
  .contato-split {
    padding: 48px 0 !important;
  }

  .contato-split__wrap {
    width: calc(100vw - 24px) !important;
    gap: 24px !important;
  }

  .contato-split__form {
    padding: 28px 18px !important;
    border-radius: 24px;
  }

  .trabalhe-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contato-map-embed {
    min-height: 320px !important;
  }

  .contato-map-embed iframe,
  .contato-map-embed * iframe {
    height: 320px !important;
  }

  .contato-map-text {
    font-size: 14px !important;
  }
}
/* centraliza o mapa abaixo do formulário */
.contato-split__map{
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
}

.contato-map-block{
  width: 100% !important;
  max-width: 820px !important; /* mesma largura do form */
  margin: 0 auto !important;
}

.contato-map-embed{
  width: 100% !important;
  margin: 0 auto !important;
}

.contato-map-text{
  text-align: center !important;
}

/* MOBILE: impede a área de baixo de subir por cima do formulário */
@media (max-width: 991.98px){
  .footer-custom{
    margin-top: 0 !important;
  }

  .contato-split{
    padding-bottom: 40px !important;
    margin-bottom: 0 !important;
  }

  .contato-area,
  #contato,
  section[id="contato"]{
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* Footer */
.bg-footer-02 {
  background: var(--primaria);
}

.footer-custom h5 {
  color: white;
}

.footer-custom p {
  color: var(--primaria);
}

.term-color {
  color: white !important;
}

.footer-custom a {
  color: var(--primaria);
  text-decoration: none;
}

.bg-footer-02 h5,
.bg-footer-02 p,
.bg-footer-02 a {
  color: white;
}

.border-footer {
  border-top: 2px solid var(--primaria);
}

.mapa iframe {
  width: 100%;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
  border-radius: 5px;
}

/* 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(--secundaria);
  /* 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(--primaria);
}

/* 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: white;
  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-planos: 110px;
  /* quanto o bloco verde (Planos) entra no preto */
  --overlap-sitex: 120px;
  /* quanto o card Sitex "entra" no preto */
  --faixa-sitex: 120px;
  /* altura da faixa branca atrás do card */
}

/* 1) PLANOS entrando na área preta */

/* garante que o verde não "vaze" em retas */
.planos-wrap {
  overflow: hidden;
}

/* 2) DEPOIMENTOS: cria espaço no topo (pra receber Planos) 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;
}

/* 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-planos: 70px;
    --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;
}


/* =========================
   FOOTER CLEAN (igual ao print)
========================= */

.footer-clean {
  background: #ffffff;
  padding: 26px 0 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 24px;
}

/* Logo */
.footer-brand img {
  max-width: 190px;
  height: auto;
  display: block;
}

/* Menu central */
.footer-nav {
  justify-self: center;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-menu a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.footer-menu a:hover {
  text-decoration: underline;
}

/* Redes à direita */
.footer-social {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #0b2a24;
  /* quadradinho escuro como no print */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social i {
  font-size: 15px;
  line-height: 1;
}

/* Linha e copy */
.footer-bottom-clean {
  margin-top: 22px;
}

.footer-line {
  height: 1px;
  background: rgba(0, 0, 0, .10);
  margin-bottom: 14px;
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, .55);
}

.footer-copy a {
  color: rgba(0, 0, 0, .55);
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-nav {
    justify-self: center;
  }

  .footer-social {
    justify-self: center;
  }
}


/* =========================
   FOOTER (igual ao print)
   ========================= */

.footer-custom{
  padding: 0;
  margin: 0;
}

/* “Cartão” verde arredondado */
.footer-card{
  background: #F4F1EA;
  border-radius: 70px 70px 0 0;
  padding: 40px 56px 18px;
  overflow: hidden;
}

/* conteúdo central (limita largura como no print) */
.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* esquerda */
.footer-left{
  max-width: 560px;
}

.footer-logo{
  margin: 0 0 14px;
}

.footer-logo img{
  display: block;
  max-width: 220px;
  height: auto;
}

.footer-text{
  margin: 0;
  color: var(--primaria);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

/* direita */
.footer-right{
  min-width: 280px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* sociais topo (bolinhas) */
.footer-socials{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primaria);
  color: var(--primaria);
  text-decoration: none;
}

.footer-social i{
  font-size: 14px;
  line-height: 1;
}

.footer-divider{
  width: 280px;
  height: 2px;
  background: var(--primaria);
  margin: 10px 0 8px;
}

/* contato */
.footer-contact-title{
  color: var(--primaria);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.footer-contact-icons{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primaria);
  text-decoration: none;
  border: 1px solid var(--primaria);
}

.footer-icon i{
  font-size: 14px;
  line-height: 1;
}

/* base legal central */
.footer-bottom{
  max-width: 1320px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid var(--primaria);
  text-align: center;
}

.footer-legal{
  margin: 0;
  font-size: 20px;
  color: rgba(255,255,255,.90);
}

.footer-legal a{
  color: var(--secundaria);
  text-decoration: none;
}

.footer-terms{
  margin-left: 10px;
  display: inline-block;
}

/* responsivo */
@media (max-width: 991px){
  .footer-card{
    border-radius: 50px 50px 0 0;
    padding: 28px 22px 14px;
  }

  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-right{
    align-items: center;
    text-align: center;
    min-width: 0;
  }

  .footer-divider{
    width: 220px;
  }

  .footer-contact-icons{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
/* =========================
   FOOTER VERDE POR CIMA DO PRETO
   ========================= */




.services-agro {
  background-image: url(../img//FUNDO_GRAFISMOS.png);
  background-attachment: fixed;

}






/* footer sobe e fica POR CIMA do preto */
.footer-custom {
  position: relative;
  z-index: 50;
  margin-top: calc(var(--overlap-footer) * -1);
}

/* Mobile */
@media (max-width: 575px) {
  :root {
    --overlap-footer: 70px;
  }

  .contato-area {
    padding-bottom: calc(56px + var(--overlap-footer));
  }
}
  /* =========================================================
   FOOTER INVADINDO A SECTION DE CIMA (SEM MEXER NO DESIGN)
   Cole no FINAL do CSS
   ========================================================= */

:root{
  --footer-overlap: 120px; /* ajuste fino: 80~160 */
}


  







/* ✅ footer sobe por cima */
.footer-custom{
  position: relative;
  z-index: 50;
  margin-top: calc(var(--footer-overlap) * -1);
}

.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/Sitex/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: 12px;
  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;
  }
}




/* =========================================
   BRX SERVICES (novo namespace)
========================================= */

.brx-services{
  background-image: url(../img/FUNDO_GRAFISMOS.png);
  padding: 90px 0;
      background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* header */
.brx-services__header{
  position: relative;
}

/* título */
.brx-services__title{
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0;
  position: relative;
  padding-top: 16px;
  letter-spacing: -0.02em;
}

/* label acima do título */
.brx-services__title::before{
  content: "Serviços";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a45a;
  font-weight: 700;
}

/* barra dourada abaixo */
.brx-services__title::after{
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: #c9a45a;
  margin: 14px auto 0;
}

/* grid */
.brx-services__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* =========================================
   CARD FLIP (3D) — BRX
========================================= */

/* palco */
.brx-svc-card{
  height: 210px;
  perspective: 1100px;
  background: transparent;
}

/* bloco que gira */
.brx-svc-card__inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

/* flip vertical */
.brx-svc-card:hover .brx-svc-card__inner{
  transform: rotateX(180deg);
}

/* faces */
.brx-svc-card__face{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

/* frente */
.brx-svc-card__front{
  background: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

/* verso */
.brx-svc-card__back{
  background: #0F2A21;
  color: #fff;
  transform: rotateX(180deg);
  justify-content: center;
}

/* ícone */
.brx-svc-card__icon{
  display: flex;
  align-items: center;
  justify-content: center;
}

.brx-svc-card__icon img{
  width: 46px;
  height: 38px;
  object-fit: contain;
  display: block;
}

/* títulos */
.brx-svc-card__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.brx-svc-card__front .brx-svc-card__title{
  color: #0F2A21;
}

.brx-svc-card__back .brx-svc-card__title{
  color: #fff;
  margin-bottom: 10px;
}

/* texto verso */
.brx-svc-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
}

/* acessibilidade */
@media (prefers-reduced-motion: reduce){
  .brx-svc-card__inner{ transition: none; }
  .brx-svc-card:hover .brx-svc-card__inner{ transform: none; }
  .brx-svc-card__back{ display: none; }
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px){
  .brx-services{ padding: 70px 0; }

  .brx-services__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brx-svc-card{ height: 200px; }
}

@media (max-width: 575.98px){
  .brx-services__grid{ grid-template-columns: 1fr; }
  .brx-svc-card{ height: 190px; }
}









/* ================================
   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{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (min-width: 991px) and (max-width: 1400px) {
    .services .service-card__text {
        font-size: 14px !important;
        line-height: 1.35 !important;
    }
}