/* =========================
   TOKENS
   ========================= */
:root {
  --bg: #faf7f2;
  --bg-elev: #ffffff;
  --ink: #0e0e10;
  --ink-2: #2a2a2e;
  --muted: #6b6b73;
  --line: rgba(14, 14, 16, 0.08);
  --line-strong: rgba(14, 14, 16, 0.16);

  --gold: #c9a24a;
  --gold-2: #e6c87a;
  --gold-soft: #f4ead0;
  --beige: #ecdfc7;
  --champagne: #d8c79e;

  --shadow-sm: 0 1px 2px rgba(14, 14, 16, .04), 0 4px 12px rgba(14, 14, 16, .04);
  --shadow-md: 0 8px 24px rgba(14, 14, 16, .08), 0 2px 6px rgba(14, 14, 16, .04);
  --shadow-lg: 0 24px 60px rgba(14, 14, 16, .14), 0 6px 16px rgba(14, 14, 16, .06);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* =========================
   RESET
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head h2 { margin: 14px 0 12px; }
.section__head p { color: var(--muted); margin: 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: -.005em; }

/* =========================
   REVEAL ANIMATIONS
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================
   NAV
   ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  color: #fff;
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out), color .4s var(--ease-out);
}
.nav::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,12,.5) 0%, transparent 100%);
  opacity: 1; transition: opacity .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(14, 14, 16, .04);
  padding: 10px 0;
  color: var(--ink);
}
.nav.is-scrolled::before { opacity: 0; }
.nav__inner { position: relative; z-index: 1; }
.nav .nav__brand-line, .nav .nav__brand-sub { color: inherit; }
.nav__brand-sub { opacity: .8; }
.nav.is-scrolled .nav__brand-sub { color: var(--muted); opacity: 1; }
.nav .nav__links a { color: inherit; opacity: .9; }
.nav.is-scrolled .nav__links a { color: var(--ink-2); opacity: 1; }
.nav .nav__cta { background: var(--gold); color: var(--ink); }
.nav .nav__cta:hover { background: #fff; }
.nav.is-scrolled .nav__cta { background: var(--ink); color: #fff; }
.nav.is-scrolled .nav__cta:hover { background: var(--gold); color: var(--ink); }

.nav__inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}

.nav__brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__monogram {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1d 0%, #0a0a0c 100%);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(230, 200, 122, .35), var(--shadow-sm);
  overflow: hidden;
  flex: 0 0 auto;
}
.nav__monogram img {
  width: 78%; height: 78%;
  object-fit: contain;
  display: block;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-line { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.nav__brand-sub { font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav__links a {
  position: relative; font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .3s var(--ease-out);
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transform: translateX(-50%); transition: width .3s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 18px; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .02em;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out);
  box-shadow: 0 6px 18px rgba(14, 14, 16, .15);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px rgba(201, 162, 74, .35); }


/* =========================
   HERO (vídeo de fundo)
   ========================= */
.hero {
  position: relative; isolation: isolate;
  min-height: 100dvh; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #0a0a0c;
  color: #f7f3ea;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* leve aumento + animação Ken Burns sutil para evitar barras pretas e dar movimento */
  transform: scale(1.04);
  animation: kenBurns 22s var(--ease-in-out) infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.35) 35%, rgba(10,10,12,.75) 100%),
    radial-gradient(700px 400px at 85% 12%, rgba(230, 200, 122, .22), transparent 70%),
    radial-gradient(500px 400px at 15% 90%, rgba(201, 162, 74, .18), transparent 70%);
}

.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(255, 255, 255, .12); padding: 8px 14px; border-radius: 999px;
  color: #fff; font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(230, 200, 122, .25);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 200, 122, .45); }
  50% { box-shadow: 0 0 0 10px rgba(230, 200, 122, 0); }
}

