/* ============================================================
   LV Enterprise — Landing Page (v3)
   Digital Liquid REAL · Custom Cursor · Magnetic · Apple-class
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
* { margin: 0; padding: 0; }

/* Safety net responsivo global */
img, svg, video { max-width: 100%; height: auto; }
p, li, blockquote, label { overflow-wrap: break-word; word-break: normal; }
/* Spans curtos só quebram em palavras gigantes (URLs etc.) */
span, a { overflow-wrap: break-word; }
/* Títulos: NUNCA hifenizar, NUNCA quebrar palavras. Preferimos overflow controlado pelos breakpoints. */
h1, h2, h3, h4, .display, .h2, .display em, .h2 em, .serif {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
  -webkit-hyphens: manual;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:root {
  /* Paleta — Manual cap. 03 */
  --obsidian: #0A0A0A;
  --carbon:   #1C1C1C;
  --graphite: #3D3D3D;
  --bone:     #F5F0E8;
  --garnet:   #3A1418;

  --bone-90: rgba(245,240,232,0.90);
  --bone-72: rgba(245,240,232,0.72);
  --bone-58: rgba(245,240,232,0.58);
  --bone-40: rgba(245,240,232,0.40);
  --bone-22: rgba(245,240,232,0.22);
  --bone-12: rgba(245,240,232,0.12);
  --bone-08: rgba(245,240,232,0.08);
  --bone-04: rgba(245,240,232,0.04);

  --garnet-soft: #c5949b;
  --garnet-mid:  #8a3d44;

  /* Fontes — Manual cap. 04 */
  --ff-sans:  "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --ff-serif: "Instrument Serif", Georgia, serif;
  --ff-mono:  "Geist Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* Spacing (8pt grid) — Manual cap. 05 */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:24px;
  --s-6:32px; --s-7:48px; --s-8:64px; --s-9:96px; --s-10:128px;

  --container: 1280px;
  --container-narrow: 880px;

  /* Easing */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-liquid:    cubic-bezier(0.6, 0.05, 0.2, 0.95);

  --t-fast: 240ms;
  --t-base: 440ms;
  --t-slow: 720ms;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 28px; --r-2xl: 40px;
}

/* ── Fallbacks cross-browser ──
   Safari/Arc/iOS: backdrop-filter sem url() funciona; refração SVG ignorada.
   Browsers sem backdrop-filter (raro hoje, ~Firefox sem flag): bg sólido. */
@supports not (backdrop-filter: blur(1px)) {
  .lg, .problem-card, .solution-card, .process__step,
  .versus__col, .diff-quote, .form, .founders-couple,
  .stat-card, .kw-table, .nav[data-state="scrolled"] {
    background: rgba(28, 28, 28, 0.92) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
/* Safari não suporta url() em backdrop-filter — degrada graciosamente
   para blur+saturate apenas (sem refração SVG). Não precisa código extra. */

/* ── 1. BASE ───────────────────────────────────────────── */

body {
  background: var(--obsidian);
  color: var(--bone-90);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  /* Cursor padrão escondido em desktop — substituído pelo customizado */
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, select, textarea, label { cursor: none; }
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out-quart); }
ul, ol { list-style: none; }

::selection { background: var(--bone); color: var(--obsidian); }

.svg-filters { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Grão de filme matte global */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.94  0 0 0 0 0.91  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.skip-link {
  position: absolute; top: -40px; left: var(--s-4);
  background: var(--bone); color: var(--obsidian);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  z-index: 1000; transition: top var(--t-fast) var(--ease-out-quart);
}
.skip-link:focus { top: var(--s-4); }

:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 2. CURSOR CUSTOMIZADO ─────────────────────────────── */

.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor__dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--t-fast) var(--ease-out-quart),
              height var(--t-fast) var(--ease-out-quart),
              opacity var(--t-fast);
}
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--t-base) var(--ease-out-expo),
              height var(--t-base) var(--ease-out-expo),
              border-color var(--t-fast),
              border-radius var(--t-base) var(--ease-out-expo),
              opacity var(--t-fast);
}
/* Estados */
.cursor[data-state="link"] .cursor__dot { width: 0; height: 0; opacity: 0; }
.cursor[data-state="link"] .cursor__ring { width: 60px; height: 60px; border-color: var(--bone); }
.cursor[data-state="card"] .cursor__dot { width: 0; height: 0; opacity: 0; }
.cursor[data-state="card"] .cursor__ring { width: 80px; height: 80px; border-radius: 30%; border-color: rgba(245,240,232,0.8); }
.cursor[data-state="text"] .cursor__dot { width: 2px; height: 22px; border-radius: 1px; }
.cursor[data-state="text"] .cursor__ring { opacity: 0; }
.cursor[data-hidden="true"] { opacity: 0; }

/* ── 3. TIPOGRAFIA ─────────────────────────────────────── */

.display {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--bone);
  position: relative;
}
.display em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
}

.h2 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--bone);
  max-width: 18ch;
}
.h2 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bone);
}

.serif { font-family: var(--ff-serif); font-style: italic; font-weight: 400; }
.mono  { font-family: var(--ff-mono); font-feature-settings: "tnum"; letter-spacing: 0; }

.caption {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-40);
  display: inline-block;
  margin-bottom: var(--s-3);
}

