/* B&L ENGENHARIA — Site styles */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-feature-settings: "ss01", "ss02", "cv11"; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

img, svg { display: block; max-width: 100%; }

/* ── Layout primitives ─────────────────────────────────── */
.wrap { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { width: 100%; max-width: 1560px; margin: 0 auto; padding: 0 32px; }
.rule { height: 1px; background: var(--bl-line); }
.rule-strong { height: 1px; background: var(--bl-ink); opacity: .9; }

/* Section labels — small caps mono, like architectural plan labels */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bl-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.on-dark { color: var(--bl-cyan); }

/* Editorial display heading */
.display {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.display .italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(248,246,242,0.78);
  border-bottom: 1px solid rgba(14,27,44,0.08);
}
.nav.on-dark { background: rgba(14,27,44,0.55); border-bottom-color: rgba(255,255,255,0.08); color: #fff; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo svg { flex-shrink: 0; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-word { font-family: var(--ff-display); font-weight: 800; font-size: 20px; letter-spacing: -0.015em; }
.nav-tagline { font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: .22em; font-weight: 500; color: var(--bl-mute); margin-top: 6px; }
.nav.on-dark .nav-tagline { color: rgba(255,255,255,0.6); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; opacity: .85; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
.nav-links a.is-active { opacity: 1; color: var(--bl-ink); }
.nav-links a.is-active::after {
  content: "";
  display: block;
  height: 1px; margin-top: 5px;
  background: var(--bl-blue);
}
.nav.on-dark .nav-links a.is-active { color: #fff; }
.nav.on-dark .nav-links a.is-active::after { background: var(--bl-cyan); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--bl-ink); color: var(--bl-paper);
  font-size: 13px; font-weight: 600; letter-spacing: -0.005em;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--bl-blue); }
.nav.on-dark .nav-cta { background: var(--bl-paper); color: var(--bl-ink); }
.nav.on-dark .nav-cta:hover { background: var(--bl-cyan); color: var(--bl-ink); }

/* ── MOBILE NAV / HAMBURGER ───────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none; border: none; cursor: pointer;
  margin-left: 4px;
}
.nav-burger-bar {
  display: block; height: 2px; width: 100%;
  background: var(--bl-ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav.on-dark .nav-burger-bar { background: #fff; }
.nav.is-open .nav-burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-burger-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(12, 16, 22, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: var(--bl-paper);
  padding: 96px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: -24px 0 60px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.is-open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-links { display: flex; flex-direction: column; }
.nav-drawer-links a {
  font-size: 20px; font-weight: 500; color: var(--bl-ink);
  padding: 16px 0; border-bottom: 1px solid var(--bl-line);
}
.nav-drawer-links a.is-active { color: var(--bl-blue); }
.nav-drawer-cta {
  margin-top: 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 22px;
  background: var(--bl-ink); color: var(--bl-paper);
  font-size: 15px; font-weight: 600; border-radius: 4px;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bl-ink);
  color: var(--bl-paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 152px;
  padding-bottom: 56px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: -10%; top: 10%;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, oklch(50% 0.18 235 / 0.35), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-meta {
  position: absolute;
  top: 100px; left: 32px; right: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bl-cyan); display: inline-block; margin-right: 8px; box-shadow: 0 0 12px var(--bl-cyan); }
.hero-content { position: relative; z-index: 2; }
.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(48px, 7.4vw, 116px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero-headline .italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--bl-cyan); }

/* ── HERO VIDEO PLAYER ─────────────────────────────────── */
.hero-video { position: relative; width: 100%; }
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.16);
  background: oklch(14% 0.03 240);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.hero-video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Cover overlay — only visible before first play */
.hero-video-cover {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity .45s ease;
}
.hero-video-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-cover-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(10,18,32,0.10), rgba(10,18,32,0.55) 70%, rgba(10,18,32,0.85) 100%),
    linear-gradient(180deg, rgba(10,18,32,0.35) 0%, rgba(10,18,32,0.15) 35%, rgba(10,18,32,0.7) 100%);
}
.hero-video-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0 1px,
    transparent 1px 18px
  );
  mask-image: radial-gradient(ellipse at 30% 70%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 70%, black, transparent 70%);
}
.hero-video-meta {
  position: absolute; top: 16px; left: 18px; right: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
}
.hero-video-tag { display: inline-flex; align-items: center; gap: 8px; }
.hero-video-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--bl-fire); box-shadow: 0 0 10px var(--bl-fire);
}