.hero__title {
  margin: 22px 0 18px;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__title em {
  font-style: italic; color: var(--gold-2);
  position: relative;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: linear-gradient(90deg, transparent, rgba(230, 200, 122, .35), transparent);
  border-radius: 4px;
}

.hero__lead { color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.2vw, 1.125rem); max-width: 520px; margin: 0 0 32px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__badge-card {
  justify-self: end;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
  max-width: 320px;
}
.hero__badge-card strong { display: block; font-size: 14px; line-height: 1.2; color: #fff; }
.hero__badge-card span { display: block; font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .06em; margin-top: 2px; }
.hero__badge-photo {
  display: block; width: 48px; height: 48px;
  border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  border: 2px solid rgba(230, 200, 122, .55);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}
.hero__badge-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 14px 32px rgba(201, 162, 74, .4);
}
.btn--primary:hover { transform: translateY(-2px); background: #fff; color: var(--ink); box-shadow: 0 18px 40px rgba(255, 255, 255, .25); }
.btn--ghost {
  background: rgba(255, 255, 255, .14); color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .22); border-color: var(--gold-2); color: var(--gold-2); }
.btn--lg { padding: 18px 32px; font-size: 15px; }

.hero__chips {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .1); padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__chips span {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; line-height: 1;
}
.hero__chips--highlight {
  background: rgba(230, 200, 122, .22) !important;
  border-color: rgba(230, 200, 122, .55) !important;
  color: var(--gold-2) !important;
  font-weight: 600;
}
.hero__chips--highlight span { background: var(--gold-2); }

.hero__badge-mono {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #1a1a1d 0%, #0a0a0c 100%);
  color: var(--gold-2);
  font-family: var(--font-display); font-weight: 700; font-size: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; text-align: center;
  border: 1px solid rgba(230, 200, 122, .4);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid rgba(255, 255, 255, .55); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 6px;
  opacity: .8;
  z-index: 2;
}
.hero__scroll span {
  width: 2px; height: 6px; background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s var(--ease-in-out) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =========================
   SOBRE
   ========================= */
.sobre__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 72px); align-items: center;
}
.sobre__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.sobre__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.sobre__media:hover img { transform: scale(1.04); }
.sobre__sticker {
  position: absolute; bottom: 22px; right: 22px;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
  padding: 16px 20px; border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.sobre__sticker strong { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1; }
.sobre__sticker span { font-size: 12px; color: var(--ink-2); line-height: 1.3; }

.sobre__content h2 { margin: 14px 0 18px; }
.sobre__content p { color: var(--muted); margin: 0 0 28px; max-width: 520px; }

.sobre__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 20px;
}
.sobre__stats > div {
  padding: 18px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .6); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.sobre__stats strong { font-family: var(--font-display); font-size: 32px; color: var(--ink); display: block; line-height: 1; margin-bottom: 6px; }
.sobre__stats span { font-size: 12px; color: var(--muted); line-height: 1.4; display: block; }

/* =========================
   SERVIÇOS
   ========================= */
.servicos { background: linear-gradient(180deg, var(--bg) 0%, #f3ede2 100%); }
.servicos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.servico {
  background: rgba(255, 255, 255, .8); backdrop-filter: blur(8px);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  position: relative; overflow: hidden;
}
.servico::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(201, 162, 74, .12), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.servico:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.servico:hover::before { opacity: 1; }
.servico__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out);
}
.servico:hover .servico__icon { transform: scale(1.08) rotate(-4deg); background: var(--ink); color: var(--gold-2); }
.servico h3 { margin: 0 0 8px; }
.servico p { margin: 0; color: var(--muted); font-size: .95rem; }
.servico p strong { color: var(--ink); font-weight: 600; }
.servico--featured {
  background: linear-gradient(155deg, #fff 0%, var(--gold-soft) 130%);
  border-color: rgba(201, 162, 74, .25);
}
.servico--featured .servico__icon { background: var(--gold); color: var(--ink); }
/* Centralizar 7º card (sozinho na última linha do grid 3-col) */
.servicos__grid > .servico:nth-child(7):last-child { grid-column: 2; }

/* =========================
   DIFERENCIAIS
   ========================= */
.diferenciais { background: var(--bg); }
.diferenciais__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.diferencial {
  position: relative; padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.diferencial::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .5s var(--ease-out);
}
.diferencial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.diferencial:hover::before { width: 100%; }
.diferencial__num {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 16px;
  opacity: .9;
}
.diferencial h3 { margin: 0 0 8px; font-size: 1.05rem; }
.diferencial p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.diferencial p strong { color: var(--ink); font-weight: 600; }

/* =========================
   GALERIA
   ========================= */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.galeria__item {
  margin: 0; overflow: hidden; border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.galeria__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.galeria__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,14,16,.18) 100%);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.galeria__item:hover img { transform: scale(1.06); }
.galeria__item:hover::after { opacity: 1; }
.galeria__item--tall { grid-row: span 2; }
.galeria__item--wide { grid-column: span 2; }