/* ── 4. CONTAINER & SECTION (spacing reduzido ~30%) ────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0;
  overflow: hidden;
}

.section__head {
  margin-bottom: var(--s-5);
  max-width: 64ch;
}
.section__head--center { text-align: center; max-width: none; }
.section__head--center .h2,
.section__head--center .form-head__sub {
  margin-left: auto;
  margin-right: auto;
}

.section__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--bone-72);
  max-width: 56ch;
  font-weight: 300;
  margin-top: var(--s-5);
}

/* ── 5. SECTION BACKGROUNDS (sem blobs!) ───────────────── */

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.section-bg svg { width: 100%; height: 100%; display: block; }

/* ── 6.0 LIQUID GLASS SYSTEM ──────────────────────────── */
/* Sistema Apple-style: vidro polido com refração, rim light,
   especular seguindo cursor, e profundidade óptica.       */

.lg {
  position: relative;
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(24px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  border-radius: var(--r-xl);
  /* Profundidade óptica: rim de cima clara, baixo escura */
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.40),
    inset 1px 0 0 rgba(245, 240, 232, 0.06),
    inset -1px 0 0 rgba(0, 0, 0, 0.20),
    0 30px 60px -24px rgba(0, 0, 0, 0.55),
    0 4px 16px -8px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart),
              backdrop-filter var(--t-base) var(--ease-out-quart);
}

/* Rim de luz: gradient border simulando borda de vidro polida */
.lg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(245, 240, 232, 0.40) 0%,
    rgba(245, 240, 232, 0.10) 18%,
    transparent 38%,
    transparent 62%,
    rgba(245, 240, 232, 0.06) 82%,
    rgba(245, 240, 232, 0.28) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: opacity var(--t-base) var(--ease-out-quart);
}

/* Especular: ponto de luz que segue o cursor (--mx, --my em %) */
.lg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(245, 240, 232, 0.10),
      transparent 45%
    );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out-quart);
  mix-blend-mode: screen;
}

.lg > * { position: relative; z-index: 2; }

.lg:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    inset 1px 0 0 rgba(245, 240, 232, 0.08),
    inset -1px 0 0 rgba(0, 0, 0, 0.22),
    0 40px 80px -28px rgba(0, 0, 0, 0.65),
    0 8px 20px -10px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(28px) saturate(200%) url(#refract-hover);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
}
.lg:hover::before { opacity: 1; }
.lg:hover::after  { opacity: 1; }

/* Variantes */
.lg--soft {
  background: rgba(245, 240, 232, 0.025);
  border-color: rgba(245, 240, 232, 0.08);
}
.lg--strong {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(245, 240, 232, 0.14);
}
.lg--garnet {
  background: linear-gradient(135deg,
    rgba(58, 20, 24, 0.16) 0%,
    rgba(245, 240, 232, 0.04) 100%);
  border-color: rgba(245, 240, 232, 0.14);
}

/* ── 6. NAV ────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: padding var(--t-base) var(--ease-out-quart),
              background var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid transparent;
}
.nav[data-state="scrolled"] {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(32px) saturate(200%) url(#refract);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom-color: rgba(245, 240, 232, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.10),
    0 12px 28px -16px rgba(0, 0, 0, 0.6);
  padding: 12px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__brand img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  transition: opacity var(--t-fast) var(--ease-out-quart),
              transform var(--t-base) var(--ease-out-quart);
}
.nav__brand:hover img {
  opacity: 0.78;
  transform: scale(1.04);
}
.nav[data-state="scrolled"] .nav__brand img { height: 28px; width: 28px; }

.nav__links {
  display: flex;
  gap: var(--s-7);
  font-size: 14px;
  color: var(--bone-72);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bone);
  transition: width var(--t-base) var(--ease-out-quart);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { font-size: 13px; padding: 10px 18px; }

.nav__menu { display: none; width: 32px; height: 32px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav__menu span { width: 22px; height: 1px; background: var(--bone); transition: transform var(--t-base) var(--ease-out-quart); }
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: flex; }
  .nav[data-mobile="open"] {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(36px);
    -webkit-backdrop-filter: blur(36px);
    height: 100vh;
  }
  .nav[data-mobile="open"] .nav__links {
    display: flex; flex-direction: column; gap: var(--s-5);
    position: absolute; top: 80px; left: 0; right: 0;
    padding: var(--s-7) clamp(20px, 4vw, 40px);
    font-size: 28px; color: var(--bone);
  }
  .nav[data-mobile="open"] .nav__cta {
    display: inline-flex;
    position: absolute; bottom: 60px;
    left: clamp(20px, 4vw, 40px); right: clamp(20px, 4vw, 40px);
    justify-content: center;
    padding: 18px 24px;
    font-size: 15px;
  }
}

/* ── 7. BOTÕES (com magnetic) ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 14px 24px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: transform var(--t-base) var(--ease-out-quart),
              background var(--t-base) var(--ease-out-quart),
              color var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
  white-space: nowrap;
  user-select: none;
  position: relative;
  will-change: transform;
}
[data-magnetic] {
  /* JS aplica translate; transition garante easing */
  transition: transform 360ms var(--ease-out-expo),
              background var(--t-base) var(--ease-out-quart),
              color var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
}
.btn--primary {
  background: var(--bone);
  color: var(--obsidian);
}
.btn--primary:hover {
  box-shadow: 0 22px 50px -18px rgba(245,240,232,0.55);
}
.btn--ghost {
  background: rgba(245,240,232,0.04);
  color: var(--bone-90);
  border: 1px solid var(--bone-22);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  border-color: var(--bone);
  background: rgba(245,240,232,0.08);
  color: var(--bone);
}
.btn--text {
  background: transparent;
  color: var(--bone-58);
  padding: 14px 0;
}
.btn--text:hover { color: var(--bone); }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--sm { padding: 10px 16px; font-size: 12px; }

