/* ==========================================================================
   Vitrais Celso — folha de estilo da home
   Mundo visual: verde-mata da marca (#254635, tirado do logotipo), latão de
   moldura e papel quente. Display em Abril Fatface, texto em Open Sans.
   Assinatura: toda foto vive dentro de uma moldura — passe-partout branco,
   filete de latão e chapa verde deslocada atrás.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Verdes — do logotipo para fora */
  --verde-900: #12251C;
  --verde-800: #1B3227;
  --verde-700: #254635;
  --verde-600: #2F5842;
  --verde-500: #588157;
  --verde-300: #A3B18A;
  --verde-100: #D8E0CC;

  /* Latão — o metal da moldura */
  --latao-700: #6F5420;
  --latao-600: #8A6A28;
  --latao-500: #B08A46;
  --latao-300: #D8B673;

  /* Papel e tinta */
  --papel:   #F7F6F2;
  --papel-2: #EFEDE5;
  --branco:  #FFFFFF;
  --tinta:   #1D2320;
  --tinta-2: #56605A;
  --linha:   #DDD9CE;

  /* Sobre fundo escuro */
  --claro-2: #B9C7BB;

  /* WhatsApp — gradiente com contraste AA */
  --zap-1: #075E54;
  --zap-2: #0E7A6B;

  /* Tipografia */
  --display: "Abril Fatface", Georgia, "Times New Roman", serif;
  --texto: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Ritmo */
  --secao: clamp(72px, 9vw, 132px);
  --wrap: 1220px;
  --gutter: clamp(20px, 4vw, 40px);
  --raio: 2px;

  /* Curva única de saída exponencial */
  --saida: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: var(--texto);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--verde-700); text-decoration-color: rgba(37, 70, 53, .35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--verde-700); color: #fff; }

:focus-visible {
  outline: 2px solid var(--latao-500);
  outline-offset: 3px;
  border-radius: 1px;
}

.vc-pular {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--verde-700); color: #fff; padding: 12px 18px;
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: top .2s var(--saida);
}
.vc-pular:focus { top: 12px; }

.vc-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.vc-so-leitor {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   3. Tipografia de seção
   -------------------------------------------------------------------------- */
.vc-h1 { font-size: clamp(2.55rem, 4.1vw, 3.5rem); line-height: 1.02; letter-spacing: -.02em; }
.vc-h2 { font-size: clamp(1.95rem, 4.1vw, 3.3rem); }
.vc-h3 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); letter-spacing: -.008em; }

.vc-intro {
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
  color: var(--tinta-2);
  max-width: 62ch;
}
.vc-corpo { max-width: 68ch; }
.vc-corpo p + p { margin-top: 0; }

/* Filete de latão que abre as seções */
.vc-filete {
  display: block; width: 62px; height: 2px; border: 0; margin: 0 0 22px;
  background: linear-gradient(90deg, var(--latao-500), var(--latao-300));
}
.vc-filete--claro { background: linear-gradient(90deg, var(--latao-300), rgba(216, 182, 115, .25)); }
.vc-filete--centro { margin-inline: auto; }

.vc-cabecalho-secao { max-width: 46rem; margin-bottom: clamp(38px, 5vw, 62px); }
.vc-cabecalho-secao--centro { margin-inline: auto; text-align: center; }
.vc-cabecalho-secao p { margin-top: 18px; }

/* --------------------------------------------------------------------------
   4. Botões
   -------------------------------------------------------------------------- */
.vc-btn {
  --bg: var(--verde-700);
  --fg: #fff;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  background: var(--bg); color: var(--fg);
  font: 600 .9375rem/1 var(--texto);
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--raio);
  cursor: pointer;
  transition: transform .35s var(--saida), background-color .3s ease, box-shadow .35s var(--saida), color .3s ease;
}
.vc-btn svg { width: 19px; height: 19px; flex: none; }
.vc-btn:hover { background: var(--verde-600); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(18, 37, 28, .6); }
.vc-btn:active { transform: translateY(0); }

/* Contorno sobre fundo escuro */
.vc-btn--contorno {
  background: transparent; color: #fff;
  border-color: rgba(216, 182, 115, .55);
}
.vc-btn--contorno:hover { background: rgba(216, 182, 115, .14); border-color: var(--latao-300); }

/* Contorno sobre fundo claro */
.vc-btn--linha {
  background: transparent; color: var(--verde-700);
  border-color: rgba(37, 70, 53, .3);
}
.vc-btn--linha:hover { background: rgba(37, 70, 53, .06); border-color: var(--verde-700); box-shadow: none; }

/* WhatsApp com brilho — gradiente aprovado em contraste AA */
.vc-btn--zap {
  background: linear-gradient(135deg, var(--zap-1) 0%, var(--zap-2) 100%);
  color: #fff; overflow: hidden;
}
.vc-btn--zap::after {
  content: ""; position: absolute; inset: 0 auto 0 -140%;
  width: 60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  animation: vc-brilho 4.6s ease-in-out infinite;
}
.vc-btn--zap:hover { background: linear-gradient(135deg, #064e46 0%, var(--zap-1) 100%); }
@keyframes vc-brilho {
  0%, 62% { left: -140%; }
  92%, 100% { left: 190%; }
}

.vc-link-seta {
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 .875rem/1 var(--texto);
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--latao-600); text-decoration: none;
}
.vc-link-seta svg { width: 17px; height: 17px; transition: transform .4s var(--saida); }
.vc-link-seta:hover svg { transform: translateX(5px); }
.vc-link-seta--claro { color: var(--latao-300); }

/* --------------------------------------------------------------------------
   5. Moldura — o componente-assinatura
   -------------------------------------------------------------------------- */
.vc-moldura {
  position: relative;
  margin: 0;
  background: var(--branco);
  padding: 10px;
  border: 1px solid var(--latao-500);
  box-shadow: 0 22px 44px -30px rgba(18, 37, 28, .55);
}
.vc-moldura::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(176, 138, 70, .38);
  pointer-events: none; z-index: 2;
}
/* chapa verde deslocada atrás — o "encosto" da moldura */
.vc-moldura::after {
  content: ""; position: absolute; inset: 0;
  background: var(--verde-700);
  transform: translate(14px, 14px);
  z-index: -1;
  transition: transform .6s var(--saida);
}
.vc-moldura > img,
.vc-moldura > a > img { width: 100%; display: block; }
.vc-moldura__quadro { overflow: hidden; display: block; position: relative; }
.vc-moldura__quadro img { transition: transform 1.1s var(--saida); width: 100%; }
.vc-moldura:hover::after { transform: translate(20px, 20px); }
.vc-moldura:hover .vc-moldura__quadro img { transform: scale(1.045); }