/* =========================
   DEPOIMENTOS
   ========================= */
.depoimentos { background: linear-gradient(180deg, #f3ede2 0%, var(--bg) 100%); }
.depoimentos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.depoimento {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
}
.depoimento:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.depoimento::before {
  content: "“";
  position: absolute; top: 18px; right: 26px;
  font-family: var(--font-display); font-size: 80px; line-height: 1;
  color: var(--gold-soft); pointer-events: none;
}
.depoimento__stars {
  display: flex; gap: 4px; color: var(--gold);
}
.depoimento__stars svg { width: 16px; height: 16px; }
.depoimento blockquote {
  margin: 0; padding: 0;
  font-size: 1rem; line-height: 1.65; color: var(--ink-2);
  position: relative; z-index: 1;
}
.depoimento blockquote p { margin: 0; }
.depoimento figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line);
}
.depoimento__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 22px; font-weight: 700;
  line-height: 1; text-align: center; letter-spacing: -.02em;
  flex: 0 0 auto;
  text-transform: uppercase;
  padding-top: 17px; /* compensa cap-height — empurra o glifo pro centro óptico */
}
.depoimento figcaption strong { display: block; font-size: 14px; color: var(--ink); }
.depoimento figcaption span { display: block; font-size: 12px; color: var(--muted); }
.depoimentos__nota { text-align: center; margin: 32px 0 0; color: var(--muted); }