.btn svg { transition: transform var(--t-base) var(--ease-out-quart); }
.btn:hover svg { transform: translateX(3px); }

.btn__loader { display: none; }
.btn[data-state="loading"] { pointer-events: none; opacity: 0.8; }
.btn[data-state="loading"] .btn__icon { display: none; }
.btn[data-state="loading"] .btn__loader {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(10,10,10,0.22);
  border-top-color: var(--obsidian);
  border-radius: 50%;
  animation: spin 720ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 8. EYEBROW ────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-58);
  margin-bottom: var(--s-6);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--garnet);
  box-shadow: 0 0 0 4px rgba(58,20,24,0.18), 0 0 16px rgba(58,20,24,0.5);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(58,20,24,0.18), 0 0 16px rgba(58,20,24,0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(58,20,24,0.04), 0 0 24px rgba(58,20,24,0.25); }
}

/* ── 9. HERO ───────────────────────────────────────────── */

.hero {
  position: relative;
  display: block;
  padding: 130px 0 clamp(40px, 5vw, 72px);
  overflow: hidden;
  min-height: auto !important;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg__grid {
  opacity: 0.7;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 90%);
}
.hero-bg__topo {
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

/* Monograma da marca (limpo, sem distorção — só parallax sutil) */
.hero-bg__mono {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: clamp(380px, 52vw, 760px);
  aspect-ratio: 1;
  opacity: 0.05;
  will-change: transform;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg__mono img {
  width: 100%; height: auto;
  filter: brightness(0) invert(1);
}

.hero-bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 30% 50%, transparent 0%, rgba(10,10,10,0.4) 60%, var(--obsidian) 100%);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--bone-72);
  max-width: 56ch;
  margin: clamp(20px, 2.5vw, 36px) 0 var(--s-6);
  font-weight: 300;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero__trust {
  padding-top: var(--s-5);
  border-top: 1px solid var(--bone-08);
  width: 100%;
  max-width: 720px;
}
.hero__trust .caption { margin-bottom: var(--s-3); display: block; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-size: 14px;
  color: var(--bone-72);
}
.trust-list li {
  position: relative;
  padding-left: var(--s-4);
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--bone-22);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: var(--s-7);
  left: clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: var(--s-3);
  z-index: 2;
}
.hero__scroll .mono {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone-40);
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--bone-40), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: -30%; top: 0;
  width: 30%; height: 1px;
  background: var(--bone);
  animation: slide 2.4s var(--ease-liquid) infinite;
}
@keyframes slide { 0% { left: -30%; } 100% { left: 100%; } }

@media (max-width: 720px) {
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__cta .btn { justify-content: center; }
  .hero__scroll { display: none; }
  .trust-list { gap: var(--s-3); font-size: 13px; }
  .hero-bg__mono { right: -30%; opacity: 0.04; }
}

/* ── 10. WORD-BY-WORD REVEAL (Hero) ────────────────────── */

.reveal-words { overflow: visible; }
.reveal-words .word {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(0.4em) skewY(2deg);
  transition: opacity 720ms var(--ease-out-expo),
              transform 720ms var(--ease-out-expo);
  margin-right: 0.18em;
}
.reveal-words.is-visible .word {
  opacity: 1;
  transform: translateY(0) skewY(0);
}
.reveal-words.is-visible .word:nth-child(1)  { transition-delay: 0.00s; }
.reveal-words.is-visible .word:nth-child(2)  { transition-delay: 0.05s; }
.reveal-words.is-visible .word:nth-child(3)  { transition-delay: 0.10s; }
.reveal-words.is-visible .word:nth-child(4)  { transition-delay: 0.18s; }
.reveal-words.is-visible .word:nth-child(5)  { transition-delay: 0.23s; }
.reveal-words.is-visible .word:nth-child(6)  { transition-delay: 0.28s; }
.reveal-words.is-visible .word:nth-child(7)  { transition-delay: 0.36s; }
.reveal-words.is-visible .word:nth-child(8)  { transition-delay: 0.41s; }
.reveal-words.is-visible .word:nth-child(9)  { transition-delay: 0.46s; }
.reveal-words.is-visible .word:nth-child(10) { transition-delay: 0.51s; }

/* ── 11. PROBLEMA ──────────────────────────────────────── */

.section--problem { background: var(--obsidian); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
/* problem-card herda .lg via classe duplicada (HTML usa só .problem-card,
   então replicamos aqui o sistema de Liquid Glass) */
.problem-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: rgba(245, 240, 232, 0.035);
  backdrop-filter: blur(22px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart),
              backdrop-filter var(--t-base) var(--ease-out-quart);
}
/* Rim light gradient border */
.problem-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.34) 0%,
    rgba(245,240,232,0.08) 22%,
    transparent 42%,
    transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.22) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
  transition: opacity var(--t-base);
}
/* Especular cursor */
.problem-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.problem-card > * { position: relative; z-index: 2; }
.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.18);
  backdrop-filter: blur(26px) saturate(200%) url(#refract-hover);
  -webkit-backdrop-filter: blur(26px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 36px 64px -24px rgba(0, 0, 0, 0.65);
}
.problem-card:hover::before { opacity: 1; }
.problem-card:hover::after  { opacity: 1; }

.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(245,240,232,0.06);
  border: 1px solid var(--bone-08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  color: var(--bone-72);
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--bone);
  margin-bottom: var(--s-3);
}
.problem-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone-72);
  font-weight: 300;
}