/* Technical corner ticks on cover */
.hero-video-cover-corner {
  position: absolute; width: 22px; height: 22px;
  color: rgba(255,255,255,0.55);
}
.hero-video-cover-corner i {
  position: absolute; background: currentColor;
}
.hero-video-cover-corner i:nth-child(1) { width: 100%; height: 1px; }
.hero-video-cover-corner i:nth-child(2) { width: 1px; height: 100%; }
.hero-video-cover-corner.tl { top: 10px; left: 10px; }
.hero-video-cover-corner.tl i:nth-child(1) { top: 0; left: 0; }
.hero-video-cover-corner.tl i:nth-child(2) { top: 0; left: 0; }
.hero-video-cover-corner.tr { top: 10px; right: 10px; }
.hero-video-cover-corner.tr i:nth-child(1) { top: 0; right: 0; }
.hero-video-cover-corner.tr i:nth-child(2) { top: 0; right: 0; }
.hero-video-cover-corner.bl { bottom: 10px; left: 10px; }
.hero-video-cover-corner.bl i:nth-child(1) { bottom: 0; left: 0; }
.hero-video-cover-corner.bl i:nth-child(2) { bottom: 0; left: 0; }
.hero-video-cover-corner.br { bottom: 10px; right: 10px; }
.hero-video-cover-corner.br i:nth-child(1) { bottom: 0; right: 0; }
.hero-video-cover-corner.br i:nth-child(2) { bottom: 0; right: 0; }

.hero-video-caption {
  position: absolute; bottom: 18px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.hero-video-caption-lhs { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hero-video-eyebrow {
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.hero-video-label {
  font-family: var(--ff-display); font-weight: 500; font-size: 22px;
  letter-spacing: -0.015em; color: var(--bl-paper); line-height: 1.15;
}
.hero-video-label .italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--bl-cyan); }
.hero-video-hint {
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bl-cyan);
  white-space: nowrap;
}

/* Center play / pause button */
.hero-video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bl-paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, opacity .3s ease;
  z-index: 3;
  cursor: pointer;
}
.hero-video-play svg { transform: translateX(3px); }
.hero-video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--bl-cyan); color: var(--bl-ink);
  border-color: var(--bl-cyan);
}
.hero-video-play.is-hidden { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.85); }

.hero-video-frame.is-started .hero-video-cover { opacity: 0; }

/* Bottom controls bar */
.hero-video-controls {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(10,18,32,0.85));
  color: var(--bl-paper);
  z-index: 4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.hero-video-controls.is-visible { opacity: 1; transform: translateY(0); }
.hv-btn {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--bl-paper);
  cursor: pointer; padding: 0;
  opacity: 0.85; transition: opacity .2s, color .2s;
}
.hv-btn:hover { opacity: 1; color: var(--bl-cyan); }
.hv-time {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em;
  color: rgba(255,255,255,0.8); min-width: 44px; text-align: center;
}
.hv-time-total { color: rgba(255,255,255,0.55); }
.hv-track {
  position: relative; flex: 1; height: 22px;
  display: flex; align-items: center;
  cursor: pointer;
}
.hv-track::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: rgba(255,255,255,0.18);
  transform: translateY(-50%);
}
.hv-track-fill {
  position: absolute; left: 0; top: 50%;
  height: 2px; background: var(--bl-cyan);
  transform: translateY(-50%);
  transition: width .15s linear;
}
.hv-track-thumb {
  position: absolute; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bl-cyan);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(79,182,221,0.15);
}
.hero-foot { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 48px; align-items: flex-end; margin-top: 72px; }
.hero-foot--simple { grid-template-columns: 1.4fr auto; }
.hero-foot p { margin: 0; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 52ch; }
@media (max-width: 960px) {
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-foot, .hero-foot--simple { grid-template-columns: 1fr; align-items: flex-start; }
}
.hero-foot .index {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-actions { display: flex; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--bl-cyan); color: var(--bl-ink); }
.btn-primary:hover { background: var(--bl-paper); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bl-paper); border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--bl-paper); transform: translateY(-1px); }
.btn-dark { background: var(--bl-ink); color: var(--bl-paper); }
.btn-dark:hover { background: var(--bl-blue); }
.btn-light { background: var(--bl-paper); color: var(--bl-ink); border: 1px solid var(--bl-line); }
.btn-light:hover { border-color: var(--bl-ink); }