.vc-moldura--latao::after { background: var(--latao-500); }
.vc-moldura--sem-chapa::after { display: none; }
.vc-moldura--fina { padding: 6px; }

/* legenda tipográfica opcional */
.vc-moldura__legenda {
  display: block; padding: 12px 4px 2px;
  font-size: .8125rem; letter-spacing: .04em; color: var(--tinta-2);
}

/* --------------------------------------------------------------------------
   6. Superfícies escuras
   -------------------------------------------------------------------------- */
.vc-escuro {
  position: relative;
  background: var(--verde-800);
  color: var(--branco);
  isolation: isolate;
}
.vc-escuro h1, .vc-escuro h2, .vc-escuro h3, .vc-escuro h4 { color: var(--branco); }
.vc-escuro p { color: var(--claro-2); }
.vc-escuro .vc-intro { color: var(--claro-2); }
.vc-escuro a { color: var(--latao-300); }

/* luz raspando o vidro */
.vc-escuro::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(107deg, transparent 12%, rgba(255, 255, 255, .055) 20%, transparent 30%),
    linear-gradient(107deg, transparent 52%, rgba(255, 255, 255, .035) 58%, transparent 66%);
  pointer-events: none;
}
/* caixilhos verticais, como os montantes de uma sacada envidraçada */
.vc-caixilho::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(216, 182, 115, .11) 0 1px,
    transparent 1px calc(100% / 9)
  );
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

/* --------------------------------------------------------------------------
   7. Barra superior + cabeçalho
   -------------------------------------------------------------------------- */
.vc-topo {
  background: var(--verde-900);
  color: #C6D2C7;
  font-size: .8125rem;
}
.vc-topo .vc-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 42px; flex-wrap: wrap;
}
.vc-topo__itens { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.vc-topo a {
  color: #C6D2C7; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s ease;
}
.vc-topo a:hover { color: var(--latao-300); }
.vc-topo svg { width: 15px; height: 15px; flex: none; color: var(--verde-300); }
.vc-topo__social { display: flex; align-items: center; gap: 12px; }
.vc-topo__social a {
  width: 30px; height: 30px; justify-content: center;
  border: 1px solid rgba(216, 182, 115, .3);
}
.vc-topo__social a:hover { border-color: var(--latao-300); background: rgba(216, 182, 115, .12); }
.vc-topo__social svg { width: 15px; height: 15px; color: currentColor; }

.vc-cabecalho {
  position: sticky; top: 0; z-index: 90;
  background: var(--papel);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow .3s ease, background-color .3s ease;
}
.vc-cabecalho.is-fixo { box-shadow: 0 10px 30px -22px rgba(18, 37, 28, .5); }
.vc-cabecalho .vc-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 82px;
}
.vc-marca { display: inline-flex; align-items: center; flex: none; }
.vc-marca img { width: 232px; height: auto; }

.vc-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.vc-nav > ul > li { position: relative; }
.vc-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  font: 600 .875rem/1 var(--texto);
  letter-spacing: .015em;
  color: var(--tinta); text-decoration: none;
  transition: color .25s ease;
}
.vc-nav > ul > li > a { position: relative; }
.vc-nav > ul > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--latao-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--saida);
}
.vc-nav > ul > li > a:hover::after,
.vc-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
.vc-nav a:hover { color: var(--verde-700); }
.vc-nav svg { width: 12px; height: 12px; }

.vc-nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 254px;
  display: block !important;
  background: var(--branco);
  border: 1px solid var(--linha);
  border-top: 2px solid var(--latao-500);
  box-shadow: 0 24px 44px -26px rgba(18, 37, 28, .55);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .28s ease, transform .28s var(--saida), visibility .28s;
}
.vc-nav li:hover > .vc-nav__sub,
.vc-nav li:focus-within > .vc-nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.vc-nav__sub li { display: block; }
.vc-nav__sub a { display: block; padding: 10px 20px; font-weight: 400; font-size: .9rem; }
.vc-nav__sub a:hover { background: var(--papel-2); color: var(--verde-700); }

.vc-cabecalho__acao { display: flex; align-items: center; gap: 12px; }
.vc-cabecalho__acao .vc-btn { padding: 13px 20px; font-size: .875rem; }

.vc-hamburguer {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--linha); border-radius: var(--raio);
  color: var(--verde-700); cursor: pointer;
}
.vc-hamburguer svg { width: 22px; height: 22px; }
.vc-hamburguer .vc-x { display: none; }
.vc-hamburguer[aria-expanded="true"] .vc-x { display: block; }
.vc-hamburguer[aria-expanded="true"] .vc-barras { display: none; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.vc-hero {
  position: relative;
  min-height: clamp(500px, 61vh, 700px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--verde-800);
  isolation: isolate;
}
.vc-hero__foto,
.vc-hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 62% center;
  background: var(--verde-800);
}

