@import url("tokens.css");

/* =========================================================
   JAQUE SILVA — LP v3
   Refs: luedkearquitetura.com.br + flaviatheo.com
   Photo-led, generous whitespace, restrained typography
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--js-paper); color: var(--fg-1); overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--js-ochre-soft); color: var(--fg-1); }

/* ---------- Layout primitives ---------- */
.container        { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.container-wide   { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 880px;  margin: 0 auto; padding: 0 48px; }

section { position: relative; }

:root {
  --section-y: 112px;
  --section-y-sm: 80px;
  --accent: var(--js-terracotta);
  --accent-deep: var(--js-terracotta-deep);
  --nav-h: 76px;
}
body[data-density="compact"] { --section-y: 80px; --section-y-sm: 56px; }
body[data-density="airy"]    { --section-y: 160px; --section-y-sm: 120px; }

/* =========================================================
   TYPOGRAPHY — refined, restrained
   ========================================================= */
h1.display, .display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  text-wrap: balance;
}
h1.display em, .display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
}
h1.h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--fg-1);
  text-wrap: balance;
}
h2.h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  text-wrap: balance;
}
h2.h2--uppercase, .h2--uppercase { text-transform: uppercase; }
h3.h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--fg-1);
}
h4.h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--fg-1);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }
.lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 52ch;
  text-wrap: pretty;
}
.meta {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-3);
}
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              gap var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; stroke-width: 1.6; }
.btn:hover { gap: 14px; }
.btn--primary { background: var(--accent); color: var(--js-paper); }
.btn--primary:hover { background: var(--accent-deep); }
.btn--olive { background: var(--js-olive); color: var(--js-paper); }
.btn--olive:hover { background: var(--js-olive-deep); }
.btn--outline {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-2);
}
.btn--outline:hover {
  background: var(--fg-1);
  color: var(--js-paper);
  border-color: var(--fg-1);
}
.btn--inverse { background: var(--js-paper); color: var(--fg-1); }
.btn--inverse:hover { background: var(--js-ochre-soft); }
.btn--outline-light {
  background: transparent;
  color: var(--js-paper);
  border-color: rgba(250, 246, 236, 0.6);
}
.btn--outline-light:hover {
  background: var(--js-paper);
  color: var(--fg-1);
  border-color: var(--js-paper);
}
.btn--lg { padding: 19px 34px; font-size: 12.5px; }
.btn--sm { padding: 11px 18px; font-size: 11px; }

/* ==========================================================
   NAVBAR — minimal, sticky over hero
   ========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border-1);
  transition: background-color var(--dur-base) var(--ease-out);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 132px; width: auto; display: block; margin: -28px 0; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-2);
  padding: 8px 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
}
.nav-rating .stars { color: var(--js-ochre); letter-spacing: 1px; font-size: 13px; }
.nav-rating strong { color: var(--fg-1); font-weight: 500; }

/* ==========================================================
   HERO — full-bleed photo with slider, overlay headline
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: var(--js-ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s var(--ease-out);
}
.hero-slide.is-active .hero-slide-img { transform: scale(1.0); }
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(27,26,23,0.55) 0%,
      rgba(27,26,23,0.18) 28%,
      rgba(27,26,23,0.30) 58%,
      rgba(27,26,23,0.85) 100%),
    linear-gradient(90deg,
      rgba(27,26,23,0.45) 0%,
      rgba(27,26,23,0.10) 50%,
      rgba(27,26,23,0.0) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 96px 0;
}
.hero-overlay-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--js-ochre-soft);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.hero h1 {
  color: var(--js-paper);
  max-width: 16ch;
  margin-bottom: 24px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero h1 em {
  color: var(--js-ochre-soft);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 246, 236, 0.94);
  max-width: 48ch;
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.40);
}
.hero-eyebrow { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40); }
.hero-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-tag {
  position: absolute;
  right: 48px;
  bottom: 32px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.78);
  z-index: 4;
  padding: 8px 14px;
  background: rgba(27, 26, 23, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hero slider dots */
.hero-dots {
  position: absolute;
  left: 48px;
  bottom: 32px;
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(250, 246, 236, 0.32);
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out);
}
.hero-dot.is-active {
  background: var(--js-paper);
  width: 48px;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.5);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: rgba(250, 246, 236, 0.4);
  animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================
   INTRO — 2-col after hero (Luedke-style)
   ========================================================== */