/* ── STATS ─────────────────────────────────────────────── */
.stats { padding: 96px 0; background: var(--bl-paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 28px 0; border-left: 1px solid var(--bl-line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num { font-size: clamp(56px, 7vw, 96px); font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; color: var(--bl-ink); }
.stat-num sup { font-size: 0.5em; vertical-align: top; font-weight: 600; color: var(--bl-blue); margin-left: 4px; }
.stat-num .unit { font-size: 0.32em; font-weight: 600; color: var(--bl-blue); margin-left: 6px; letter-spacing: 0; }
.stat-label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bl-mute); margin-top: 24px; max-width: 18ch; }

/* ── SERVICES ──────────────────────────────────────────── */
.services { padding: 120px 0; background: var(--bl-paper); border-top: 1px solid var(--bl-line); }
.services-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: end; }
.services-head h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; margin: 16px 0 0; }
.services-head h2 .italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--bl-blue); }
.services-head p { font-size: 17px; line-height: 1.55; color: var(--bl-graphite); margin: 0; max-width: 44ch; }

.svc-list { display: grid; grid-template-columns: 1fr; }
.svc {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 100px;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--bl-line);
  cursor: pointer;
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1);
  align-items: start;
}
.svc:last-child { border-bottom: 1px solid var(--bl-line); }
.svc:hover { padding-left: 24px; }
.svc-num { font-family: var(--ff-mono); font-size: 12px; letter-spacing: .12em; color: var(--bl-mute); padding-top: 8px; }
.svc-title { font-size: clamp(28px, 3vw, 42px); font-weight: 500; letter-spacing: -0.025em; line-height: 1; margin: 0; }
.svc-desc { font-size: 15px; line-height: 1.55; color: var(--bl-graphite); margin: 0; max-width: 48ch; }
.svc-arrow { justify-self: end; align-self: center; color: var(--bl-mute); transition: transform .35s, color .2s; }
.svc:hover .svc-arrow { transform: translateX(8px); color: var(--bl-blue); }
.svc.is-fire:hover .svc-arrow { color: var(--bl-fire); }

/* ── BIM showcase ──────────────────────────────────────── */
.bim {
  background: var(--bl-ink);
  color: var(--bl-paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.bim-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.bim-inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.bim-text h2 { font-size: clamp(40px, 5vw, 80px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin: 24px 0 32px; }
.bim-text h2 .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-cyan); }
.bim-text p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 0 0 24px; max-width: 50ch; }
.bim-bullets { display: grid; gap: 14px; margin: 32px 0 40px; }
.bim-bullets li {
  list-style: none;
  font-size: 15px;
  display: grid; grid-template-columns: 30px 1fr;
  align-items: baseline;
  color: rgba(255,255,255,0.85);
}
.bim-bullets li::before { content: "→"; color: var(--bl-cyan); font-family: var(--ff-mono); }