/* Controle de pausa do vídeo de fundo — WCAG 2.2.2 */
.vc-hero__pausa {
  position: absolute; z-index: 3;
  top: clamp(16px, 2.4vw, 26px); right: clamp(16px, 2.4vw, 26px);
  width: 42px; height: 42px;
  display: grid; place-content: center;
  background: rgba(18, 37, 28, .58);
  border: 1px solid rgba(216, 182, 115, .45);
  border-radius: 999px;
  color: var(--latao-300);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.vc-hero__pausa:hover { background: rgba(18, 37, 28, .82); border-color: var(--latao-300); color: #fff; }
.vc-hero__pausa svg { width: 17px; height: 17px; }
.vc-hero__pausa .vc-icone-play { display: none; }
.vc-hero__pausa[aria-pressed="true"] .vc-icone-play { display: block; }
.vc-hero__pausa[aria-pressed="true"] .vc-icone-pausa { display: none; }
.vc-hero__veu {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 37, 28, .95) 0%, rgba(18, 37, 28, .86) 34%, rgba(18, 37, 28, .56) 62%, rgba(18, 37, 28, .3) 100%),
    linear-gradient(180deg, rgba(18, 37, 28, .5) 0%, transparent 26%, transparent 68%, rgba(18, 37, 28, .55) 100%);
}
.vc-hero .vc-wrap { position: relative; padding-block: clamp(55px, 7vw, 68px); }
.vc-hero__texto { max-width: 43rem; }
.vc-hero h1 { color: #fff; }
.vc-hero h1 em {
  font-style: normal;
  color: var(--verde-300);
}
.vc-hero__sub {
  margin-top: 22px;
  max-width: 40rem;
  font-size: clamp(1.03rem, 1.35vw, 1.19rem);
  color: #D7E0D6;
}
.vc-hero__acoes { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.vc-hero__fatos {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  margin: 40px 0 0; padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(216, 182, 115, .32);
  font-size: .875rem; letter-spacing: .015em;
  color: #D7E0D6;
}
.vc-hero__fatos li { display: flex; align-items: center; gap: 9px; }
.vc-hero__fatos svg { width: 17px; height: 17px; color: var(--latao-300); flex: none; }

/* --------------------------------------------------------------------------
   9. Faixa de credenciais
   -------------------------------------------------------------------------- */
.vc-credenciais {
  background: var(--branco);
  border-bottom: 1px solid var(--linha);
}
.vc-credenciais ul {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.vc-credenciais li {
  padding: clamp(26px, 3.4vw, 42px) clamp(14px, 2vw, 30px);
  border-left: 1px solid var(--linha);
}
.vc-credenciais li:first-child { border-left: 0; padding-left: 0; }
.vc-credenciais .vc-credenciais__marca {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.05;
  color: var(--verde-700);
  letter-spacing: -.015em;
}
.vc-credenciais .vc-credenciais__nota {
  display: block; margin-top: 8px;
  font-size: .875rem; line-height: 1.45; color: var(--tinta-2);
}

/* --------------------------------------------------------------------------
   10. Quem somos
   -------------------------------------------------------------------------- */
.vc-secao { padding-block: var(--secao); }

.vc-sobre__grade {
  display: grid; gap: clamp(38px, 5.5vw, 78px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
}
.vc-sobre__fotos { position: relative; padding-bottom: 74px; padding-right: 22px; }
.vc-sobre__fotos .vc-sobre__principal { width: 100%; }
.vc-sobre__fotos .vc-sobre__secundaria {
  position: absolute; right: 0; bottom: 0; width: 46%;
  z-index: 3;
}
.vc-sobre__selo {
  position: absolute; left: -14px; top: -22px; z-index: 4;
  width: 116px; height: 116px;
  display: grid; place-content: center; text-align: center;
  border-radius: 50%;
  background: var(--verde-700);
  border: 1px solid var(--latao-500);
  box-shadow: 0 16px 34px -18px rgba(18, 37, 28, .8);
  color: #fff;
}
.vc-sobre__selo strong {
  display: block; font-family: var(--display); font-size: 2.1rem; line-height: 1;
  color: var(--latao-300);
}
.vc-sobre__selo span {
  display: block; margin-top: 5px;
  font-size: .625rem; letter-spacing: .13em; text-transform: uppercase; color: #D7E0D6;
}
.vc-sobre__lista {
  list-style: none; margin: 30px 0 32px; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 26px;
}
.vc-sobre__lista li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--linha);
  font-size: .9375rem;
}
.vc-sobre__lista svg { width: 17px; height: 17px; color: var(--latao-600); flex: none; margin-top: 3px; }

/* --------------------------------------------------------------------------
   11. Serviços
   -------------------------------------------------------------------------- */
.vc-servicos { padding-block: var(--secao); }
.vc-servicos__grade {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.vc-servico {
  position: relative;
  grid-column: span 2;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.vc-servico--largo { grid-column: span 3; }
.vc-servico--faixa { grid-column: span 6; }

.vc-servico__foto {
  position: relative; overflow: hidden;
  background: var(--verde-900);
  border: 1px solid rgba(216, 182, 115, .34);
  aspect-ratio: 4 / 3;
}
.vc-servico--largo .vc-servico__foto { aspect-ratio: 16 / 10; }
.vc-servico__foto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.15s var(--saida), filter .6s ease;
}
.vc-servico__foto::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 37, 28, .72) 100%);
  transition: opacity .5s ease;
}
.vc-servico:hover .vc-servico__foto img { transform: scale(1.06); }
.vc-servico:hover .vc-servico__foto { border-color: var(--latao-300); }

.vc-servico__corpo { padding: 22px 2px 0; flex: 1; display: flex; flex-direction: column; }
.vc-servico h3 { margin-bottom: 12px; }
.vc-servico__corpo > p { margin-bottom: 18px; }
.vc-servico p { font-size: .9375rem; color: var(--claro-2); }
.vc-servico__mais {
  margin-top: auto; padding-top: 16px;
  align-self: flex-start;
  border-top: 1px solid rgba(216, 182, 115, .26);
  display: inline-flex; align-items: center; gap: 9px;
  font: 600 .8125rem/1 var(--texto); letter-spacing: .07em; text-transform: uppercase;
  color: var(--latao-300);
}
.vc-servico__mais svg { width: 16px; height: 16px; transition: transform .4s var(--saida); }
.vc-servico:hover .vc-servico__mais svg { transform: translateX(5px); }

/* Faixa horizontal do último serviço */
.vc-servico--faixa {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 3vw, 48px); align-items: center;
  margin-top: 8px;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(216, 182, 115, .22);
}
.vc-servico--faixa .vc-servico__foto { aspect-ratio: 21 / 9; }
.vc-servico--faixa .vc-servico__corpo { padding-top: 0; }
.vc-servico--faixa p { max-width: 46ch; }

/* --------------------------------------------------------------------------
   12. Por que a Vitrais Celso
   -------------------------------------------------------------------------- */
.vc-porque__grade {
  display: grid; gap: clamp(38px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: start;
}
.vc-citacao {
  margin: 0 0 30px;
  padding: 0 0 0 clamp(20px, 2.4vw, 30px);
  border-left: 2px solid var(--latao-500);
}
.vc-citacao p {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.16; letter-spacing: -.015em;
  color: var(--verde-700);
  margin-bottom: 14px;
}
.vc-citacao cite {
  font-style: normal; font-size: .8125rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--latao-600);
}

.vc-pilares { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.vc-pilares li {
  display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--linha);
}
.vc-pilares li:last-child { border-bottom: 1px solid var(--linha); }
.vc-pilares__icone {
  width: 46px; height: 46px;
  display: grid; place-content: center;
  border: 1px solid var(--latao-500);
  color: var(--latao-600);
  background: var(--branco);
}
.vc-pilares__icone svg { width: 22px; height: 22px; }
.vc-pilares h3 { font-size: 1.1rem; margin-bottom: 6px; }
.vc-pilares p { font-size: .9375rem; color: var(--tinta-2); }

/* --------------------------------------------------------------------------
   13. Galeria
   -------------------------------------------------------------------------- */