@media (max-width: 720px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ── 12. SOLUÇÃO ───────────────────────────────────────── */

.section--solution { background: var(--obsidian); }

.solution-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
}
.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 48px);
  border-radius: var(--r-2xl);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(28px) saturate(190%) url(#refract);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(245, 240, 232, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.40),
    inset 1px 0 0 rgba(245, 240, 232, 0.06),
    0 32px 64px -24px rgba(0, 0, 0, 0.6),
    0 6px 18px -8px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart),
              backdrop-filter var(--t-base) var(--ease-out-quart);
}
/* Rim light */
.solution-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.40) 0%,
    rgba(245,240,232,0.10) 20%,
    transparent 40%,
    transparent 60%,
    rgba(245,240,232,0.06) 80%,
    rgba(245,240,232,0.28) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: opacity var(--t-base);
}
/* Especular */
.solution-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.12), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.22);
  backdrop-filter: blur(32px) saturate(210%) url(#refract-hover);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.26),
    inset 0 -1px 0 rgba(0, 0, 0, 0.50),
    0 44px 84px -28px rgba(0, 0, 0, 0.7),
    0 10px 22px -10px rgba(0, 0, 0, 0.40);
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover::after  { opacity: 1; }

.solution-card__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(52px, 6.5vw, 80px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}
.solution-card__body { position: relative; z-index: 1; }
.solution-card__body h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: var(--s-3);
}
.solution-card__body p {
  font-size: clamp(15px, 1.3vw, 16px);
  line-height: 1.6;
  color: var(--bone-72);
  font-weight: 300;
  margin-bottom: var(--s-4);
}
.solution-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.solution-card__list li {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--bone-58);
  position: relative;
  padding-left: var(--s-4);
}
.solution-card__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--garnet-soft);
}
.solution-card__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Visual art (sem distorção líquida — fica crisp) */
.solution-card__visual svg {
  width: 100%; height: 100%;
  transition: transform 600ms var(--ease-out-expo), opacity 400ms;
  opacity: 0.85;
}
.solution-card:hover .solution-card__visual svg {
  opacity: 1;
  transform: scale(1.04);
}

/* Tela média: visual menor, mantém layout 3-col */
@media (max-width: 1180px) {
  .solution-card {
    grid-template-columns: 60px 1fr 140px;
    gap: clamp(16px, 2.4vw, 32px);
  }
  .solution-card__num { font-size: clamp(44px, 5.5vw, 64px); }
}

/* Tablet/MacBook 13": stack vertical */
@media (max-width: 980px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .solution-card__visual {
    grid-row: 1;
    width: 80px;
    height: 80px;
    margin-left: auto;
  }
  .solution-card__num {
    grid-row: 2;
    font-size: 56px;
  }
  .solution-card__body { grid-row: 3; }
}

/* ── 13. PROCESSO ──────────────────────────────────────── */

.section--process { background: var(--obsidian); }

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.process__step {
  position: relative;
  padding: clamp(24px, 2.8vw, 36px);
  border-radius: var(--r-xl);
  background: rgba(245, 240, 232, 0.035);
  backdrop-filter: blur(24px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart),
              backdrop-filter var(--t-base) var(--ease-out-quart);
}
.process__step::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.32) 0%,
    rgba(245,240,232,0.08) 22%,
    transparent 42%,
    transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.20) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: opacity var(--t-base);
}
.process__step::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.process__step > * { position: relative; z-index: 2; }
.process__step:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.18);
  backdrop-filter: blur(28px) saturate(200%) url(#refract-hover);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 36px 64px -24px rgba(0, 0, 0, 0.65);
}
.process__step:hover::before { opacity: 1; }
.process__step:hover::after  { opacity: 1; }

.process__num {
  font-size: 12px;
  color: var(--garnet-soft);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.process__step h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--bone);
}
.process__step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bone-72);
  font-weight: 300;
  flex: 1;
}
.process__step strong { color: var(--bone); font-weight: 500; }
.process__time {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-08);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-40);
}

@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
}

/* ── 14. DIFERENCIAL ───────────────────────────────────── */

.section--diff { background: var(--obsidian); }

.versus {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: var(--s-4);
  align-items: stretch;
  margin-bottom: var(--s-7);
}
.versus__col {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: rgba(245, 240, 232, 0.035);
  backdrop-filter: blur(22px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
}
.versus__col::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.32) 0%,
    rgba(245,240,232,0.08) 22%,
    transparent 42%,
    transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.20) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}
.versus__col::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(450px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.08), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.versus__col > * { position: relative; z-index: 2; }
.versus__col:hover {
  border-color: rgba(245, 240, 232, 0.18);
}
.versus__col:hover::after { opacity: 1; }

.versus__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.versus__col--bad .versus__label { color: var(--garnet-soft); }
.versus__col--good .versus__label { color: var(--bone); }
.versus__col ul {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.versus__col li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: var(--s-5);
  position: relative;
}
.versus__col--bad li { color: var(--bone-58); }
.versus__col--bad li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--garnet-soft); font-weight: 500;
}
.versus__col--good li { color: var(--bone); }
.versus__col--good li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--bone); font-weight: 500;
}
.versus__divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.versus__divider svg { width: 100%; height: 100%; max-height: 240px; }