.intro {
  padding: var(--section-y-sm) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.intro h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.20;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  text-wrap: balance;
  max-width: 22ch;
}
.intro-body p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--fg-2);
  margin-bottom: 14px;
  max-width: 56ch;
}

/* ==========================================================
   GALLERY — masonry-ish 3-col with filter chips
   ========================================================== */
.gallery {
  padding: var(--section-y) 0 var(--section-y);
  border-top: 1px solid var(--border-1);
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.gallery-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  text-wrap: balance;
  max-width: 18ch;
}
.gallery-head .lede { max-width: 52ch; font-size: 15px; }

/* Filtros em 2 linhas (Imóvel + Ambiente) */
.filter-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.filter-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  min-width: 80px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 9px 18px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.chip:hover { color: var(--fg-1); border-color: var(--fg-1); }
.chip.is-active {
  background: var(--fg-1);
  color: var(--js-paper);
  border-color: var(--fg-1);
}
.filter-count {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.filter-count strong { color: var(--fg-1); font-weight: 500; }

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
.gallery-item {
  break-inside: avoid;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--js-linen);
  cursor: zoom-in;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform 1.8s var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.88); }
.gallery-item-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(27, 26, 23, 0.85), transparent 100%);
  color: var(--js-paper);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.gallery-item-caption strong { font-weight: 500; letter-spacing: 0.18em; }
.gallery-item-caption span { font-size: 10px; opacity: 0.75; letter-spacing: 0.20em; }
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }
.gallery-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--fg-3);
  font-size: 14px;
}

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
  background: var(--js-paper);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 36s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   PROCESS — slim, on cream
   ========================================================== */
.process {
  padding: var(--section-y) 0;
  background: var(--js-cream);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.process-head .eyebrow { margin-bottom: 16px; }
.process-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  max-width: 22ch;
  text-wrap: balance;
}
.process-list { list-style: none; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--border-2);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border-2); }
.process-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--accent);
}
.process-body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.008em;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.process-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 60ch;
}
.process-aside {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: right;
  padding-top: 8px;
}

/* ==========================================================
   DIFFERENTIAL — quote + pillars
   ========================================================== */
.differential { padding: var(--section-y) 0; }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.diff-copy h2 { margin-bottom: 24px; max-width: 20ch; }
.diff-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin-bottom: 16px;
  max-width: 56ch;
}
.diff-quote {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--js-cream);
  border-left: 2px solid var(--accent);
}
.diff-quote blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  max-width: 40ch;
}
.diff-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.diff-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--js-linen);
  box-shadow: var(--shadow-2);
}
.diff-photo img { width: 100%; height: 100%; object-fit: cover; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--border-1);
}
.pillar {
  padding: 32px 24px;
  border-right: 1px solid var(--border-1);
}
.pillar:last-child { border-right: 0; padding-right: 0; }
.pillar:first-child { padding-left: 0; }
.pillar-icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: 20px; }
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--fg-1);
}
.pillar p { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); }

/* ==========================================================
   ABOUT — Jaque's story, on linen
   ========================================================== */
.about {
  padding: var(--section-y) 0;
  background: var(--js-linen);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-photos > * {
  background: var(--js-cream);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photos > *.large {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.about-photos img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 { margin-bottom: 28px; max-width: 22ch; }
.about-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-1);
  margin-bottom: 16px;
  max-width: 54ch;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  color: var(--accent);
}
.about-credentials {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-2);
  justify-content: start;
}
.about-credentials strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.about-credentials span {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 6px;
  display: block;
}

/* ==========================================================
   STATS STRIP — slim numbers between sections
   ========================================================== */
.stats {
  padding: 56px 0;
  background: var(--js-ink);
  color: var(--js-paper);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: baseline;
}
.stats-grid > * + * {
  border-left: 1px solid rgba(250, 246, 236, 0.16);
  padding-left: 32px;
}
.stat-big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--js-paper);
  display: block;
}
.stat-big sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--js-ochre-soft);
  font-weight: 400;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--js-ochre-soft);
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { padding: var(--section-y) 0; }
.t-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.t-head h2 { max-width: 22ch; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.t-card {
  background: var(--js-paper);
  border: 1px solid var(--border-1);
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-card .stars { color: var(--js-ochre); font-size: 13px; letter-spacing: 2px; }
.t-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-2);
  flex: 1;
  position: relative;
}
.t-card-foot { border-top: 1px solid var(--border-1); padding-top: 14px; }
.t-card-foot strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  color: var(--fg-1);
}
.t-card-foot span {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 4px;
  display: block;
}
.t-cta-row { text-align: center; }