.vc-galeria__grade {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.vc-galeria__item {
  position: relative; display: block; overflow: hidden;
  border: 1px solid rgba(216, 182, 115, .28);
  background: var(--verde-900);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
/* o item alto ocupa duas linhas e o largo duas colunas; ambos herdam a altura
   das linhas ditadas pelos itens 4/3, então a imagem sai do fluxo */
.vc-galeria__item--alto { grid-row: span 2; aspect-ratio: auto; }
.vc-galeria__item--largo { grid-column: span 2; aspect-ratio: auto; }
.vc-galeria__item--alto img,
.vc-galeria__item--largo img { position: absolute; inset: 0; }
.vc-galeria__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--saida), opacity .5s ease;
}
.vc-galeria__item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(18, 37, 28, .28);
  opacity: 0; transition: opacity .45s ease;
}
.vc-galeria__lupa {
  position: absolute; z-index: 2; right: 12px; bottom: 12px;
  width: 40px; height: 40px;
  display: grid; place-content: center;
  background: rgba(18, 37, 28, .78);
  border: 1px solid rgba(216, 182, 115, .5);
  color: var(--latao-300);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s var(--saida);
}
.vc-galeria__lupa svg { width: 18px; height: 18px; }
.vc-galeria__item:hover img { transform: scale(1.07); }
.vc-galeria__item:hover::after { opacity: 1; }
.vc-galeria__item:hover .vc-galeria__lupa,
.vc-galeria__item:focus-visible .vc-galeria__lupa { opacity: 1; transform: translateY(0); }

/* Lightbox */
.vc-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(10, 21, 16, .93);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.vc-lightbox.is-aberto { opacity: 1; visibility: visible; }
.vc-lightbox__figura {
  margin: 0; max-width: min(1080px, 100%); max-height: 100%;
  background: #fff; padding: 10px; border: 1px solid var(--latao-500);
  transform: scale(.96); transition: transform .45s var(--saida);
}
.vc-lightbox.is-aberto .vc-lightbox__figura { transform: scale(1); }
.vc-lightbox__figura img { max-height: min(74vh, 720px); width: auto; margin-inline: auto; }
.vc-lightbox__figura figcaption {
  padding: 12px 4px 2px; font-size: .8125rem; color: var(--tinta-2); text-align: center;
}
.vc-lightbox__botao {
  position: absolute; width: 48px; height: 48px;
  display: grid; place-content: center;
  background: rgba(37, 70, 53, .82); color: #fff;
  border: 1px solid rgba(216, 182, 115, .45);
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease;
}
.vc-lightbox__botao:hover { background: var(--verde-700); border-color: var(--latao-300); }
.vc-lightbox__botao svg { width: 22px; height: 22px; }
.vc-lightbox__fechar { top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); }
.vc-lightbox__ant { left: clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }
.vc-lightbox__prox { right: clamp(10px, 2.5vw, 30px); top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   14. Faixa de visita
   -------------------------------------------------------------------------- */
.vc-visita { position: relative; overflow: hidden; isolation: isolate; }
.vc-visita__foto {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
}
.vc-visita__veu {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(18, 37, 28, .96) 0%, rgba(18, 37, 28, .9) 42%, rgba(18, 37, 28, .62) 100%);
}
.vc-visita .vc-wrap { padding-block: clamp(64px, 8vw, 108px); }
.vc-visita__caixa { max-width: 47rem; }
.vc-visita__endereco {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 26px 0 30px;
  font-size: 1.0625rem; color: #D7E0D6;
}
.vc-visita__endereco svg { width: 20px; height: 20px; color: var(--latao-300); flex: none; margin-top: 4px; }
.vc-visita__acoes { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.vc-faq__colunas {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(30px, 4vw, 64px);
  align-items: start;
}
.vc-faq__coluna { display: grid; align-content: start; }
.vc-item-faq {
  border-top: 1px solid var(--linha);
}
.vc-faq__coluna .vc-item-faq:last-child { border-bottom: 1px solid var(--linha); }
.vc-item-faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 22px 0;
  cursor: pointer; list-style: none;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.32; letter-spacing: -.005em;
  color: var(--verde-700);
  transition: color .25s ease;
}
.vc-item-faq summary::-webkit-details-marker { display: none; }
.vc-item-faq summary:hover { color: var(--verde-500); }
.vc-item-faq__sinal {
  position: relative; flex: none;
  width: 26px; height: 26px; margin-top: 2px;
  border: 1px solid var(--latao-500);
  color: var(--latao-600);
}
.vc-item-faq__sinal::before,
.vc-item-faq__sinal::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--saida), opacity .3s ease;
}
.vc-item-faq__sinal::before { width: 11px; height: 1.5px; }
.vc-item-faq__sinal::after { width: 1.5px; height: 11px; }
.vc-item-faq[open] .vc-item-faq__sinal::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.vc-item-faq[open] summary { color: var(--verde-900); }
.vc-item-faq__resposta {
  padding: 0 44px 24px 0;
  font-size: .9375rem; color: var(--tinta-2);
  max-width: 58ch;
}
html.js .vc-item-faq[open] .vc-item-faq__resposta { animation: vc-abre .45s var(--saida); }
@keyframes vc-abre { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.vc-faq__rodape {
  margin-top: clamp(34px, 4vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.vc-faq__rodape p { font-size: .9375rem; color: var(--tinta-2); max-width: 46ch; }

/* --------------------------------------------------------------------------
   16. Mapa e contato
   -------------------------------------------------------------------------- */
.vc-mapa__grade {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(30px, 4vw, 60px); align-items: center;
}
.vc-mapa__quadro {
  position: relative;
  border: 1px solid var(--latao-500);
  background: #fff; padding: 10px;
  box-shadow: 0 22px 44px -30px rgba(18, 37, 28, .55);
}
.vc-mapa__quadro iframe { width: 100%; height: clamp(300px, 40vw, 420px); border: 0; display: block; filter: saturate(.86); }
.vc-contato-lista { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 2px; }
.vc-contato-lista li {
  display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 14px;
  padding: 15px 0; border-top: 1px solid var(--linha);
  font-size: .9375rem;
}
.vc-contato-lista li:last-child { border-bottom: 1px solid var(--linha); }
.vc-contato-lista svg { width: 20px; height: 20px; color: var(--latao-600); margin-top: 2px; }
.vc-contato-lista strong {
  display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tinta-2); font-weight: 600; margin-bottom: 3px;
}
.vc-contato-lista a { color: var(--verde-700); font-weight: 600; text-decoration: none; }
.vc-contato-lista a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   17. Rodapé
   -------------------------------------------------------------------------- */
.vc-rodape { background: var(--verde-900); color: var(--claro-2); }
.vc-rodape .vc-wrap { padding-block: clamp(56px, 6vw, 86px) 0; }
.vc-rodape__grade {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 54px);
}
.vc-rodape h4 {
  font-size: 1.15rem; color: #fff; margin-bottom: 20px;
  padding-bottom: 14px; position: relative;
}
.vc-rodape h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--latao-500), var(--latao-300));
}
.vc-rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.vc-rodape a { color: var(--claro-2); text-decoration: none; transition: color .25s ease; }
.vc-rodape a:hover { color: var(--latao-300); }
.vc-rodape__marca img { width: 232px; margin-bottom: 22px; }
.vc-rodape__texto { font-size: .9375rem; max-width: 34ch; }
.vc-rodape__social { display: flex; gap: 10px; margin-top: 22px; }
.vc-rodape__social a {
  width: 40px; height: 40px; display: grid; place-content: center;
  border: 1px solid rgba(216, 182, 115, .32);
}
.vc-rodape__social a:hover { background: rgba(216, 182, 115, .14); border-color: var(--latao-300); }
.vc-rodape__social svg { width: 18px; height: 18px; }
.vc-rodape__contato li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; font-size: .9375rem; align-items: start; }
.vc-rodape__contato svg { width: 18px; height: 18px; color: var(--verde-300); margin-top: 3px; }

