/* ========================================
   COLUNA DA ESQUERDA DA PÁGINA DE CONTATOS
   Sem cartão, sem sombra: label dourado em caixa alta, fio que some
   na ponta e linhas com chave à esquerda e valor à direita.
   Mesmo idioma do formulário e das LPs novas. 17/08/2026.
   ======================================== */

.contato-info {
  --ouro: #aa7e32;
  --ouro-claro: #c5a974;
  padding-right: 20px;
}

.contato-info__intro {
  color: #37332c;
  font-size: 19px;
  font-weight: 400;
  line-height: 33px;
  margin: 0 0 44px;
  max-width: 46ch;
}

.contato-info__bloco + .contato-info__bloco {
  margin-top: 40px;
}

.contato-info__label {
  position: relative;
  display: block;
  color: var(--ouro);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.contato-info__label:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--ouro-claro) 0%, rgba(197, 169, 116, .4) 55%, rgba(197, 169, 116, 0) 100%);
}

.contato-info__linhas {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contato-info__linhas li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.contato-info__chave {
  color: #8d887e;
  letter-spacing: .04em;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.contato-info__valor {
  color: #14110c;
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
}

/* telefone e e-mail: mantêm o ícone que já vem do CSS antigo (.text-block-196) */
.contato-info__link {
  display: inline-block;
  color: #14110c;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .25s ease;
  overflow-wrap: anywhere;
}

.contato-info__link:hover {
  color: var(--ouro);
}

.contato-info__redes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 16px;
}

.contato-info__rede {
  color: #14110c;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}

.contato-info__rede:hover {
  color: var(--ouro);
  border-bottom-color: var(--ouro-claro);
}

/* a coluna acompanhava a rolagem do formulário (era o position:sticky do
   .hero_content que existia aqui antes) — mantido */
@media screen and (min-width: 992px) {
  .contato-info {
    position: sticky;
    top: 2rem;
    align-self: start;
  }
}

@media screen and (max-width: 991px) {
  .contato-info {
    padding-right: 0;
    margin-bottom: 44px;
  }

  .contato-info__intro {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 767px) {
  .contato-info__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .contato-info__linhas li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .contato-info__valor {
    font-size: 16px;
  }
}

/* ========================================
   CAPA DA PÁGINA DE CONTATOS
   altura natural (sem min-height de tela cheia), 100px de respiro em cima
   e embaixo, e a foto com um zoom lento só para dar sensação de movimento.
   Vale SÓ nesta página — este arquivo só é carregado aqui.
   ======================================== */

.capa-hero.contatos {
  position: relative;
  min-height: 0;
  height: auto;
  padding-top: 100px;
  padding-bottom: 80px;
  background-image: none;
  overflow: hidden;
  isolation: isolate;
}

.capa-hero.contatos:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../assets/carrossel-quem-somos-9.webp') 50% / cover no-repeat;
  transform: scale(1);
  animation: capaContatosZoom 26s ease-in-out infinite alternate;
  will-change: transform;
}

.capa-hero.contatos:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .77);
}

@keyframes capaContatosZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .capa-hero.contatos:before {
    animation: none;
  }
}

/* No desktop a barra de navegação (~63px) fica POR CIMA da capa e a última linha
   de texto deixa ~20px de entrelinha embaixo. Somando isso, 164/80 dá o mesmo
   espaço ÓPTICO em cima e embaixo (~100px dos dois lados). */
@media screen and (min-width: 992px) {
  .capa-hero.contatos {
    padding-top: 164px;
  }
}

/* respiro entre o grupo de cima (informações + formulário) e as unidades */
.div-block-10878 {
  margin-top: 96px;
}

@media screen and (max-width: 991px) {
  .div-block-10878 {
    margin-top: 64px;
  }
}