/* BIM canvas — wireframe-ish visual */
.bim-canvas {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(ellipse at 30% 70%, oklch(50% 0.18 235 / 0.18), transparent 60%),
    linear-gradient(135deg, oklch(20% 0.05 240), oklch(15% 0.03 240));
}
.bim-canvas .label {
  position: absolute;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bl-cyan);
}
.bim-canvas .label.tl { top: 16px; left: 16px; }
.bim-canvas .label.tr { top: 16px; right: 16px; }
.bim-canvas .label.bl { bottom: 16px; left: 16px; color: rgba(255,255,255,0.5); }
.bim-canvas .label.br { bottom: 16px; right: 16px; color: rgba(255,255,255,0.5); }
.bim-canvas .crosshair { position: absolute; }
.bim-canvas .crosshair::before,
.bim-canvas .crosshair::after {
  content: "";
  position: absolute;
  background: var(--bl-cyan);
}
.bim-canvas .crosshair::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.bim-canvas .crosshair::after  { height: 14px; width: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.bim-canvas-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── SECTION: GENERIC LIGHT ────────────────────────────── */
.section-light { padding: 140px 0; background: var(--bl-paper); }
.section-bone { padding: 140px 0; background: var(--bl-bone); }
.section-dark { padding: 140px 0; background: var(--bl-ink); color: var(--bl-paper); }

/* ── SÓCIOS ────────────────────────────────────────────── */
.socios-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.socios-head h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; margin: 16px 0 0; max-width: 14ch; }
.socios-head h2 .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-blue); }
.socios-head p { font-size: 17px; line-height: 1.55; color: var(--bl-graphite); margin: 16px 0 0; max-width: 44ch; align-self: end; }
.socios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Variante "equipe" (home): foto única + legenda dos três sócios */
.socios-team { margin: 0; }
.socios-team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bl-ink);
}
.socios-team-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}
.socios-team-cap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.socios-team-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--bl-ink);
  padding-top: 16px;
}
.socios-team-name .stn-name { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.socios-team-name .stn-role { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bl-mute); }
@media (max-width: 640px) {
  .socios-team-photo { aspect-ratio: 4 / 3; }
  .socios-team-cap { grid-template-columns: 1fr; gap: 16px; }
}
.socio { border-top: 1px solid var(--bl-ink); padding-top: 24px; }
.socio-photo {
  aspect-ratio: 4/5;
  background: var(--bl-ink);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.socio-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.socio:hover .socio-photo img { transform: scale(1.03); }
.socio-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,18,32,0.55) 100%);
  pointer-events: none;
}
.socio-photo-tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
}
.socio-name { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.socio-role { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bl-mute); margin-top: 8px; }
.socio-since { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bl-blue); }

/* ── PROJETOS ──────────────────────────────────────────── */
.proj-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 64px; gap: 32px; flex-wrap: wrap; }
.proj-head h2 { font-size: clamp(40px, 5vw, 72px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; margin: 16px 0 0; }
.proj-head h2 .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-blue); }
.proj-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.proj-intro { margin: 0; max-width: 42ch; font-size: 16px; line-height: 1.55; color: var(--bl-graphite); text-wrap: pretty; align-self: end; }
.proj-filter {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--bl-line);
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--bl-graphite);
  transition: all .2s;
}
.proj-filter.active { background: var(--bl-ink); border-color: var(--bl-ink); color: var(--bl-paper); }
.proj-filter:hover:not(.active) { border-color: var(--bl-ink); }

.proj-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.proj {
  position: relative;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.proj-img {
  aspect-ratio: 4/3;
  background: var(--bl-mist);
  overflow: hidden;
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.proj-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
  filter: saturate(0.92) contrast(1.02);
}
.proj:hover .proj-img img { transform: scale(1.03); filter: saturate(1) contrast(1.04); }
.proj-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em;
  color: var(--bl-paper);
  padding: 5px 9px; background: rgba(10,18,32,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.proj:hover .proj-img { transform: scale(1.01); }
.proj-meta { display: flex; justify-content: space-between; padding-top: 16px; gap: 16px; }
.proj-meta h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; margin: 0; }
.proj-meta h3 .italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--bl-blue); }
.proj-meta .right { max-width: 16ch; }
.proj-meta .right { text-align: right; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bl-mute); }
.proj-loc { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bl-mute); margin-top: 6px; }

.proj.span-6 { grid-column: span 6; }
.proj.span-7 { grid-column: span 7; }
.proj.span-5 { grid-column: span 5; }
.proj.span-4 { grid-column: span 4; }
.proj.span-8 { grid-column: span 8; }
.proj.span-12 { grid-column: span 12; }
.proj.tall .proj-img { aspect-ratio: 4/5; }
.proj.wide .proj-img { aspect-ratio: 16/9; }

.proj-more { display: flex; justify-content: center; margin-top: 64px; }