.vc-creditos {
  margin-top: clamp(46px, 5vw, 66px);
  padding-block: 30px 34px;
  border-top: 1px solid rgba(216, 182, 115, .2);
  text-align: center;
}
.vc-creditos p { font-size: .875rem; color: #9DAEA0; margin: 0; }
.vc-creditos__webformas { display: inline-block; margin-top: 16px; opacity: .9; transition: opacity .25s ease; }
.vc-creditos__webformas:hover { opacity: 1; }
.vc-creditos__webformas img { width: 118px; height: auto; margin-inline: auto; }

/* --------------------------------------------------------------------------
   18. Flutuantes
   -------------------------------------------------------------------------- */
/* WhatsApp flutuante — padrão WebFormas (.wa-float: botão redondo de 60px
   com pulso). Cor: o gradiente escuro do site, não o #25D366 (ver DESIGN.md,
   o verde claro reprova contraste; branco sobre #075E54 dá 7,6:1). */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--zap-1) 0%, var(--zap-2) 100%);
  color: #fff; text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 12px 26px -10px rgba(7, 94, 84, .8);
  transition: transform .3s var(--saida), box-shadow .3s var(--saida);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid var(--zap-2);
  opacity: .6; pointer-events: none;
  animation: wa-pulso 2.2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.06); color: #fff; box-shadow: 0 16px 32px -12px rgba(7, 94, 84, .85); }