.diff-quote {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(36px, 4.5vw, 56px);
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(58,20,24,0.18) 0%, rgba(245, 240, 232, 0.04) 100%);
  backdrop-filter: blur(28px) saturate(190%) url(#refract);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(245, 240, 232, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.40),
    0 32px 64px -24px rgba(0, 0, 0, 0.6);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.diff-quote::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.36) 0%,
    rgba(197,148,155,0.18) 22%,
    transparent 42%,
    transparent 58%,
    rgba(197,148,155,0.10) 78%,
    rgba(245,240,232,0.24) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.diff-quote::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.diff-quote > * { position: relative; z-index: 2; }
.diff-quote:hover::after { opacity: 1; }
.diff-quote p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.18;
  color: var(--bone);
  letter-spacing: -0.005em;
}

@media (max-width: 1024px) {
  .versus {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .versus__divider { display: none; }
}

/* ── 14.5 HIGHLIGHT (texto marcado branco) ─────────────── */

.highlight {
  display: inline;
  background: var(--bone);
  color: var(--obsidian);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  /* leve sombra pra destacar como adesivo de marcação */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.08),
    0 2px 6px -2px rgba(0,0,0,0.4);
}

/* ── 14.6 SEÇÃO PLATAFORMA (Google = intenção) ─────────── */

.section--platform { background: var(--obsidian); }

/* Stat card destaque (76% etc.) */
.stat-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-2xl);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(28px) saturate(190%) url(#refract);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(245, 240, 232, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.20),
    inset 0 -1px 0 rgba(0, 0, 0, 0.40),
    0 32px 64px -24px rgba(0, 0, 0, 0.6);
  margin-bottom: var(--s-7);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.stat-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.36) 0%,
    rgba(245,240,232,0.08) 22%,
    transparent 42%, transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.24) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.stat-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.stat-card > * { position: relative; z-index: 2; }
.stat-card:hover::after { opacity: 1; }

.stat-card__num .serif {
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.04em;
  display: block;
}
.stat-card__body h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: var(--s-3);
}
.stat-card__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--bone-72);
  font-weight: 300;
  margin-bottom: var(--s-3);
}
.stat-card__body strong { color: var(--bone); font-weight: 500; }
.stat-card__source {
  font-size: 11px;
  color: var(--bone-40);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 880px) {
  .stat-card {
    grid-template-columns: 1fr;
    text-align: left;
    gap: var(--s-4);
  }
  .stat-card__num .serif { font-size: clamp(72px, 16vw, 120px); }
}

/* Keyword Planner simulado */
.kw-block {
  margin-top: var(--s-5);
}
.kw-block__head {
  margin-bottom: var(--s-6);
  max-width: 64ch;
}
.kw-block__head h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin-bottom: var(--s-3);
}
.kw-block__head h3 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; }
.kw-block__head p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone-72);
  font-weight: 300;
}
.kw-block__foot {
  margin-top: var(--s-4);
  display: block;
}

/* Tabela — wrapper com overflow-x para edge cases (telas estreitas + zoom) */
.kw-table {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(245, 240, 232, 0.025);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  width: 100%;
  min-width: 0;
}
.kw-table__header,
.kw-row {
  display: grid;
  grid-template-columns: minmax(180px, 2.2fr) minmax(80px, 1fr) minmax(80px, 1fr) minmax(90px, 1fr) minmax(80px, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  padding: 14px clamp(14px, 2.2vw, 28px);
  align-items: center;
  min-width: 0;
}
.kw-table__header {
  background: rgba(245, 240, 232, 0.04);
  border-bottom: 1px solid rgba(245, 240, 232, 0.10);
  font-family: var(--ff-mono);
  font-size: clamp(10px, 0.78vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-58);
}
.kw-table__header span,
.kw-row > span { min-width: 0; overflow-wrap: anywhere; }

.kw-row {
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  transition: background var(--t-fast) var(--ease-out-quart);
}
.kw-row:last-child { border-bottom: none; }
.kw-row:hover { background: rgba(245, 240, 232, 0.03); }

.kw-row__term {
  font-family: var(--ff-sans);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.005em;
  overflow-wrap: anywhere;
}
.kw-row__num {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--bone-90);
  letter-spacing: 0;
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.kw-row__pill {
  font-family: var(--ff-mono);
  font-size: clamp(10px, 0.78vw, 11px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
  display: inline-block;
  width: fit-content;
  white-space: nowrap;
}
.kw-row__pill--high {
  color: #c5949b;
  border-color: rgba(197,148,155,0.4);
  background: rgba(58,20,24,0.18);
}
.kw-row__pill--mid {
  color: var(--bone-72);
  border-color: rgba(245,240,232,0.22);
  background: rgba(245,240,232,0.04);
}
.kw-row__pill--low {
  color: rgba(180,200,180,0.85);
  border-color: rgba(180,200,180,0.30);
  background: rgba(180,200,180,0.05);
}

/* Breakpoint 1180: aperta colunas, reduz tipo */
@media (max-width: 1180px) {
  .kw-table__header,
  .kw-row {
    grid-template-columns: minmax(150px, 2fr) minmax(70px, 1fr) minmax(70px, 1fr) minmax(80px, 1fr) minmax(70px, 1fr);
    gap: 10px;
    padding: 12px 16px;
  }
}

/* Breakpoint 1024: empilha em 2 colunas (termo + 4 dados em grid 2x2) */
@media (max-width: 1024px) {
  .kw-table__header { display: none; }
  .kw-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-2) var(--s-3);
    padding: var(--s-4);
    align-items: start;
  }
  .kw-row__term {
    grid-column: 1 / -1;
    font-size: 16px;
    padding-bottom: var(--s-2);
    border-bottom: 1px solid var(--bone-08);
    margin-bottom: var(--s-2);
  }
  .kw-row__pill { justify-self: start; }
  /* Adiciona labels antes dos valores em mobile */
  .kw-row__num::before,
  .kw-row__pill::before {
    content: attr(data-label);
    display: block;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bone-40);
    margin-bottom: 4px;
    font-weight: 400;
  }
  .kw-row__pill::before {
    text-transform: uppercase;
    color: var(--bone-40);
    letter-spacing: 0.14em;
  }
}