/* ==========================================================
   VIDEO TESTIMONIALS
   ========================================================== */
.video-testimonials {
  padding: var(--section-y) 0;
  background: var(--js-cream);
}
.v-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.v-head h2 { max-width: 22ch; }
.v-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v-tile {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  position: relative;
  aspect-ratio: 9/14;
  background: var(--js-linen);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out);
  font-family: inherit;
  color: inherit;
}
.v-tile:hover { transform: translateY(-2px); }
.v-tile .v-thumb {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transition: transform var(--dur-slow) var(--ease-out);
}
.v-tile:hover .v-thumb { transform: scale(1.04); }
.v-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27, 26, 23, 0.78), transparent 55%);
}
.v-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(250, 246, 236, 0.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  color: var(--fg-1);
}
.v-play svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.v-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 18px;
  z-index: 2;
  color: var(--js-paper);
}
.v-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.v-meta span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--js-ochre-soft);
  margin-top: 4px;
}

/* ==========================================================
   EXTRAS
   ========================================================== */
.extras { padding: var(--section-y) 0; }
.extras-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.extras-head h2 { max-width: 22ch; }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
}
.extra {
  border-bottom: 1px solid var(--border-1);
  border-right: 1px solid var(--border-1);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.extra:last-child { border-right: 0; }
.extra-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
}
.extra h3 { font-size: 20px; }
.extra p { font-size: 14px; line-height: 1.65; color: var(--fg-2); }
.extra .price {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-top: 12px;
  border-top: 1px solid var(--border-1);
}
.extra .price strong { color: var(--fg-1); font-weight: 400; }

/* ==========================================================
   FAQ — on cream
   ========================================================== */
.faq {
  padding: var(--section-y) 0;
  background: var(--js-cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.faq-grid h2 { max-width: 16ch; }
.faq-list { display: flex; flex-direction: column; list-style: none; padding: 0; margin: 0; }
.faq-item { border-top: 1px solid var(--border-2); }
.faq-item:last-child { border-bottom: 1px solid var(--border-2); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-q:hover { color: var(--accent); }
.faq-q-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--fg-1);
}
.faq-toggle {
  width: 30px; height: 30px;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--fg-1);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.faq-item.open .faq-toggle {
  background: var(--fg-1);
  color: var(--js-paper);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 60ch;
}

/* ==========================================================
   FINAL CTA — full-bleed photo background
   ========================================================== */
.final-cta {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: var(--js-ink);
  color: var(--js-paper);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: grayscale(0.4) contrast(0.95);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,26,23,0.55), rgba(27,26,23,0.7));
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta h2 {
  color: var(--js-paper);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.018em;
  line-height: 1.06;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--js-ochre-soft);
  letter-spacing: -0.02em;
}
.final-cta p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 246, 236, 0.82);
  max-width: 56ch;
  margin: 0 auto 36px;
}
.final-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-sign {
  margin-top: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--js-ochre-soft);
}

/* ==========================================================
   FOOTER — slim
   ========================================================== */
.footer {
  background: var(--js-ink);
  color: var(--js-paper);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(250, 246, 236, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand img { height: 48px; margin-left: -8px; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--js-ochre-soft);
  margin-top: 20px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--js-ochre-soft);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col a, .footer-col span, .footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(250, 246, 236, 0.7);
  margin-bottom: 8px;
  line-height: 1.55;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--js-paper); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 236, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.45);
}

/* ==========================================================
   FLOATING WHATSAPP
   ========================================================== */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  background: var(--js-olive);
  color: var(--js-paper);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  box-shadow: var(--shadow-3);
  transition: background-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.float-wa:hover { background: var(--js-olive-deep); transform: translateY(-2px); }
.float-wa svg { width: 20px; height: 20px; }
.float-wa span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==========================================================
   RESPONSIVE — mobile
   ========================================================== */