/* ── CLIENTES ──────────────────────────────────────────── */
.clientes { padding: 120px 0; background: var(--bl-bone); }
.cli-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.cli-head h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; margin: 12px 0 0; max-width: 18ch; }
.cli-head h2 .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-blue); }
.cli-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--bl-line);
  border-left: 1px solid var(--bl-line);
}
.cli {
  border-right: 1px solid var(--bl-line);
  border-bottom: 1px solid var(--bl-line);
  aspect-ratio: 1.6/1;
  display: grid; place-items: center;
  padding: 28px 24px;
  transition: background .25s;
}
.cli:hover { background: var(--bl-paper); }
.cli img {
  max-width: 82%;
  max-height: 56px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.5;
  transition: opacity .35s ease, transform .35s ease;
}
.cli:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Home: 6 construtoras em destaque (marca d'água) + botão ver mais */
.cli-grid--home { grid-template-columns: repeat(6, 1fr); }
.cli-grid--home .cli { aspect-ratio: 1.5/1; padding: 26px 22px; }
.cli-grid--home .cli img { max-height: 56px; max-width: 82%; }
.cli-more { display: flex; justify-content: center; margin-top: 44px; }
@media (max-width: 1000px) { .cli-grid--home { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .cli-grid, .cli-grid--home { grid-template-columns: repeat(2, 1fr); }
}
.cli-name { text-align: center; }
.cli-name span {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--bl-graphite);
  line-height: 1.15;
  text-wrap: balance;
  transition: color .25s;
}
.cli-name:hover span { color: var(--bl-blue); }

/* ── DEPOIMENTOS ───────────────────────────────────────── */
.depo { padding: 140px 0; background: var(--bl-ink); color: var(--bl-paper); position: relative; overflow: hidden; }
.depo-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.depo-inner { position: relative; }
.depo-quote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 32px 0 64px;
}
.depo-quote .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-cyan); }
.depo-quote::before { content: "“"; font-family: var(--ff-serif); font-style: italic; color: var(--bl-cyan); margin-right: 4px; }
.depo-author { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); max-width: 720px; }
.depo-name { font-size: 18px; font-weight: 500; }
.depo-role { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.depo-nav { display: flex; gap: 8px; }
.depo-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: var(--bl-paper);
  transition: all .2s;
}
.depo-btn:hover { background: var(--bl-paper); color: var(--bl-ink); }
.depo-dots { display: flex; gap: 6px; margin-top: 40px; }
.depo-dot { width: 24px; height: 2px; background: rgba(255,255,255,0.2); transition: background .25s; cursor: pointer; }
.depo-dot.active { background: var(--bl-cyan); }

/* ── CTA FINAL ─────────────────────────────────────────── */
.cta-final { padding: 160px 0; background: var(--bl-paper); border-top: 1px solid var(--bl-line); }
.cta-final h2 { font-size: clamp(48px, 7vw, 120px); font-weight: 500; letter-spacing: -0.035em; line-height: 0.95; margin: 0 0 40px; max-width: 18ch; }
.cta-final h2 .italic { font-family: var(--ff-serif); font-style: italic; color: var(--bl-blue); font-weight: 400; }
.cta-final .row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────── */
.foot { background: var(--bl-ink); color: var(--bl-paper); padding: 80px 0 32px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.foot h4 { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 20px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { font-size: 15px; opacity: .85; }
.foot-col a:hover { opacity: 1; color: var(--bl-cyan); }
.foot-brand .mark { width: 48px; height: 48px; margin-bottom: 24px; }
.foot-brand p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0 0 8px; max-width: 36ch; }
.foot-brand .crea { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bl-cyan); margin-top: 16px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.foot-credit { display: inline-flex; align-items: center; gap: 10px; }
.foot-hunter {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--bl-ink);
  padding: 7px 14px; border-radius: 8px;
  font-family: var(--ff-sans, inherit);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0; text-transform: none;
  transition: transform .2s, box-shadow .2s;
}
.foot-hunter:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); color: var(--bl-ink); }

/* ── WHATSAPP FLOAT ───────────────────────────────────── */
.wa {
  position: fixed; bottom: 92px; right: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: oklch(62% 0.13 155);
  display: grid; place-items: center;
  color: white;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  transition: transform .2s;
}
.wa:hover { transform: scale(1.08); }