/* Mobile pequeno: tudo numa coluna */
@media (max-width: 480px) {
  .kw-row {
    grid-template-columns: 1fr;
    gap: var(--s-3);
  }
}

/* ── 14.7 SEÇÃO QUEM SOMOS ─────────────────────────────── */

.section--about { background: var(--obsidian); }

/* Stats trio */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.stat {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: rgba(245, 240, 232, 0.035);
  backdrop-filter: blur(22px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
}
.stat::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.30) 0%,
    rgba(245,240,232,0.06) 22%,
    transparent 42%, transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.20) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.stat::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.08), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.stat > * { position: relative; z-index: 2; }
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.18);
}
.stat:hover::after { opacity: 1; }

.stat__num {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  color: var(--bone);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-58);
  line-height: 1.4;
}

@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

/* Founders — casal/sócios (single block) */
.founders-couple {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: var(--r-2xl);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(28px) saturate(190%) url(#refract);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(245, 240, 232, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    inset 1px 0 0 rgba(245, 240, 232, 0.06),
    0 40px 80px -28px rgba(0, 0, 0, 0.65);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart);
}
.founders-couple::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.40) 0%,
    rgba(245,240,232,0.10) 18%,
    transparent 38%, transparent 62%,
    rgba(245,240,232,0.06) 82%,
    rgba(245,240,232,0.28) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.founders-couple::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.founders-couple > * { position: relative; z-index: 2; }
.founders-couple:hover {
  border-color: rgba(245, 240, 232, 0.22);
}
.founders-couple:hover::after { opacity: 1; }

/* Foto do casal */
.founders-couple__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30);
}
.founders-couple__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.founders-couple__avatar {
  width: 100%; height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(245,240,232,0.06), transparent 70%),
    linear-gradient(135deg, rgba(58,20,24,0.22) 0%, rgba(28,28,28,0.4) 100%);
  position: relative;
}
.founders-couple__avatar::after {
  content: "Foto do casal · placeholder";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-40);
  white-space: nowrap;
}
.founders-couple__avatar .serif {
  font-size: clamp(80px, 12vw, 140px);
  color: var(--bone-72);
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.founders-couple__avatar .dot {
  font-size: 0.5em;
  color: var(--garnet-soft);
  position: relative;
  top: -0.2em;
  margin: 0 4px;
}

/* Info */
.founders-couple__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-3);
}
.founders-couple__role {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--garnet-soft);
}
.founders-couple__info h3 {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--bone);
  margin-bottom: var(--s-3);
}
.founders-couple__info h3 .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--garnet-soft);
  margin: 0 4px;
}
.founders-couple__bio {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--bone-72);
  font-weight: 300;
  max-width: 64ch;
}
.founders-couple__bio + .founders-couple__bio { margin-top: var(--s-2); }
.founders-couple__bio strong { color: var(--bone); font-weight: 500; }
.founders-couple__bio em { font-family: var(--ff-serif); font-style: italic; color: var(--bone); }

/* Assinaturas (estilo certificado) */
.founders-couple__sig {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-08);
  display: flex;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.founders-couple__sig .serif {
  font-size: 22px;
  color: var(--bone);
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 4px;
}
.founders-couple__sig .serif::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bone-22);
}