@media (max-width: 920px) {
  .container, .container-wide, .container-narrow { padding: 0 24px; }
  :root { --nav-h: 60px; }
  .nav-inner { height: 60px; }
  .nav-links, .nav-rating { display: none; }
  .nav-right .btn--sm { padding: 9px 14px; }
  .nav-logo-img { height: 44px; }

  .hero { min-height: 560px; }
  .hero-overlay { padding-bottom: 80px; }
  .hero-overlay-inner { padding: 0 24px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .hero-tag { right: 24px; bottom: 24px; }
  .hero-dots { left: 24px; bottom: 24px; }
  .hero-scroll { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-head, .t-head, .v-head, .extras-head, .process-head { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { column-count: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
  .filter-label { min-width: auto; width: 100%; margin-bottom: -4px; }
  .filter-count { margin-left: 0; width: 100%; }
  .tour-3d-grid { grid-template-columns: 1fr; gap: 40px; }
  .tour-3d-video { max-width: 260px; margin: 0 auto; }
  .lightbox { padding: 60px 16px; }
  .lightbox-nav { width: 44px; height: 44px; }
  .video-modal-inner { max-width: 100%; }

  .process-step { grid-template-columns: 52px 1fr; gap: 16px; padding: 22px 0; }
  .process-num { font-size: 30px; }
  .process-aside { grid-column: 1 / -1; padding-left: 68px; text-align: left; }

  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
  .pillar { padding: 24px 16px; border-right: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
  .pillar:nth-child(2n) { border-right: 0; padding-right: 0; }
  .pillar:nth-child(odd) { padding-left: 0; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-grid > * + * { border-left: 0; padding-left: 0; }
  .stats-grid > *:nth-child(even) { border-left: 1px solid rgba(250, 246, 236, 0.16); padding-left: 16px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .t-grid { grid-template-columns: 1fr; }
  .v-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: 1fr; }
  .extra { border-right: 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  .final-cta { padding: 96px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; }

  .float-wa span { display: none; }
  .float-wa { padding: 14px; right: 16px; bottom: 16px; }
}

/* ==========================================================
   RESPONSIVE — smartphone (até 640px)
   ========================================================== */
@media (max-width: 640px) {
  .container, .container-wide, .container-narrow { padding: 0 16px; }
  :root { --nav-h: 56px; --section-y: 72px; --section-y-sm: 56px; }

  /* Nav */
  .nav-inner { height: 56px; padding: 0; }
  .nav-logo-img { height: 84px; margin: -14px 0 -14px -8px; }
  .nav-right .btn--sm { padding: 8px 12px; font-size: 11.5px; }

  /* Hero */
  .hero { min-height: 480px; max-height: none; height: 100svh; }
  .hero-overlay { padding-bottom: 60px; }
  .hero-overlay-inner { padding: 0 18px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 14px; gap: 10px; }
  .hero-eyebrow::before { width: 24px; }
  .hero h1 { font-size: clamp(28px, 9vw, 38px); margin-bottom: 18px; line-height: 1.06; }
  .hero-lede { font-size: 14.5px; line-height: 1.55; margin-bottom: 24px; }
  .hero-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-row .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; }
  .hero-dots { left: 18px; bottom: 18px; }
  .hero-dot { width: 22px; }
  .hero-dot.is-active { width: 38px; }

  /* Intro */
  .intro { padding: 56px 0; }
  .intro-grid { gap: 24px; }
  .intro h2 { font-size: clamp(22px, 6.5vw, 30px); max-width: 100%; }
  .intro-body p { font-size: 15px; line-height: 1.65; }

  /* Section heads */
  .h2 { font-size: clamp(24px, 7vw, 34px); }
  .gallery-head h2, .t-head h2, .v-head h2, .extras-head h2, .process-head h2, .tour-3d-copy h2 { font-size: clamp(24px, 7vw, 32px); }
  .lede { font-size: 14.5px; line-height: 1.6; }

  /* Galeria */
  .gallery { padding: 56px 0; }
  .gallery-head { margin-bottom: 26px; }
  .filter-rows { margin-bottom: 28px; gap: 12px; }
  .chip { padding: 8px 14px; font-size: 10.5px; }

  /* Marquee */
  .marquee-item { font-size: 13px; padding: 0 24px; }

  /* Process */
  .process { padding: 64px 0; }
  .process-step { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px 0; }
  .process-num { font-size: 26px; }
  .process-body h4 { font-size: 17px; }
  .process-body p { font-size: 14.5px; line-height: 1.6; }
  .process-aside { font-size: 11px; padding-left: 58px; }

  /* Tour 3D */
  .tour-3d { padding: 56px 0; }
  .tour-3d-grid { gap: 32px; }
  .tour-3d-copy p { font-size: 15px; }
  .tour-3d-video { max-width: 240px; }
  .tour-3d-tag { font-size: 10px; padding: 8px 14px; margin-top: 22px; }

  /* Differential */
  .differential { padding: 64px 0; }
  .diff-grid { gap: 32px; }
  .diff-copy p { font-size: 15px; line-height: 1.65; }
  .diff-photo img { height: auto; max-height: 420px; object-fit: cover; }
  .pillars { margin-top: 40px; grid-template-columns: 1fr; }
  .pillar { padding: 24px 0; border: 0; border-top: 1px solid var(--border-1); }
  .pillar:first-child { border-top: 0; }
  .pillar:nth-child(2n) { border-right: 0; }
  .pillar:nth-child(odd) { padding-left: 0; }
  .pillar h4 { font-size: 17px; }
  .pillar p { font-size: 14px; }

  /* About */
  .about { padding: 64px 0; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .about-photos .large { grid-column: 1 / -1; }
  .about-body p { font-size: 15px; line-height: 1.7; }
  .about-credentials { gap: 14px; }
  .about-credentials > div strong { font-size: 16px; }
  .about-credentials > div span { font-size: 11px; }

  /* Stats */
  .stats { padding: 48px 0; }
  .stats-grid { gap: 16px; }
  .stat-big { font-size: 36px; }
  .stat-label { font-size: 10.5px; }

  /* Testimonials */
  .testimonials { padding: 64px 0; }
  .t-card { padding: 24px 22px; }
  .t-text { font-size: 14.5px; line-height: 1.6; }
  .t-card-foot { margin-top: 18px; padding-top: 16px; }
  .t-av { width: 32px; height: 32px; font-size: 12px; }
  .t-card-foot strong { font-size: 13px; }
  .t-card-foot span { font-size: 11px; }

  /* Video testimonials */
  .video-testimonials { padding: 64px 0; }
  .v-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v-tile { aspect-ratio: 9/12; }
  .v-meta { padding: 12px 12px 14px; }
  .v-meta strong { font-size: 13px; }
  .v-meta span { font-size: 9px; letter-spacing: 0.14em; }
  .v-play { width: 44px; height: 44px; }
  .v-badge { font-size: 9px; padding: 4px 10px; }

  /* Extras */
  .extras { padding: 64px 0; }
  .extra { padding: 28px 22px; }
  .extra-num { font-size: 11px; }
  .extra .h3 { font-size: 20px; }
  .extra p { font-size: 14.5px; line-height: 1.6; }
  .price { font-size: 13px; }

  /* FAQ */
  .faq { padding: 64px 0; }
  .faq-grid { gap: 26px; }
  .faq-q { padding: 18px 0; }
  .faq-q-text { font-size: 15px; }
  .faq-toggle { font-size: 22px; }
  .faq-a-inner { font-size: 14px; padding-bottom: 18px; }

  /* Final CTA */
  .final-cta { padding: 56px 0; }
  .final-cta h2 { font-size: clamp(26px, 8vw, 38px); }
  .final-cta p { font-size: 15px; }
  .final-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta-row .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { width: 96px !important; height: 96px !important; }
  .footer-col h5 { font-size: 11px; margin-bottom: 12px; }
  .footer-col p, .footer-col a { font-size: 13.5px; }
  .footer-bottom { font-size: 11px; }

  /* Lightbox + modal */
  .lightbox { padding: 56px 12px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
  .lightbox-caption { font-size: 10.5px; padding: 8px 14px; bottom: 16px; }
  .video-modal { padding: 24px 12px; }
  .video-modal-close { top: 12px; right: 12px; }
}

/* ==========================================================
   RESPONSIVE — smartphone pequeno (até 380px)
   ========================================================== */
@media (max-width: 380px) {
  .container, .container-wide, .container-narrow { padding: 0 14px; }
  .nav-logo-img { height: 72px; }
  .nav-right .btn--sm { padding: 7px 10px; font-size: 11px; }
  .hero h1 { font-size: 28px; }
  .h2 { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-big { font-size: 32px; }
  .v-grid { grid-template-columns: 1fr; }
  .v-tile { aspect-ratio: 9/14; max-width: 280px; margin: 0 auto; }
  .float-wa { padding: 12px; right: 14px; bottom: 14px; }
}

/* ==========================================================
   LIGHTBOX (galeria)
   ========================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 8, 6, 0.95);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 80px;
}
.lightbox-img {
  max-width: 100%; max-height: 100%;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--js-paper); color: var(--fg-1);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-close:hover { background: var(--js-ochre-soft); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(250, 246, 236, 0.12);
  backdrop-filter: blur(8px);
  color: var(--js-paper);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-nav:hover { background: rgba(250, 246, 236, 0.28); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-caption {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: var(--js-paper);
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(27, 26, 23, 0.75);
  padding: 10px 18px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ==========================================================
   TOUR 3D
   ========================================================== */
.tour-3d {
  padding: var(--section-y-sm) 0;
  background: var(--js-linen);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.tour-3d-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.tour-3d-copy h2 { max-width: 22ch; }
.tour-3d-copy p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--fg-2);
  margin-top: 18px;
  max-width: 56ch;
}
.tour-3d-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--js-paper);
  border: 1px solid var(--border-2);
  color: var(--fg-2);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 28px;
}
.tour-3d-tag svg { color: var(--accent); }
.tour-3d-video {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.tour-3d-video-el {
  display: block;
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--js-ink);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

/* ==========================================================
   TESTIMONIALS — 4 cards 2x2 com ler mais + avatar
   ========================================================== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--js-paper);
  border: 1px solid var(--border-1);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.t-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--fg-1);
  margin-top: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.t-card.is-expanded .t-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.t-text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--js-paper));
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.t-card.is-expanded .t-text::after { opacity: 0; }
.t-more {
  background: transparent;
  border: 0;
  padding: 12px 0 0;
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast) var(--ease-out);
}
.t-more::after { content: '↓'; transition: transform var(--dur-base) var(--ease-out); }
.t-card.is-expanded .t-more::after { transform: rotate(180deg); }
.t-more:hover { color: var(--fg-1); }
.t-card-foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-av {
  width: 36px; height: 36px;
  background: var(--js-linen);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-card-foot strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg-1); }
.t-card-foot span { display: block; font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ==========================================================
   VIDEO TESTIMONIALS — badge "Depoimento" + outline destaque
   ========================================================== */
.v-tile { position: relative; }
.v-tile--testimonial { outline: 2px solid var(--accent); outline-offset: -2px; }
.v-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--js-paper);
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
}

/* ==========================================================
   VIDEO MODAL
   ========================================================== */
.video-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 8, 6, 0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.video-modal-inner {
  position: relative;
  width: 100%; max-width: 720px;
  background: var(--js-ink);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.video-modal video {
  width: 100%; max-height: 80vh;
  display: block;
}
.video-modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--js-paper);
  color: var(--fg-1);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background var(--dur-fast) var(--ease-out);
}
.video-modal-close:hover { background: var(--js-ochre-soft); }
.video-modal-caption {
  color: var(--js-paper);
  text-align: center;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ==========================================================
   MOBILE OVERRIDES (no fim do arquivo pra vencer a ordem)
   ========================================================== */
@media (max-width: 920px) {
  /* NAV — logo centralizada, sem WhatsApp no header */
  .nav-inner { justify-content: center; gap: 0; padding: 0; }
  .nav-links { display: none; }
  .nav-rating { display: none; }
  .nav-right { display: none !important; }
  .nav-logo { flex: 0 0 auto; }
  .nav-logo-img { height: 96px !important; margin: -16px 0 !important; }

  /* HERO — tela inteira no mobile, texto centralizado */
  .hero { height: 100svh; min-height: 100svh; max-height: none; }
  .hero-overlay { padding: 120px 0 80px; }
  .hero-overlay-inner { padding: 0 24px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-row { justify-content: center; }
  /* Esconde o botão secundário "Ver projetos" no mobile */
  .hero-row .btn--outline-light { display: none; }
  .hero-row .btn--primary { width: 100%; justify-content: center; }
  .hero-tag { display: none; }
  .hero-dots { left: 50%; transform: translateX(-50%); right: auto; }

  /* SECTION HEADS — sempre centralizadas */
  .gallery-head, .t-head, .v-head, .extras-head, .process-head { grid-template-columns: 1fr !important; gap: 16px; text-align: center; justify-items: center; }
  /* Mata todos os max-width: Xch em títulos/lede pra evitar bloco encostado à esquerda */
  .gallery-head h2, .t-head h2, .v-head h2, .extras-head h2, .process-head h2,
  .tour-3d-copy h2, .diff-copy h2, .intro h2, .h2 {
    max-width: 100% !important; margin-left: auto; margin-right: auto;
  }
  .gallery-head .lede, .t-head .lede, .v-head .lede, .extras-head .lede, .process-head .lede,
  .tour-3d-copy p, .diff-copy p {
    max-width: 100% !important; margin-left: auto; margin-right: auto;
  }
  .intro { text-align: center; }
  .intro-grid { grid-template-columns: 1fr !important; text-align: center; }

  /* GRIDS — todos 1 coluna no mobile */
  .t-grid { grid-template-columns: 1fr !important; }
  .v-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .extras-grid { grid-template-columns: 1fr !important; }
  .pillars { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .diff-grid { grid-template-columns: 1fr !important; gap: 36px; text-align: center; justify-items: center; }
  .diff-copy h2, .diff-copy p { max-width: 100%; }

  /* CARDS centralizados (testimonials, extras, pillars) */
  .t-card { text-align: center; align-items: center; padding: 28px 22px; }
  .t-card .stars { justify-content: center; }
  .t-card-foot { text-align: center; }

  .extra { text-align: center; padding: 32px 22px; border-right: 0 !important; border-bottom: 1px solid var(--border-1); align-items: center; display: flex; flex-direction: column; }
  .extras-grid > .extra:last-child { border-bottom: 0; }

  .pillar { text-align: center; padding: 24px 0; border: 0 !important; border-top: 1px solid var(--border-1) !important; }
  .pillar:first-child { border-top: 0 !important; }
  .pillar-icon { margin-left: auto !important; margin-right: auto !important; }

  /* TESTIMONIALS — remove avatar (FD/VN/JM), centraliza nome + meta */
  .t-card-foot { display: block !important; text-align: center; }
  .t-av { display: none !important; }
  .t-card-foot > div { display: block; }

  /* PROCESS — stack vertical, step-num em cima centralizado */
  .process-step { grid-template-columns: 1fr !important; gap: 12px; padding: 28px 0; text-align: center; justify-items: center; }
  .process-num { font-size: 30px; }
  .process-body h4 { font-size: 19px; }
  .process-body p { max-width: 60ch; margin-left: auto; margin-right: auto; }
  .process-aside { grid-column: 1 !important; padding-left: 0 !important; text-align: center !important; }

  /* TOUR 3D — texto acima do vídeo */
  .tour-3d-grid { grid-template-columns: 1fr !important; gap: 32px; text-align: center; }
  .tour-3d-copy { order: 1; }
  .tour-3d-copy h2, .tour-3d-copy p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .tour-3d-video { order: 2; max-width: 320px; margin: 0 auto !important; }
  .tour-3d-tag { margin-left: auto; margin-right: auto; }

  /* GALERIA: filtros mais limpos */
  .filter-rows { align-items: center; }
  .filter-row { flex-direction: column; align-items: center; gap: 8px; }
  .filter-label { text-align: center; min-width: 0 !important; width: auto !important; }
  .filter-count { width: auto !important; margin-left: 0 !important; }

  /* FAQ centralizado (eyebrow + título), perguntas continuam à esquerda */
  .faq-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .faq-grid > div:first-child { text-align: center; }
  .faq-grid h2 { max-width: 100% !important; text-align: center; margin-left: auto; margin-right: auto; }
  .faq-grid .eyebrow { display: inline-block; }

  /* ABOUT centralizado */
  .about-body { text-align: center; }
  .about-body h2 { max-width: 100% !important; text-align: center; margin-left: auto; margin-right: auto; }
  .about-body .eyebrow { display: inline-block; }
  .about-body p { text-align: left; max-width: 100%; margin-left: auto; margin-right: auto; }
  /* Tira o drop-cap no mobile (faz a copy ficar enviesada) */
  .about-body p:first-of-type::first-letter {
    font-size: inherit;
    float: none;
    margin: 0;
    color: inherit;
  }
  .about-credentials { justify-content: center; }

  /* FOOTER centralizado */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; text-align: center; justify-items: center; }
  .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand img { margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* === SMARTPHONE específicos === */
@media (max-width: 640px) {
  .nav-logo-img { height: 88px !important; margin: -14px 0 !important; }
  /* Hero ocupa a tela inteira no smartphone */
  .hero { height: 100svh; min-height: 100svh; }
  .hero-overlay { padding: 110px 0 70px; }
  .hero-overlay-inner { padding: 0 20px; }
  .hero-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-row .btn { padding: 15px 18px; font-size: 14px; }

  .gallery-head h2, .t-head h2, .v-head h2, .extras-head h2, .process-head h2, .tour-3d-copy h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* === SMARTPHONE PEQUENO === */
@media (max-width: 380px) {
  .nav-logo-img { height: 76px !important; }
}


/* =========================================================
   LEAD MODAL — popup estilo conversa (captura de leads)
   ========================================================= */
.jsl-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(27, 26, 23, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: jslFade .22s ease;
}
@keyframes jslFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes jslPop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }

.jsl-card {
  position: relative;
  width: 100%; max-width: 384px;
  background: var(--js-paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px -18px rgba(27, 26, 23, .55), 0 0 0 1px rgba(27, 26, 23, .05);
  animation: jslPop .26s cubic-bezier(.2, .9, .3, 1);
}

.jsl-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 30px; height: 30px; line-height: 1;
  font-size: 22px; color: var(--js-paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .14);
  transition: background .15s;
}
.jsl-close:hover { background: rgba(255, 255, 255, .28); }

.jsl-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: var(--js-olive);
  color: var(--js-paper);
}
.jsl-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2px solid rgba(255, 255, 255, .65);
  flex: 0 0 auto;
}
.jsl-head-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.jsl-head-txt strong { font-family: var(--font-body); font-weight: 600; font-size: 15px; }
.jsl-online {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255, 255, 255, .82);
}
.jsl-online i { width: 7px; height: 7px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 2px rgba(37, 211, 102, .3); }

.jsl-body { padding: 20px; }
.jsl-bubble {
  background: var(--js-linen);
  color: var(--fg-2);
  font-size: 14.5px; line-height: 1.5;
  padding: 13px 15px;
  border-radius: 4px 16px 16px 16px;
  margin-bottom: 18px;
}
.jsl-bubble strong { color: var(--fg-1); font-weight: 600; }

.jsl-form { display: flex; flex-direction: column; gap: 12px; }
.jsl-field { display: flex; flex-direction: column; gap: 5px; }
.jsl-field > span {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--fg-3);
}
.jsl-field input {
  padding: 12px 14px;
  border: 1.5px solid var(--js-stone-soft);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--fg-1); background: var(--js-white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.jsl-field input::placeholder { color: var(--js-stone-soft); }
.jsl-field input:focus {
  border-color: var(--js-olive);
  box-shadow: 0 0 0 3px rgba(103, 103, 59, .15);
}

.jsl-err { font-size: 13px; color: #B6552A; margin-top: -2px; }

.jsl-submit {
  margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 18px;
  background: #25D366; color: #fff;
  border-radius: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px;
  transition: background .15s, transform .08s;
}
.jsl-submit:hover { background: #1FB855; }
.jsl-submit:active { transform: translateY(1px); }
.jsl-submit:disabled { opacity: .65; cursor: wait; }

.jsl-foot {
  margin: 14px 0 0;
  font-size: 11.5px; line-height: 1.5; text-align: center;
  color: var(--js-stone);
}

@media (max-width: 480px) {
  .jsl-overlay { padding: 0; align-items: flex-end; }
  .jsl-card {
    max-width: 100%;
    border-radius: 22px 22px 0 0;
    animation: jslSheet .28s cubic-bezier(.2, .9, .3, 1);
  }
  @keyframes jslSheet { from { transform: translateY(100%); } to { transform: none; } }
}