.wa-float:focus-visible { outline: 2px solid var(--latao-500); outline-offset: 6px; }
@keyframes wa-pulso {
  0% { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.vc-topo-botao {
  position: fixed; right: 28px; bottom: 96px; z-index: 94;
  width: 44px; height: 44px;
  display: grid; place-content: center;
  background: var(--verde-700); color: #fff;
  border: 1px solid rgba(216, 182, 115, .4);
  border-radius: 999px;
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s var(--saida), visibility .35s, background-color .25s ease;
}
.vc-topo-botao.is-visivel { opacity: 1; visibility: visible; transform: none; }
.vc-topo-botao:hover { background: var(--verde-600); }
.vc-topo-botao svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   Card de privacidade e cookies — padrão WebFormas (kit
   Sites/sitesexemplos/_tools/lgpd/). Cores: verde mais escuro da marca no
   fundo e o latão claro como destaque (tinta #16261C sobre ele: 8,6:1).
   -------------------------------------------------------------------------- */
:root {
  --lgpd-bg: var(--verde-900);
  --lgpd-fg: #ffffff;
  --lgpd-muted: var(--claro-2);
  --lgpd-border: rgba(216, 182, 115, .22);
  --lgpd-accent: var(--latao-300);
  --lgpd-accent-fg: #16261C;
  --lgpd-ico-bg: rgba(216, 182, 115, .14);
  --lgpd-radius: 10px;
  --lgpd-font: var(--texto);
  --lgpd-z: 99995;
}

.sr-only { position: absolute; left: -9999px; }

.lgpd { position: fixed; left: 1rem; bottom: 1rem; z-index: var(--lgpd-z); width: min(560px, calc(100vw - 2rem));
  font-family: var(--lgpd-font); color: var(--lgpd-fg); transform: translateY(calc(100% + 2rem)); opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s; }
.lgpd.is-visivel { transform: none; opacity: 1; }
.lgpd[hidden] { display: none; }
.lgpd__card { background: var(--lgpd-bg); border: 1px solid var(--lgpd-border); border-radius: var(--lgpd-radius);
  padding: 1.5rem 1.6rem 1.4rem; box-shadow: 0 24px 60px -20px rgba(0,0,0,.6); }
.lgpd__topo { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.lgpd__ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--lgpd-ico-bg); color: var(--lgpd-accent);
  display: grid; place-items: center; }
.lgpd__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lgpd__titulo { font-size: 1.05rem; font-weight: 700; margin: 0; line-height: 1.2; color: var(--lgpd-fg); }
.lgpd__txt { font-size: .92rem; line-height: 1.6; margin: 0 0 1.1rem; color: var(--lgpd-muted); }
.lgpd__txt a { color: var(--lgpd-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.lgpd__acoes { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem .75rem; }
.lgpd__btn { font: 700 .78rem/1 var(--lgpd-font); letter-spacing: .06em; text-transform: uppercase; padding: .95rem 1.5rem;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.lgpd__btn:hover, .lgpd__btn:focus-visible { transform: translateY(-1px); outline: none; }
.lgpd__btn:focus-visible { box-shadow: 0 0 0 3px var(--lgpd-bg), 0 0 0 5px var(--lgpd-accent); }
.lgpd__btn--sim, .lgpd__btn--sim:hover, .lgpd__btn--sim:focus { background: var(--lgpd-accent); color: var(--lgpd-accent-fg); border-color: var(--lgpd-accent); }
.lgpd__btn--sim:hover { filter: brightness(1.08); }
.lgpd__btn--nao, .lgpd__btn--nao:hover, .lgpd__btn--nao:focus { background: transparent; color: var(--lgpd-fg); border-color: rgba(255,255,255,.55); }
.lgpd__btn--nao:hover { border-color: var(--lgpd-fg); }
.lgpd__link, .lgpd__link:hover, .lgpd__link:focus { background: none; border: 0; padding: .5rem .25rem; font: 600 .85rem/1 var(--lgpd-font); color: var(--lgpd-fg);
  text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.lgpd__link:hover { color: var(--lgpd-accent); }

.lgpd__prefs { display: none; }
.lgpd.is-prefs .lgpd__txt, .lgpd.is-prefs .lgpd__card > .lgpd__acoes { display: none; }
.lgpd.is-prefs .lgpd__prefs { display: block; }
.lgpd__opcao { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--lgpd-border); }
.lgpd__opcao:last-of-type { border-bottom: 1px solid var(--lgpd-border); margin-bottom: 1rem; }
.lgpd__opcao strong { display: block; font-size: .9rem; color: var(--lgpd-fg); }
.lgpd__opcao span { display: block; font-size: .78rem; color: var(--lgpd-muted); line-height: 1.45; }
.lgpd__opcao small { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--lgpd-accent); font-weight: 700; white-space: nowrap; }
.lgpd__switch { position: relative; flex: 0 0 auto; width: 46px; height: 26px; }
.lgpd__switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.lgpd__switch i { position: absolute; inset: 0; border-radius: 999px; background: rgba(255,255,255,.22); transition: background .2s; }
.lgpd__switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .2s; }
.lgpd__switch input:checked + i { background: var(--lgpd-accent); }
.lgpd__switch input:checked + i::after { transform: translateX(20px); }
.lgpd__switch input:focus-visible + i { outline: 2px solid var(--lgpd-accent); outline-offset: 2px; }

/* enquanto o card está aberto, os flutuantes somem no celular (o card ocupa o
   rodapé da tela; voltam quando ele fecha) */
@media (max-width: 767px) {
  .lgpd { left: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); }
  .lgpd__card { padding: 1.2rem 1.2rem 1.1rem; }
  .lgpd__btn { padding: .85rem 1.2rem; font-size: .72rem; }
  body.has-lgpd .wa-float, body.has-lgpd .vc-topo-botao { display: none; }
}
@media (prefers-reduced-motion: reduce) { .lgpd { transition: none; } }

/* "Preferências de cookies" no rodapé: é ação (reabre o card), então é
   <button>, vestido igual aos links vizinhos. font: inherit não carrega
   text-transform nem letter-spacing — vão declarados. */
.vc-rodape__cookies {
  background: none; border: 0; padding: 0; margin: 0;
  font: inherit; text-transform: inherit; letter-spacing: inherit;
  color: var(--claro-2); text-align: left; cursor: pointer;
  transition: color .25s ease;
}
.vc-rodape__cookies:hover { color: var(--latao-300); }

/* Modal "Enviando…" do formulário (criado pelo vitrais.js) */
.vc-envio {
  position: fixed; inset: 0; z-index: 99996;
  display: grid; place-items: center; padding: 20px;
  background: rgba(18, 37, 28, .72);
}
.vc-envio[hidden] { display: none; }
.vc-envio__caixa {
  width: min(380px, 100%); padding: 32px 28px; text-align: center;
  background: var(--papel); color: var(--tinta);
  border-top: 3px solid var(--latao-500); border-radius: var(--raio);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}
.vc-envio__giro {
  display: block; width: 42px; height: 42px; margin: 0 auto 18px;
  border: 3px solid rgba(37, 70, 53, .18); border-top-color: var(--verde-700);
  border-radius: 50%; animation: vc-giro .8s linear infinite;
}
.vc-envio__titulo { font: 400 1.35rem/1.25 var(--display); color: var(--verde-700); margin: 0 0 6px; }
.vc-envio__txt { font-size: .9375rem; color: var(--tinta-2); margin: 0; }
@keyframes vc-giro { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   19. Revelação no scroll — só com JS, conteúdo visível por padrão
   -------------------------------------------------------------------------- */
html.js .rv { opacity: 0; transform: translateY(20px); }
html.js .rv.is-vis {
  opacity: 1; transform: none;
  transition: opacity .75s var(--saida), transform .75s var(--saida);
}
html.js .rv-d1.is-vis { transition-delay: .08s; }
html.js .rv-d2.is-vis { transition-delay: .16s; }
html.js .rv-d3.is-vis { transition-delay: .24s; }
html.js .rv-d4.is-vis { transition-delay: .32s; }
html.js .rv-d5.is-vis { transition-delay: .4s; }

/* momento autoral: a moldura se assenta */
html.js .vc-moldura.rv::after { transform: translate(0, 0); }
html.js .vc-moldura.rv.is-vis::after { transform: translate(14px, 14px); transition: transform .9s .2s var(--saida); }

/* --------------------------------------------------------------------------
   20. Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .vc-cabecalho__acao .vc-btn { display: none; }
  .vc-marca img { width: 200px; }
  .vc-rodape__grade { grid-template-columns: 1.3fr 1fr 1fr; }
  .vc-rodape__grade > :nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .vc-hamburguer { display: flex; }
  /* abre por grid-template-rows: anima a altura real do conteúdo, sem layout thrash */
  .vc-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--papel);
    border-bottom: 1px solid var(--linha);
    box-shadow: 0 24px 40px -28px rgba(18, 37, 28, .6);
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .45s var(--saida);
  }
  /* fechado sai da ordem de tabulação, não só da vista */
  .vc-nav > ul { overflow: hidden; min-height: 0; visibility: hidden; transition: visibility .45s; }
  .vc-nav.is-aberto { grid-template-rows: 1fr; }
  .vc-nav.is-aberto > ul { visibility: visible; max-height: 78vh; overflow-y: auto; }
  /* sem padding vertical no ul: com box-sizing:border-box ele viraria piso de altura
     e deixaria uma tira visível sob o cabeçalho com o menu fechado */
  .vc-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0 var(--gutter); }
  .vc-nav > ul > li:first-child { margin-top: 8px; }
  .vc-nav > ul > li:last-child { margin-bottom: 18px; }
  .vc-nav > ul > li > a::after { display: none; }
  .vc-nav a { padding: 14px 0; border-bottom: 1px solid var(--linha); font-size: .9875rem; }
  .vc-nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; border-left: 1px solid var(--latao-500); box-shadow: none;
    padding: 0 0 8px 16px; margin-bottom: 6px; min-width: 0; background: transparent;
  }
  .vc-nav__sub a { padding: 11px 0; border-bottom: 0; color: var(--tinta-2); }
  .vc-cabecalho .vc-wrap { min-height: 72px; position: relative; }

  .vc-credenciais ul { grid-template-columns: repeat(2, 1fr); }
  .vc-credenciais li { border-left: 0; padding-inline: 0; border-top: 1px solid var(--linha); }
  .vc-credenciais li:nth-child(odd) { padding-right: 20px; }
  .vc-credenciais li:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--linha); }
  .vc-credenciais li:first-child, .vc-credenciais li:nth-child(2) { border-top: 0; }

  .vc-sobre__grade,
  .vc-porque__grade,
  .vc-mapa__grade { grid-template-columns: minmax(0, 1fr); }
  .vc-sobre__fotos { order: -1; max-width: 560px; }

  .vc-servicos__grade { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vc-servico { grid-column: span 2; }
  .vc-servico--largo { grid-column: span 4; }
  .vc-servico--faixa { grid-column: span 4; grid-template-columns: minmax(0, 1fr); }
  .vc-servico--largo .vc-servico__foto,
  .vc-servico--faixa .vc-servico__foto { aspect-ratio: 16 / 9; }

  .vc-galeria__grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vc-galeria__item--alto { grid-row: span 1; aspect-ratio: 4 / 3; }
  .vc-galeria__item--largo { grid-column: span 2; aspect-ratio: 16 / 7; }

  .vc-faq__colunas { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .vc-faq__coluna + .vc-faq__coluna .vc-item-faq:first-child { border-top: 0; }
  .vc-faq__coluna:first-child .vc-item-faq:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  body { font-size: 1rem; }
  .vc-topo .vc-wrap { justify-content: center; text-align: center; padding-block: 8px; }
  .vc-topo__itens { justify-content: center; gap: 8px 18px; font-size: .78rem; }
  .vc-topo__social { display: none; }

  .vc-hero { min-height: 0; }
  .vc-hero .vc-wrap { padding-block: 66px 56px; }
  .vc-hero__foto, .vc-hero__video { object-position: 68% center; }
  .vc-hero__veu {
    background:
      linear-gradient(180deg, rgba(18, 37, 28, .82) 0%, rgba(18, 37, 28, .9) 55%, rgba(18, 37, 28, .96) 100%);
  }
  .vc-hero__acoes .vc-btn { flex: 1 1 100%; justify-content: center; }
  .vc-hero__fatos { gap: 12px; flex-direction: column; }

  .vc-sobre__lista { grid-template-columns: minmax(0, 1fr); }
  .vc-sobre__fotos { padding-bottom: 58px; padding-right: 14px; }
  .vc-sobre__selo { width: 92px; height: 92px; left: -6px; top: -16px; }
  .vc-sobre__selo strong { font-size: 1.65rem; }

  .vc-servicos__grade { grid-template-columns: minmax(0, 1fr); }
  .vc-servico, .vc-servico--largo, .vc-servico--faixa { grid-column: span 1; }
  .vc-servico__foto, .vc-servico--largo .vc-servico__foto, .vc-servico--faixa .vc-servico__foto { aspect-ratio: 4 / 3; }

  .vc-galeria__grade { grid-template-columns: minmax(0, 1fr); }
  .vc-galeria__item--largo { grid-column: span 1; aspect-ratio: 4 / 3; }

  .vc-visita__acoes .vc-btn { flex: 1 1 100%; justify-content: center; }
  .vc-item-faq__resposta { padding-right: 0; }

  .vc-rodape__grade { grid-template-columns: minmax(0, 1fr); }
  .vc-rodape__grade > :nth-child(4) { grid-column: auto; }

  .wa-float { right: 16px; bottom: 16px; }
  /* alinha o centro do botão de topo (44px) com o do .wa-float (60px) */
  .vc-topo-botao { bottom: 92px; right: 24px; }

  .vc-lightbox__ant, .vc-lightbox__prox { top: auto; bottom: 14px; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Movimento reduzido e impressão
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html.js .rv { opacity: 1; transform: none; }
}

@media print {
  .vc-topo, .vc-nav, .vc-hamburguer, .wa-float, .vc-topo-botao, .lgpd, .vc-envio, .vc-lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .vc-escuro { background: #fff !important; color: #000 !important; }
}

/* ==========================================================================
   22. Páginas internas
   Tudo aqui herda os tokens das seções 1-5. Nenhuma cor nova.
   ========================================================================== */

/* -- Banner de página ------------------------------------------------------ */
.vc-hero-pagina {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--verde-800);
  padding-block: clamp(54px, 7vw, 92px);
}
.vc-hero-pagina__foto {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: center 58%;
}
.vc-hero-pagina__veu {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 37, 28, .95) 0%, rgba(18, 37, 28, .88) 46%, rgba(18, 37, 28, .58) 100%),
    linear-gradient(180deg, rgba(18, 37, 28, .45) 0%, transparent 40%);
}
.vc-hero-pagina h1 { color: #fff; max-width: 22ch; }
.vc-hero-pagina .vc-filete { margin-bottom: 18px; }

.vc-migalhas {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 22px 0 0; padding: 0;
  font-size: .8125rem; color: #A9BAAC;
}
.vc-migalhas a { color: var(--latao-300); text-decoration: none; }
.vc-migalhas a:hover { text-decoration: underline; }
.vc-migalhas li + li::before { content: "/"; margin-right: 8px; color: rgba(216, 182, 115, .5); }
.vc-migalhas [aria-current="page"] { color: #D7E0D6; }

/* -- Coluna de conteúdo + lateral ------------------------------------------ */
.vc-conteudo__grade {
  display: grid; align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(38px, 5vw, 72px);
}
.vc-texto-pagina > * + * { margin-top: 1.05em; }
.vc-texto-pagina p { font-size: 1.0625rem; max-width: 68ch; }
.vc-texto-pagina h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 1.6em; }
.vc-texto-pagina .vc-destaque {
  margin: 32px 0; padding: 0 0 0 clamp(18px, 2.2vw, 28px);
  border-left: 2px solid var(--latao-500);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.3; color: var(--verde-700);
  max-width: 40ch;
}

/* -- Lateral --------------------------------------------------------------- */
.vc-lateral { position: sticky; top: 104px; display: grid; gap: 26px; }
.vc-lateral h2 {
  font-size: 1.15rem; margin-bottom: 4px;
  padding-bottom: 12px; position: relative;
}
.vc-lateral h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px;
  background: linear-gradient(90deg, var(--latao-500), var(--latao-300));
}
.vc-lateral__menu { list-style: none; margin: 0; padding: 0; }
.vc-lateral__menu li { border-bottom: 1px solid var(--linha); position: relative; }
.vc-lateral__menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 2px 14px 12px;
  font-size: .9375rem; font-weight: 600;
  color: var(--tinta); text-decoration: none;
  transition: color .25s ease;
}
.vc-lateral__menu svg {
  width: 16px; height: 16px; color: var(--latao-500); flex: none;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .3s ease, transform .35s var(--saida);
}
.vc-lateral__menu a:hover { color: var(--verde-700); }
.vc-lateral__menu a:hover svg,
.vc-lateral__menu [aria-current="page"] svg { opacity: 1; transform: none; }
.vc-lateral__menu [aria-current="page"] { color: var(--verde-700); }
/* o filete de latão cresce do topo — sem animar layout */
.vc-lateral__menu li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 2px; height: 24px;
  background: var(--latao-500);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--saida);
}
.vc-lateral__menu li:hover::before,
.vc-lateral__menu li:has([aria-current="page"])::before { transform: scaleY(1); }