@media (max-width: 1100px) {
  .founders-couple {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .founders-couple__photo {
    min-height: 320px;
    aspect-ratio: 4/3;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .founders-couple__photo { min-height: 240px; aspect-ratio: 4/3; }
  .founders-couple__sig { gap: var(--s-5); }
  .founders-couple__sig .serif { font-size: 18px; }
}

/* ── 15. FORMULÁRIO ────────────────────────────────────── */

.section--form {
  background: linear-gradient(180deg, var(--obsidian) 0%, var(--carbon) 100%);
  position: relative;
}

.form-head__sub {
  margin: var(--s-4) 0 var(--s-7);
  font-size: 16px;
  color: var(--bone-72);
  font-weight: 300;
  line-height: 1.6;
  max-width: 60ch;
}
.form-head__sub strong { color: var(--bone); font-weight: 500; }

.form {
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(32px) saturate(200%) url(#refract);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(245, 240, 232, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    inset 1px 0 0 rgba(245, 240, 232, 0.08),
    0 40px 80px -28px rgba(0, 0, 0, 0.65),
    0 8px 22px -10px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.form::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.40) 0%,
    rgba(245,240,232,0.10) 18%,
    transparent 38%,
    transparent 62%,
    rgba(245,240,232,0.06) 82%,
    rgba(245,240,232,0.30) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.form > * { position: relative; z-index: 2; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-58);
}
.field label span[aria-hidden] { color: var(--garnet-soft); margin-left: 2px; }
.field__opt { font-style: normal; color: var(--bone-40); text-transform: none; letter-spacing: 0; margin-left: 6px; font-size: 11px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bone-22);
  color: var(--bone);
  font-family: var(--ff-sans);
  font-size: 16px;
  padding: 12px 0;
  transition: border-color var(--t-base) var(--ease-out-quart);
  font-weight: 400;
  border-radius: 0;
  outline: none;
}
.field textarea { resize: vertical; min-height: 60px; line-height: 1.5; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F5F0E8' stroke-opacity='0.58' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.field select option { background: var(--carbon); color: var(--bone); }

.field input::placeholder, .field textarea::placeholder { color: var(--bone-40); font-weight: 300; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--bone); }

.field--error input, .field--error select, .field--error textarea { border-bottom-color: var(--garnet-soft); }

.field__error {
  font-size: 11px; color: var(--garnet-soft);
  font-family: var(--ff-mono); letter-spacing: 0.06em;
  min-height: 14px; display: block;
  opacity: 0; transition: opacity var(--t-fast);
}
.field--error .field__error { opacity: 1; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.check {
  display: flex; align-items: flex-start;
  gap: var(--s-3);
  font-size: 13px; color: var(--bone-72);
  line-height: 1.55;
  margin-top: var(--s-2); font-weight: 300;
}
.check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--bone-22);
  border-radius: 4px;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
  margin-top: 1px;
}
.check input[type="checkbox"]:checked { background: var(--bone); border-color: var(--bone); }
.check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--obsidian);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

.form__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); margin-top: var(--s-2);
  padding-top: var(--s-5); border-top: 1px solid var(--bone-08);
  flex-wrap: wrap;
}
.form__assurance { color: var(--bone-58); max-width: 36ch; text-align: right; }
@media (max-width: 540px) {
  .form__foot { flex-direction: column; align-items: stretch; }
  .form__foot .btn { justify-content: center; }
  .form__assurance { text-align: center; }
}

.form__status { font-size: 14px; min-height: 1.4em; }
.form__status[data-state="success"] { color: var(--bone); }
.form__status[data-state="error"]   { color: var(--garnet-soft); }

/* ── 16. FOOTER ────────────────────────────────────────── */

.foot {
  background: var(--obsidian);
  padding: clamp(48px, 6vw, 80px) 0 var(--s-6);
  border-top: 1px solid var(--bone-08);
  position: relative;
}
.foot__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--bone-08);
}
.foot__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
}
.foot__brand-mark {
  height: 56px;
  width: 56px;
  object-fit: contain;
}
.foot__brand-word {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--bone-72);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  /* Tracking expandido conforme manual cap. 01 — assinatura calibrada */
  padding-left: 4px;
}
@media (max-width: 720px) {
  .foot__brand { align-items: center; }
}
.foot__links {
  display: flex;
  gap: var(--s-7);
  font-size: 14px;
  color: var(--bone-72);
  justify-content: center;
}
.foot__links a:hover { color: var(--bone); }
.foot__contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  text-align: right;
  font-size: 13px;
  color: var(--bone-72);
}
.foot__contact a:hover { color: var(--bone); }
.foot__contact .mono { font-size: 11px; color: var(--bone-40); letter-spacing: 0.14em; text-transform: uppercase; }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  font-size: 12px;
  color: var(--bone-40);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.foot__bottom .serif { font-size: 16px; color: var(--bone-72); }

@media (max-width: 720px) {
  .foot__row { grid-template-columns: 1fr; text-align: center; }
  .foot__contact { text-align: center; }
  .foot__links { flex-wrap: wrap; justify-content: center; }
  .foot__bottom { flex-direction: column; text-align: center; }
}

/* ── 17. REVEAL ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 720ms var(--ease-out-expo),
              transform 720ms var(--ease-out-expo),
              filter 720ms var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-words .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .eyebrow__dot, .hero__scroll-line::after { animation: none !important; }
  .hero-bg__mono { filter: none !important; }
}

/* ── 17.3 SEÇÃO DEPOIMENTOS ─────────────────────────────── */

.section--testimonials {
  background: var(--obsidian);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: var(--s-5);
}

.testimonial {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--r-2xl);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(24px) saturate(180%) url(#refract);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    0 30px 60px -24px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out-quart),
              border-color var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
}

/* Rim light */
.testimonial::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(245,240,232,0.36) 0%,
    rgba(245,240,232,0.08) 22%,
    transparent 42%, transparent 58%,
    rgba(245,240,232,0.06) 78%,
    rgba(245,240,232,0.22) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  transition: opacity var(--t-base);
}
/* Especular */
.testimonial::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,240,232,0.10), transparent 45%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--t-base);
}
.testimonial > * { position: relative; z-index: 2; }

.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 240, 232, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 40px 80px -28px rgba(0, 0, 0, 0.7);
}
.testimonial:hover::before { opacity: 1; }
.testimonial:hover::after  { opacity: 1; }

/* Aspas decorativas */
.testimonial__mark {
  width: 36px;
  height: auto;
  color: var(--garnet-soft);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Texto do depoimento */
.testimonial__text {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--bone);
  font-weight: 300;
  flex: 1;
  letter-spacing: -0.005em;
}

/* Rodapé do card: logo + meta */
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-08);
  margin-top: auto;
}

/* Container base do logo (avatar/badge) */
.testimonial__logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 4px 12px -4px rgba(0, 0, 0, 0.4);
}