/* Card CTA pro Google */
.depoimento--cta {
  text-decoration: none; color: inherit;
  background: linear-gradient(155deg, #fff 0%, var(--gold-soft) 100%);
  border: 1px solid var(--gold-soft);
  align-items: flex-start;
  text-align: left;
}
.depoimento--cta::before { content: none; }
.depoimento--cta:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.depoimento__google {
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.depoimento--cta strong {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  line-height: 1.2; color: var(--ink);
}
.depoimento--cta > span {
  color: var(--ink-2); font-size: .94rem; line-height: 1.55;
}
.depoimento__cta-arrow {
  margin-top: auto;
  display: inline-flex !important; align-items: center; gap: 8px;
  color: var(--gold) !important; font-weight: 600; font-size: 14px !important;
  letter-spacing: .02em;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 162, 74, .25);
  width: 100%;
  transition: gap .3s var(--ease-out);
}
.depoimento--cta:hover .depoimento__cta-arrow { gap: 12px; }

/* =========================
   CTA
   ========================= */
.cta {
  background: linear-gradient(135deg, #0e0e10 0%, #1a1a1d 100%);
  color: #f7f3ea;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(201, 162, 74, .25), transparent 70%),
    radial-gradient(600px 300px at 100% 100%, rgba(230, 200, 122, .18), transparent 70%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta__text { max-width: 600px; }
.cta__text .eyebrow { color: var(--gold-2); }
.cta__text .eyebrow::before { background: var(--gold-2); }
.cta__text h2 { color: #fff; margin: 14px 0 12px; }
.cta__text p { color: rgba(255, 255, 255, .7); margin: 0; }
.cta .btn--primary { background: var(--gold); color: var(--ink); }
.cta .btn--primary:hover { background: #fff; }

/* =========================
   FAQ
   ========================= */
.faq { background: var(--bg); }
.faq__inner { max-width: 820px; }
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__head h2 { margin: 14px 0 12px; }
.faq__head p { color: var(--muted); margin: 0; }
.faq__head a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); transition: border-color .3s var(--ease-out); }
.faq__head a:hover { border-bottom-color: var(--gold); }

.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.faq__item[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
  transition: color .3s var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary > span { flex: 1; }
.faq__chev {
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform .35s var(--ease-out);
}
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__answer {
  padding: 0 24px 22px;
  color: var(--muted); line-height: 1.65;
  animation: faqOpen .35s var(--ease-out);
}
.faq__answer p { margin: 0; }
.faq__answer p strong { color: var(--ink); font-weight: 600; }
.faq__answer a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================
   CONTATO
   ========================= */
.contato__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: stretch;
}
.contato__info h2 { margin: 14px 0 12px; }
.contato__info > p { color: var(--muted); margin: 0 0 32px; max-width: 480px; }

.contato__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 18px; }
.contato__list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .6); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.contato__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contato__icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; flex: 0 0 auto;
}
.contato__list strong { display: block; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.contato__list span, .contato__list a { font-size: 15px; color: var(--ink-2); line-height: 1.5; display: block; transition: color .3s var(--ease-out); }
.contato__list a { border-bottom: 1px dashed transparent; padding-bottom: 1px; }
.contato__list a:hover { color: var(--gold); border-bottom-color: var(--gold-soft); }
.contato__list li > div:last-child { display: flex; flex-direction: column; gap: 4px; }
.contato__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btn--ghost-light {
  background: rgba(14, 14, 16, .04); color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost-light:hover {
  background: #fff; border-color: var(--gold); color: var(--gold);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

.contato__map {
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; height: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contato__map iframe {
  width: 100%; height: 100%; min-height: 460px; border: 0; display: block;
  filter: grayscale(.2) contrast(1.02);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: #0a0a0c; color: rgba(255, 255, 255, .7);
  padding: 36px 0;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__mono {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1d 0%, #0a0a0c 100%);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(230, 200, 122, .3);
  overflow: hidden;
  flex: 0 0 auto;
}
.footer__mono img {
  width: 78%; height: 78%;
  object-fit: contain;
  display: block;
}
.footer__brand strong { display: block; color: #fff; font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.footer__brand span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; flex: 1; }
.footer__nav a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .25s var(--ease-out); }
.footer__nav a:hover { color: var(--gold-2); }
.footer__meta { display: flex; flex-direction: column; align-items: flex-end; font-size: 12px; line-height: 1.6; gap: 8px; }
.footer__social {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-2); font-size: 13px; font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(230, 200, 122, .08);
  border: 1px solid rgba(230, 200, 122, .25);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.footer__social:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

/* =========================
   FAB WHATSAPP
   ========================= */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 32px rgba(37, 211, 102, .4), 0 4px 8px rgba(14, 14, 16, .15);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  animation: fabPulse 2.6s var(--ease-in-out) infinite;
}
.fab-wa:hover { transform: scale(1.08); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 16px 32px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .5); }
  50% { box-shadow: 0 16px 32px rgba(37, 211, 102, .4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* =========================
   PRELOADER
   ========================= */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s var(--ease-out), visibility .55s var(--ease-out);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}

.preloader__svg {
  width: 84px; height: 100px;
  color: var(--gold);
  overflow: visible;
}

.preloader__stroke {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawTooth 1.05s var(--ease-out) forwards;
}
@keyframes drawTooth {
  to { stroke-dashoffset: 0; }
}

.preloader__fill {
  fill: currentColor;
  opacity: 0;
  transform-origin: center;
  animation: fillTooth .6s var(--ease-out) .85s forwards;
}
@keyframes fillTooth {
  from { opacity: 0; }
  to   { opacity: .14; }
}

.preloader__sparkle {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: sparkleIn .55s var(--ease-out) 1.05s forwards;
}
.preloader__sparkle--2 {
  animation-delay: 1.25s;
}
@keyframes sparkleIn {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  60%  { opacity: 1; transform: scale(1.35) rotate(0deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.preloader__text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  animation: preTextIn .6s var(--ease-out) .55s forwards;
  margin-top: 4px;
}
.preloader__sub {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  animation: preTextIn .6s var(--ease-out) .75s forwards;
  margin-top: -10px;
}
@keyframes preTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .hero { padding-top: 110px; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__badge-card { justify-self: start; }
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__media { aspect-ratio: 5 / 4; max-width: 540px; margin: 0 auto; width: 100%; }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos__grid { grid-template-columns: 1fr 1fr; }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .galeria__item--wide { grid-column: span 2; }
  .galeria__item--tall { grid-row: auto; }
  .contato__grid { grid-template-columns: 1fr; }
  .contato__map { min-height: 360px; }
  .contato__map iframe { min-height: 360px; }
}

@media (max-width: 720px) {
  .section { padding: clamp(56px, 12vw, 80px) 0; }
  .section__head { margin-bottom: clamp(32px, 8vw, 48px); }

  /* NAV mobile */
  .nav__links { display: none; }
  .nav__brand-sub { display: none; }
  .nav__brand-line { font-size: 15px; }
  .nav__monogram { width: 36px; height: 36px; font-size: 19px; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .nav__cta svg { display: none; }
  .nav__inner { gap: 12px; }

  /* HERO mobile */
  .hero { padding-top: 96px; padding-bottom: 56px; min-height: auto; }
  .hero__inner { gap: 24px; }
  /* Vídeo sem zoom no mobile — viewport já tem proporção parecida com o vídeo (9:16) */
  .hero__video {
    transform: none;
    animation: none;
    object-position: center;
  }
  .hero__title { font-size: clamp(2rem, 8.6vw, 2.6rem); margin: 18px 0 14px; }
  .hero__lead { font-size: .98rem; margin-bottom: 26px; }
  .hero__actions { width: 100%; flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn--ghost {
    background: transparent; border: 0; color: rgba(255,255,255,.85);
    padding: 8px; font-size: 13px; letter-spacing: .04em;
  }
  .hero__actions .btn--ghost:hover { background: transparent; transform: none; color: var(--gold-2); }
  .hero__chips { gap: 8px; margin-top: 24px; }
  .hero__chips li { font-size: 12px; padding: 7px 12px; }
  .hero__badge-card { display: none; } /* info já está no eyebrow + nav */
  .hero__scroll { display: none; }

  /* SOBRE mobile */
  .sobre__media { max-width: 460px; aspect-ratio: 4 / 5; }
  .sobre__content h2 { font-size: clamp(1.7rem, 6.6vw, 2.1rem); }
  .sobre__stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sobre__stats > div { padding: 14px 10px; text-align: center; }
  .sobre__stats strong { font-size: 24px; }
  .sobre__stats span { font-size: 11px; }
  .sobre__sticker { padding: 10px 14px; bottom: 12px; right: 12px; gap: 10px; }
  .sobre__sticker strong { font-size: 26px; }
  .sobre__sticker span { font-size: 11px; }

  /* SERVIÇOS mobile */
  .servicos__grid { grid-template-columns: 1fr; gap: 14px; }
  .servico { padding: 24px 22px; }
  .servico__icon { width: 46px; height: 46px; margin-bottom: 14px; }

  /* DIFERENCIAIS mobile */
  .diferenciais__grid { grid-template-columns: 1fr; gap: 14px; }
  .diferencial { padding: 26px 22px; }
  .diferencial__num { font-size: 30px; margin-bottom: 12px; }

  /* DEPOIMENTOS mobile */
  .depoimentos__grid { grid-template-columns: 1fr; gap: 14px; }
  .depoimento { padding: 26px 22px; }
  .depoimento::before { font-size: 64px; top: 14px; right: 20px; }
  .depoimento--cta { padding: 26px 22px; }
  .depoimento__google { width: 48px; height: 48px; }
  .depoimento--cta strong { font-size: 1.15rem; }

  /* FAQ mobile */
  .faq__head { margin-bottom: 32px; }
  .faq__item summary { padding: 16px 18px; font-size: .94rem; gap: 12px; }
  .faq__answer { padding: 0 18px 18px; font-size: .92rem; }

  /* GALERIA mobile */
  .galeria__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .galeria__item--wide { grid-column: span 2; grid-row: span 1; }

  /* CTA */
  .cta__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta__text h2 { font-size: clamp(1.7rem, 6.6vw, 2.1rem); }
  .cta .btn { width: 100%; }

  /* CONTATO mobile */
  .contato__info h2 { font-size: clamp(1.7rem, 6.6vw, 2.1rem); }
  .contato__list li { padding: 14px; gap: 12px; }
  .contato__icon { width: 38px; height: 38px; border-radius: 10px; }
  .contato__cta .btn { width: 100%; }
  .contato__map { min-height: 320px; }
  .contato__map iframe { min-height: 320px; }

  /* FOOTER mobile */
  .footer { padding: 28px 0; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__nav { justify-content: flex-start; gap: 6px 18px; }
  .footer__meta { align-items: flex-start; gap: 4px; }
  .footer__brand { gap: 12px; }
  .footer__mono { width: 42px; height: 42px; font-size: 22px; }

  .fab-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .nav__inner { padding: 0 18px; }
  .nav__brand-line { font-size: 14px; }
  .hero__eyebrow { font-size: 11px; padding: 7px 12px; letter-spacing: .16em; }
  .hero__title { font-size: clamp(1.85rem, 9vw, 2.3rem); line-height: 1.08; }
  .hero__chips li { font-size: 11px; padding: 6px 10px; }
  .galeria__grid { grid-auto-rows: 150px; }
  .servico { padding: 22px 20px; }
  .sobre__stats strong { font-size: 22px; }
}