.vc-cartao-contato {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--verde-800); color: #fff;
  padding: 28px 26px 30px;
  border: 1px solid rgba(216, 182, 115, .3);
}
.vc-cartao-contato::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, .055) 28%, transparent 40%);
}
.vc-cartao-contato h2 { color: #fff; font-size: 1.3rem; }
.vc-cartao-contato h2::after { background: linear-gradient(90deg, var(--latao-300), rgba(216, 182, 115, .3)); }
.vc-cartao-contato p { font-size: .9375rem; color: var(--claro-2); margin: 14px 0 20px; }
.vc-cartao-contato ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.vc-cartao-contato li { display: grid; grid-template-columns: 19px 1fr; gap: 11px; font-size: .875rem; align-items: start; color: var(--claro-2); }
.vc-cartao-contato svg { width: 17px; height: 17px; color: var(--latao-300); margin-top: 3px; }
.vc-cartao-contato a { color: #fff; text-decoration: none; font-weight: 600; }
.vc-cartao-contato a:hover { color: var(--latao-300); }
.vc-cartao-contato .vc-btn { width: 100%; justify-content: center; }

/* -- Galeria das internas -------------------------------------------------- */
.vc-galeria-servico {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: 4px;
}
.vc-galeria-servico .vc-galeria__item { border-color: rgba(37, 70, 53, .22); background: var(--papel-2); }
.vc-galeria-servico .vc-galeria__item:hover { border-color: var(--latao-500); }

/* -- Formulário ------------------------------------------------------------ */
.vc-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.vc-campo { display: grid; gap: 7px; }
.vc-campo--largo { grid-column: 1 / -1; }
.vc-campo label {
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--tinta-2);
}
.vc-campo input,
.vc-campo textarea {
  width: 100%; padding: 14px 16px;
  font: 400 1rem/1.5 var(--texto); color: var(--tinta);
  background: var(--branco);
  border: 1px solid var(--linha); border-radius: var(--raio);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.vc-campo textarea { resize: vertical; min-height: 148px; }
.vc-campo input::placeholder,
.vc-campo textarea::placeholder { color: #8C9490; }
.vc-campo input:hover,
.vc-campo textarea:hover { border-color: #BFC5B8; }
.vc-campo input:focus,
.vc-campo textarea:focus {
  outline: none; border-color: var(--verde-700);
  box-shadow: 0 0 0 3px rgba(37, 70, 53, .12);
}
.vc-campo[data-erro] input,
.vc-campo[data-erro] textarea { border-color: #A33A2A; box-shadow: 0 0 0 3px rgba(163, 58, 42, .1); }
.vc-campo__erro { font-size: .8125rem; color: #8E2E20; }
.vc-campo:not([data-erro]) .vc-campo__erro { display: none; }

.vc-form__captcha { grid-column: 1 / -1; }
.vc-form__rodape {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px;
}
.vc-form__nota { font-size: .8125rem; color: var(--tinta-2); max-width: 40ch; }
.vc-form__nota a { color: var(--verde-700); }
/* honeypot: fora da tela e fora da ordem de tab (display:none alguns robôs pulam) */
.vc-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.vc-form button[type="submit"] { border: 0; font-family: var(--texto); }
.vc-form button[disabled] { opacity: .6; cursor: progress; }

.vc-form__aviso {
  grid-column: 1 / -1;
  padding: 14px 18px; border-radius: var(--raio);
  font-size: .9375rem; border: 1px solid;
}
.vc-form__aviso[hidden] { display: none; }
.vc-form__aviso--erro { background: #FBEDEA; border-color: #E0BDB5; color: #7C2A1D; }
.vc-form__aviso--ok { background: #E9F1E9; border-color: #BCD3BC; color: #1E4A2B; }

/* -- Página de obrigado e 404 ---------------------------------------------- */
.vc-recado { text-align: center; max-width: 46rem; margin-inline: auto; }
.vc-recado .vc-filete { margin-inline: auto; }
.vc-recado__selo {
  width: 92px; height: 92px; margin: 0 auto 30px;
  display: grid; place-content: center;
  border-radius: 50%; background: var(--verde-700);
  border: 1px solid var(--latao-500);
  color: var(--latao-300);
}
.vc-recado__selo svg { width: 40px; height: 40px; }
.vc-recado p { margin-top: 20px; color: var(--tinta-2); font-size: 1.0625rem; }
.vc-recado__acoes { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.vc-recado__numero {
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 11rem); line-height: .9;
  color: var(--verde-700); letter-spacing: -.03em;
  margin-bottom: 10px;
}

/* -- Texto legal ----------------------------------------------------------- */
.vc-legal { max-width: 72ch; }
.vc-legal h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  margin-top: 2.2em; margin-bottom: .6em;
}
.vc-legal h2:first-of-type { margin-top: 0; }
.vc-legal p, .vc-legal li { color: var(--tinta-2); }
.vc-legal ul { padding-left: 20px; display: grid; gap: 8px; margin: 0 0 1.05em; }
.vc-legal li::marker { color: var(--latao-500); }
.vc-legal__data { font-size: .8125rem; color: var(--tinta-2); margin-bottom: 34px; }
/* "Preferências de cookies" no meio do texto: botão com cara do link global */
.vc-legal__cookies {
  background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
  font: inherit; text-transform: inherit; letter-spacing: inherit;
  color: var(--verde-700); text-decoration: underline;
  text-decoration-color: rgba(37, 70, 53, .35); text-underline-offset: 3px;
}
.vc-legal__cookies:hover { text-decoration-color: currentColor; }

/* -- Responsivo das internas ----------------------------------------------- */
@media (max-width: 1080px) {
  .vc-conteudo__grade { grid-template-columns: minmax(0, 1fr) 290px; }
  .vc-lateral { top: 92px; }
}

@media (max-width: 940px) {
  .vc-conteudo__grade { grid-template-columns: minmax(0, 1fr); }
  .vc-lateral { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
}

@media (max-width: 700px) {
  .vc-hero-pagina h1 { max-width: none; }
  .vc-lateral { grid-template-columns: minmax(0, 1fr); }
  .vc-form { grid-template-columns: minmax(0, 1fr); }
  .vc-form__rodape .vc-btn { flex: 1 1 100%; justify-content: center; }
  .vc-recado__acoes .vc-btn { flex: 1 1 100%; justify-content: center; }
}