/* Variante --brand: a logo ocupa o tile inteiro (zero borda, zero padding).
   Funciona pra logos com fundo sólido (Garboça, BioKali, Salto). */
.testimonial__logo--brand {
  background: var(--bone);
  border: none;
  padding: 0;
}
.testimonial__logo--brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Variante --photo: avatar foto profissional (Dr. Cardoso) */
.testimonial__logo--photo {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.16);
  padding: 0;
}
.testimonial__logo--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Fallback (sem variante): monograma textual */
.testimonial__monogram {
  font-family: var(--ff-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.testimonial__monogram.serif {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.testimonial__company {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.testimonial__role {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-58);
  line-height: 1.3;
}

@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── 17.5 SEÇÃO PROOF (métricas + CTA) ──────────────────── */

.section--proof {
  padding: clamp(56px, 7vw, 96px) 0 !important;
  background: var(--obsidian);
  position: relative;
  border-top: 1px solid var(--bone-08);
  border-bottom: 1px solid var(--bone-08);
}

.section--proof .caption { display: block; margin-bottom: var(--s-6); }

.metrics-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(20px, 2.4vw, 36px);
  margin-top: 0;
  padding-top: 0;
  width: 100%;
}

.metric {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: var(--s-3);
  padding: 0 clamp(12px, 1.6vw, 24px) 0 0;
  border-right: 1px solid var(--bone-08);
  min-width: 0;
}
.metric:last-child { border-right: none; padding-right: 0; }

.metric__value {
  display: block !important;
  width: 100%;
  font-family: var(--ff-mono);
  font-size: clamp(28px, 3.4vw, 48px) !important;
  line-height: 1 !important;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  white-space: nowrap;
  overflow: visible;
}
.metric__value > span {
  display: inline-block;
  font: inherit;
  color: inherit;
}
.metric__label {
  display: block !important;
  width: 100%;
  font-family: var(--ff-sans) !important;
  font-size: clamp(13px, 1vw, 14px) !important;
  color: var(--bone-72);
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  max-width: 22ch;
}

@media (max-width: 1024px) {
  .metrics-row { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: var(--s-5); }
  .metric {
    padding: 0 var(--s-4) var(--s-4) 0;
    border-right: 1px solid var(--bone-08);
    border-bottom: 1px solid var(--bone-08);
  }
  .metric:nth-child(2n) { border-right: none; padding-right: 0; }
  .metric:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 540px) {
  .metrics-row { grid-template-columns: 1fr !important; gap: var(--s-4); }
  .metric {
    padding: 0 0 var(--s-4) 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--bone-08) !important;
  }
  .metric:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
}

/* CTA da seção proof */
.proof-cta {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--bone-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.proof-cta__text {
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--bone-90);
  font-weight: 300;
  max-width: 56ch;
  line-height: 1.35;
}
.proof-cta__text strong { color: var(--bone); font-weight: 500; }

/* ── 17.6 INLINE CTA (após Problema/Diferencial/etc.) ──── */

.inline-cta {
  margin-top: clamp(56px, 7vw, 88px) !important;
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3.6vw, 52px);
  border-radius: var(--r-xl);
  background: rgba(245, 240, 232, 0.04);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(245, 240, 232, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(245, 240, 232, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 24px 48px -20px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.inline-cta p {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--bone-90);
  font-weight: 300;
  flex: 1;
  min-width: 240px;
  line-height: 1.35;
}
.inline-cta p .serif {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--bone);
}
@media (max-width: 640px) {
  .inline-cta { flex-direction: column; align-items: stretch; gap: var(--s-4); }
  .inline-cta p { min-width: 0; }
  .inline-cta .btn { justify-content: center; }
}

/* ── 17.7 FORM-HEAD ALT (atalho WhatsApp acima do form) ── */

.form-head__alt {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
  flex-wrap: wrap;
  justify-content: center;
}
.form-head__alt-divider {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-40);
}

/* ── 17.8 FAB WHATSAPP (botão flutuante) ───────────────── */

.fab-wa {
  position: fixed;
  bottom: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #0A0A0A;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 12px 32px -8px rgba(37, 211, 102, 0.55),
    0 4px 12px -4px rgba(0, 0, 0, 0.45);
  transition: transform var(--t-base) var(--ease-out-quart),
              box-shadow var(--t-base) var(--ease-out-quart);
  text-decoration: none;
  user-select: none;
  /* Aparece com fade ao scrollar */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.fab-wa[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab-wa:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 18px 40px -10px rgba(37, 211, 102, 0.6),
    0 6px 14px -4px rgba(0, 0, 0, 0.5);
  color: #0A0A0A;
}
.fab-wa svg { flex-shrink: 0; }
.fab-wa__label {
  /* Em mobile, esconde label e fica só ícone */
}
/* Pulso sutil quando aparece */
.fab-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: fabPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 540px) {
  .fab-wa {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  .fab-wa__label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-wa::after { animation: none; }
}

/* CTA nav: ajusta WhatsApp green */
.nav__cta {
  background: #25D366;
  color: #0A0A0A;
}
.nav__cta:hover {
  background: #1FB955;
  color: #0A0A0A;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
}
.nav__cta svg { flex-shrink: 0; }

/* ── 18. PRINT ─────────────────────────────────────────── */

@media print {
  .nav, .grain, .cursor, .hero-bg, .section-bg, .form, .foot, .fab-wa, .inline-cta { display: none; }
  body { background: white; color: black; cursor: auto; }
  .display, .h2 { color: black; }
}