/* ── PLACEHOLDER imagery ──────────────────────────────── */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(14,27,44,0.04) 0,
      rgba(14,27,44,0.04) 1px,
      transparent 1px,
      transparent 16px),
    var(--bl-mist);
  overflow: hidden;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 16px),
    var(--bl-deep);
  color: rgba(255,255,255,0.7);
}
.ph-label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bl-graphite);
  background: rgba(248,246,242,0.85);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}
.ph.dark .ph-label { color: rgba(255,255,255,0.85); background: rgba(14,27,44,0.7); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat { padding: 24px 0 0 24px; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .services-head, .bim-inner, .socios-head, .foot-top { grid-template-columns: 1fr !important; gap: 32px; }
  .socios-grid { grid-template-columns: 1fr 1fr; }
  .cli-grid { grid-template-columns: repeat(3, 1fr); }
  .svc { grid-template-columns: 60px 1fr 60px; gap: 24px; }
  .svc-desc { grid-column: 2; }
  .proj.span-6, .proj.span-7, .proj.span-5, .proj.span-4, .proj.span-8 { grid-column: span 12; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .wrap, .wrap-wide { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cli-grid { grid-template-columns: repeat(2, 1fr); }
  .socios-grid { grid-template-columns: 1fr; }
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { display: none; }
  .depo-author { grid-template-columns: 1fr; gap: 16px; }
}

/* ─────────── SOBRE / QUEM SOMOS ─────────── */
.sobre {
  padding: 128px 0;
  background: var(--bl-bone);
  border-top: 1px solid var(--bl-line);
  border-bottom: 1px solid var(--bl-line);
}
.sobre-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--bl-line);
}
.sobre-head h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.sobre-head h2 .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bl-blue);
}
.sobre-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sobre-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--bl-line);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  align-items: baseline;
}
.sobre-meta-row:last-child { border-bottom: 1px solid var(--bl-line); }
.sobre-meta-row .k { color: var(--bl-mute); }
.sobre-meta-row .v { color: var(--bl-ink); font-weight: 500; letter-spacing: .08em; }

.sobre-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1280px;
}
.sobre-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--bl-graphite);
  text-wrap: pretty;
}
.sobre-body p strong { color: var(--bl-ink); font-weight: 500; }
.sobre-body .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bl-blue);
}
.sobre-lead {
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: var(--bl-ink) !important;
  letter-spacing: -0.005em;
}

.sobre-figure {
  margin: 56px 0 0;
  position: relative;
}
.sobre-figure img {
  width: 100%;
  display: block;
  height: clamp(220px, 30vw, 400px);
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.96) contrast(1.02);
}
.sobre-figure-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bl-mute);
}
.sobre-figure-tag { color: var(--bl-blue); white-space: nowrap; }
@media (max-width: 980px) {
  .sobre-figure { margin-top: 44px; }
}

/* Sobre — vídeo do modelo BIM (banda cinematográfica) */
.sobre-video {
  position: relative;
  margin: 56px auto 0;
  width: 100%;
  aspect-ratio: 2546 / 990;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(20% 0.05 240), oklch(15% 0.03 240));
}
.sobre-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sobre-video .label {
  position: absolute; z-index: 2;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bl-cyan);
  background: rgba(10,15,22,.5); padding: 5px 9px;
}
.sobre-video .label.tl { top: 16px; left: 16px; }
.sobre-video .label.tr { top: 16px; right: 16px; }
.sobre-video .label.bl { bottom: 16px; left: 16px; color: rgba(255,255,255,0.7); }
.sobre-video .label.br { bottom: 16px; right: 16px; color: rgba(255,255,255,0.7); }

@media (max-width: 980px) {
  .sobre-head { grid-template-columns: 1fr; gap: 32px; }
  .sobre-body { grid-template-columns: 1fr; gap: 24px; }
  .sobre { padding: 80px 0; }
}

/* ─────────── INOVAÇÃO · DESTAQUE ─────────── */
.inovacao {
  position: relative;
  padding: 160px 0;
  background: var(--bl-paper);
  overflow: hidden;
  border-top: 1px solid var(--bl-line);
  border-bottom: 1px solid var(--bl-line);
}
.inovacao-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,27,44,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,27,44,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 80% 20%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 20%, black 20%, transparent 70%);
  pointer-events: none;
}
.inovacao::before {
  content: "";
  position: absolute;
  right: -8%; top: 0;
  width: 50vw; height: 80%;
  background: radial-gradient(circle, oklch(72% 0.13 225 / 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.inovacao-inner { position: relative; z-index: 1; }

.inovacao-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 14px;
  background: var(--bl-ink);
  color: var(--bl-paper);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 500;
  margin-bottom: 40px;
}
.inovacao-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bl-cyan);
  box-shadow: 0 0 16px var(--bl-cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.inovacao-headline {
  font-size: clamp(40px, 5.4vw, 88px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 64px;
  max-width: 22ch;
  color: var(--bl-ink);
}
.inovacao-headline .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bl-blue);
}

.inovacao-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid var(--bl-line);
}
.inovacao-lead {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--bl-ink);
  font-weight: 400;
  text-wrap: pretty;
}
.inovacao-lead strong { color: var(--bl-blue); font-weight: 600; }
.inovacao-lead .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bl-blue);
}

.inovacao-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.inovacao-stats > div {
  padding-top: 20px;
  border-top: 1px solid var(--bl-ink);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
}
.ino-stat-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bl-blue);
}
.ino-stat-num sup {
  font-size: 14px;
  vertical-align: super;
  color: var(--bl-mute);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
}
.ino-stat-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bl-mute);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .inovacao { padding: 96px 0; }
  .inovacao-body { grid-template-columns: 1fr; gap: 48px; }
  .inovacao-stats > div { grid-template-columns: 100px 1fr; gap: 16px; }
  .ino-stat-num { font-size: 32px; }
}

/* ─────────── DESTAQUE · POSICIONAMENTO ─────────── */
.destaque {
  position: relative;
  padding: 140px 0;
  background: var(--bl-ink);
  color: var(--bl-paper);
  overflow: hidden;
}
.destaque-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.destaque-glow {
  position: absolute;
  left: -10%; bottom: -30%;
  width: 55vw; height: 55vw;
  max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, oklch(50% 0.18 235 / 0.30), transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}
.destaque-inner { position: relative; z-index: 1; }
.destaque-eyebrow { margin-bottom: 44px; }
.destaque-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bl-cyan);
  box-shadow: 0 0 16px var(--bl-cyan);
}
.destaque-headline {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.2vw, 84px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 24ch;
  text-wrap: balance;
}
.destaque-headline .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bl-cyan);
}
.destaque-foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 980px) {
  .destaque { padding: 88px 0; }
  .destaque-headline { font-size: clamp(30px, 8vw, 52px); }
  .destaque-foot { margin-top: 48px; flex-direction: column; gap: 8px; }
}

/* ─────────── HERO · WHATSAPP CTA ─────────── */
.hero-actions .btn-wa {
  background: #25D366;
  color: #0E1B2C;
  font-weight: 700;
  border: none;
}
.hero-actions .btn-wa:hover {
  background: #1ebd5a;
  transform: translateY(-1px);
}
.hero-actions .btn-wa svg { color: currentColor; }

/* ─────────── CTA · WHATSAPP HERO BLOCK ─────────── */
.cta-final .cta-wa {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 48px 0 32px;
  padding: 32px 40px;
  background: #25D366;
  color: #0E1B2C;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.cta-final .cta-wa .wa-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0E1B2C;
  color: #25D366;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-final .cta-wa .wa-text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cta-final .cta-wa .wa-text .italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
}
.cta-final .cta-wa .wa-number {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  display: block;
  opacity: .8;
}
.cta-final .cta-wa .wa-arrow {
  background: #0E1B2C;
  color: #25D366;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform .2s;
}
.cta-final .cta-wa .wa-arrow:hover { transform: translateX(2px); }

@media (max-width: 760px) {
  .cta-final .cta-wa { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .cta-final .cta-wa .wa-arrow { justify-self: start; }
}
