/* ═══════════════════════════════════════════════════════════════
   KRYVEN — “A precisão é a estética”
   Tokens: tailwind.config.js v1.1 (fonte de verdade da marca)
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Sora";
  src: url("../assets/fonts/Sora-Variable.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/SpaceGrotesk-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* cor — tokens oficiais */
  --ink-900: #0F1116;
  --ink-800: #151820;
  --slate-700: #1E233C;
  --slate-600: #2A3054;
  --violet-500: #6A00FF;
  --violet-400: #8B2BFF;
  --violet-300: #A876FF;
  --violet-100: #E0D0FF;
  --mist-100: #E6E8EE;
  --mist-200: #C9CDD8;
  --line: rgba(201, 205, 216, 0.14);

  /* motion — assinatura da marca */
  --ease-brand: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 320ms;

  --glow-brand: 0 0 12px rgba(106, 0, 255, 0.35);

  /* tipo */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;

  /* espaço fluido */
  --space-section: clamp(7rem, 14vw, 12rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 68ch;

  /* z-scale semântica */
  --z-canvas: 0;
  --z-content: 2;
  --z-header: 10;
  --z-progress: 11;
  --z-loader: 20;
  --z-cursor: 30;
}

/* ── reset enxuto ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* sem scroll-behavior:smooth — conflita com o Lenis (feedback loop) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink-900);
  color: var(--mist-100);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--violet-500); color: #fff; }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: 1rem; left: 1rem; z-index: var(--z-loader);
  background: var(--violet-500); color: #fff;
  padding: 0.6rem 1rem; border-radius: 8px; text-decoration: none;
  transform: translateY(calc(-100% - 2rem));
  transition: transform var(--dur-base) var(--ease-brand);
}
.skip-link:focus { transform: translateY(0); }

/* ═══════════════ LOADER ═══════════════ */
.loader {
  position: fixed; inset: 0; z-index: var(--z-loader);
  background: var(--ink-900);
  display: grid; place-items: center;
  transition: opacity 480ms var(--ease-brand), visibility 480ms;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { display: grid; justify-items: center; gap: 1.4rem; }
.loader__mark img { width: 52px; height: auto; }
.loader__bar {
  width: 120px; height: 2px; background: var(--slate-700);
  border-radius: 999px; overflow: hidden;
}
.loader__fill {
  display: block; height: 100%; width: 100%;
  background: var(--violet-500);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 200ms linear;
}

/* ═══════════════ PROGRESSO ═══════════════ */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: var(--z-progress); pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: var(--violet-500);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  transition: transform 400ms var(--ease-brand),
              background-color var(--dur-slow) var(--ease-brand),
              border-color var(--dur-slow) var(--ease-brand);
  border-bottom: 1px solid transparent;
}
.header.is-solid {
  background: rgba(15, 17, 22, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header.is-hidden { transform: translateY(-110%); }
.header__inner {
  max-width: 1280px; margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; gap: 2.5rem;
}
.header__logo img { width: clamp(120px, 12vw, 150px); height: auto; }
.header__nav {
  display: flex; gap: 2rem; margin-left: auto;
}
.header__nav a {
  text-decoration: none; color: var(--mist-200);
  font-size: 0.95rem; letter-spacing: 0.01em;
  transition: color var(--dur-base) var(--ease-brand);
}
.header__nav a:hover { color: var(--mist-100); }

/* ═══════════════ BOTÕES ═══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600; text-decoration: none;
  border-radius: 12px;
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
  transition: background-color var(--dur-base) var(--ease-brand),
              color var(--dur-base) var(--ease-brand),
              box-shadow var(--dur-slow) var(--ease-brand),
              border-color var(--dur-base) var(--ease-brand);
  will-change: transform;
}
.btn--primary {
  background: var(--violet-500); color: #fff;
}
.btn--primary:hover {
  background: var(--violet-400);
  box-shadow: var(--glow-brand), 0 0 32px rgba(106, 0, 255, 0.28);
}
.btn--ghost {
  border: 1px solid var(--slate-600); color: var(--mist-100);
}
.btn--ghost:hover { border-color: var(--violet-300); color: var(--violet-100); }
.btn--small { padding: 0.6rem 1.15rem; font-size: 0.88rem; border-radius: 9px;
  background: var(--violet-500); color: #fff; white-space: nowrap; }
.btn--small:hover { background: var(--violet-400); box-shadow: var(--glow-brand); }
.btn--big {
  padding: 1.35rem 3rem; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  border-radius: 16px;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-content: center;
  padding: clamp(7rem, 16vh, 10rem) var(--gutter) 5.5rem;
  overflow: clip;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: var(--z-canvas);
  width: 100%; height: 100%;
}
.hero__content {
  position: relative; z-index: var(--z-content);
  max-width: 1280px; margin-inline: auto; width: 100%;
  pointer-events: none;
}
.hero__content a { pointer-events: auto; }

.hero__annotation {
  position: absolute; z-index: var(--z-content);
  top: clamp(5.4rem, 12vh, 7.5rem); left: var(--gutter);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.8125rem; letter-spacing: 0.09em;
  color: var(--mist-200); text-transform: uppercase;
}
.hero__annotation-tick {
  width: 56px; height: 1px; background: var(--violet-500);
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 14ch;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--violet-300); }

.hero__sub {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--mist-200);
  max-width: 44ch;
  text-wrap: pretty;
}
.hero__actions {
  margin-top: 2.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
}

.hero__foot {
  position: absolute; z-index: var(--z-content);
  left: var(--gutter); right: var(--gutter); bottom: 2rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hero__scrollcue {
  width: 1px; height: 56px; background: var(--slate-600);
  position: relative; overflow: hidden;
}
.hero__scrollcue span {
  position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--violet-300);
  animation: cue 2.2s var(--ease-brand) infinite;
}
@keyframes cue { 60%, 100% { top: 110%; } }
.hero__hint {
  font-size: 0.8125rem; color: var(--mist-200); opacity: 0.75;
  max-width: 34ch; text-align: right;
}

/* ═══════════════ CABEÇALHOS DE SEÇÃO ═══════════════ */
.section-head {
  max-width: 1280px; margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid; gap: 1.25rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.15; letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head p {
  color: var(--mist-200); font-size: 1rem; max-width: 42ch;
  justify-self: end; text-wrap: pretty;
}

/* ═══════════════ MANIFESTO ═══════════════ */
.manifesto {
  position: relative;
  padding: var(--space-section) var(--gutter);
  overflow: clip;
}
.manifesto__inner {
  max-width: 1100px; margin-inline: auto;
  position: relative; z-index: var(--z-content);
  display: grid; gap: 1.2rem;
}
.manifesto__line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.3; letter-spacing: -0.015em;
  color: var(--mist-100);
  text-wrap: balance;
}
.manifesto__line--strong { font-weight: 700; }
.manifesto__punch {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid; gap: 0.4rem;
}
.manifesto__punch-a, .manifesto__punch-b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  line-height: 1.1; letter-spacing: -0.025em;
}
.manifesto__punch-b { color: var(--violet-300); }

.manifesto [data-reveal-words] .w {
  display: inline-block;
}
.js .manifesto [data-reveal-words] .w { opacity: 0.13; }

.manifesto__ghost {
  position: absolute; z-index: var(--z-canvas);
  right: -12%; top: 50%;
  width: clamp(320px, 42vw, 640px); height: auto;
  opacity: 0.05;
  pointer-events: none;
}

/* ═══════════════ DORES → RESPOSTAS ═══════════════ */
.dores {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--ink-800);
  border-block: 1px solid var(--line);
  overflow: clip;
}
.dores .section-head, .dores__list { position: relative; z-index: var(--z-content); }
.dores__list {
  list-style: none;
  max-width: 1280px; margin-inline: auto;
  padding-inline: var(--gutter);
  border-top: 1px solid var(--line);
}
.dores__row { border-bottom: 1px solid var(--line); }
.dores__trigger {
  width: 100%; text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 72px minmax(0, 1fr);
  align-items: center; gap: 1.5rem;
  padding: 1.9rem 1.4rem;
  border-radius: 8px;
  transition: background-color var(--dur-slow) var(--ease-brand);
}
.dores__dor {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--mist-100);
  transition: color var(--dur-base) var(--ease-brand),
              transform var(--dur-slow) var(--ease-brand);
}
.dores__arrow {
  height: 1px; background: var(--slate-600); position: relative;
  transition: background-color var(--dur-slow) var(--ease-brand);
}
.dores__arrow::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 9px; height: 9px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  color: var(--slate-600);
  transform: translateY(-50%) rotate(45deg);
  transition: color var(--dur-slow) var(--ease-brand);
}
.dores__resposta {
  color: var(--mist-200); font-size: 1rem; line-height: 1.55;
  opacity: 0.35;
  transform: translateX(-8px);
  transition: opacity var(--dur-slow) var(--ease-brand),
              transform var(--dur-slow) var(--ease-brand),
              color var(--dur-slow) var(--ease-brand);
  text-wrap: pretty;
}
.dores__trigger:hover, .dores__trigger:focus-visible {
  background: var(--ink-800);
}
.dores__trigger:hover .dores__dor {
  color: var(--violet-100);
  transform: translateX(0.65rem);
}
.dores__trigger:hover .dores__arrow { background: var(--violet-500); }
.dores__trigger:hover .dores__arrow::after { color: var(--violet-300); }
.dores__trigger:hover .dores__resposta,
.dores__trigger:focus-visible .dores__resposta {
  opacity: 1; transform: translateX(0); color: var(--mist-100);
}

/* ═══════════════ SERVIÇOS ═══════════════ */
.servicos {
  position: relative;
  padding: var(--space-section) 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 71px, rgba(201, 205, 216, 0.045) 71px 72px),
    repeating-linear-gradient(90deg, transparent 0 71px, rgba(201, 205, 216, 0.045) 71px 72px);
  overflow: clip;
}
.servicos .section-head, .servicos__wrap { position: relative; z-index: var(--z-content); }
.servicos__wrap {
  max-width: 1280px; margin-inline: auto;
  padding-inline: var(--gutter);
}
.servicos__grid {
  display: grid; gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}
.servico {
  grid-column: span 2;
  background: var(--ink-900);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  min-height: 260px;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: background-color var(--dur-slow) var(--ease-brand);
}
.servico--wide { grid-column: span 3; }
.servico--full {
  grid-column: 1 / -1;
  min-height: 0;
  flex-direction: row; align-items: center;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.servico--full .servico__glyph { margin-bottom: 0; flex: none; }
.servico--full h3 { margin-bottom: 0.35rem; }
.servico:hover { background: var(--ink-800); }
.servico__glyph {
  width: 44px; height: 44px;
  stroke: var(--violet-300); stroke-width: 1.6;
  fill: none; stroke-linecap: square;
  margin-bottom: auto;
}
.servico__glyph path {
  stroke-dasharray: 220; stroke-dashoffset: 0;
  transition: stroke var(--dur-slow) var(--ease-brand);
}
.js .servico:hover .servico__glyph path {
  animation: draw 900ms var(--ease-brand);
}
@keyframes draw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
.servico h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em;
}
.servico p { color: var(--mist-200); font-size: 0.96rem; line-height: 1.6; text-wrap: pretty; }

/* ═══════════════ METODOLOGIA ═══════════════ */
.metodo { position: relative; }
.metodo__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4rem, 8vh, 6rem);
  overflow: clip;
}
.section-head--inpin { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
/* base (sem JS / movimento reduzido): pilha legível */
.metodo__track {
  display: flex; flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-inline: var(--gutter);
  will-change: transform;
}
/* com JS: percurso lateral em qualquer tela */
.js .metodo__track { flex-direction: row; }
.fase {
  flex: 0 0 clamp(300px, 34vw, 460px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(160deg, var(--ink-800) 0%, var(--ink-900) 70%);
  display: grid; gap: 1rem; align-content: start;
  transition: border-color var(--dur-slow) var(--ease-brand);
}
.fase:hover { border-color: rgba(168, 118, 255, 0.4); }
.fase__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--violet-300);
}
.fase h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em;
}
.fase p { color: var(--mist-200); font-size: 0.98rem; line-height: 1.62; }
.fase__entrega {
  margin-top: 0.4rem;
  color: var(--violet-100) !important;
  font-size: 0.9rem !important;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* ═══════════════ POSICIONAMENTO — imersão violeta (drench) ═══════════════ */
.posicao {
  position: relative;
  padding: var(--space-section) var(--gutter);
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(139, 43, 255, 0.35), transparent 55%),
    linear-gradient(165deg, #4700A8 0%, #34007E 55%, #23004F 100%);
  overflow: clip;
}
.posicao__inner {
  position: relative; z-index: var(--z-content);
  max-width: 1120px; margin-inline: auto;
}
.posicao__marca {
  position: absolute; z-index: var(--z-canvas);
  right: -6%; top: 8%;
  width: clamp(380px, 46vw, 720px); height: auto;
  opacity: 0.07;
  pointer-events: none;
}
.posicao__quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.25; letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--violet-100);
}
.posicao__quote em {
  font-style: normal; color: #ffffff;
}
.js .posicao [data-reveal-words] .w { opacity: 0.16; }
.posicao [data-reveal-words] .w { display: inline-block; }
.posicao__apoio {
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1.15rem; max-width: 52ch;
}
.pilares {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 4rem;
}
.pilares__item dt {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: #ffffff;
  display: flex; align-items: center; gap: 0.75rem;
}
.pilares__item dt::before {
  content: ""; width: 10px; height: 10px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
  flex: none;
}
.pilares__item dd {
  margin-top: 0.6rem; color: var(--violet-100);
  font-size: 0.98rem; line-height: 1.65; text-wrap: pretty;
}

/* ═══════════════ CONTATO ═══════════════ */
.contato {
  position: relative;
  padding: var(--space-section) var(--gutter);
  overflow: clip;
  border-top: 1px solid var(--line);
}
.contato__canvas {
  position: absolute; inset: 0; z-index: var(--z-canvas);
  width: 100%; height: 100%; opacity: 0.5;
}
.contato__inner {
  position: relative; z-index: var(--z-content);
  max-width: 880px; margin-inline: auto;
  text-align: center;
  display: grid; justify-items: center; gap: 1.6rem;
}
.contato__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12; letter-spacing: -0.025em;
  text-wrap: balance;
}
.contato__inner > p {
  color: var(--mist-200); font-size: 1.1rem; max-width: 46ch; text-wrap: pretty;
}
.contato .btn--big { margin-top: 0.8rem; }
.contato__alt { font-size: 0.95rem; color: var(--mist-200); margin-top: 0.5rem; }
.contato__alt a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--violet-300); text-decoration: none;
  transition: color var(--dur-base) var(--ease-brand);
}
.contato__alt a.ig-link { color: #d62976 !important; }
.contato__alt a.ig-link:hover { color: #f53187 !important; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-800);
}
.footer__inner {
  max-width: 1280px; margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  display: grid; gap: 4rem;
}
.footer__main {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
}
.footer__brand img { width: 190px; height: auto; }
.footer__brand p {
  margin-top: 1.6rem; color: var(--mist-200);
  font-size: 0.98rem; line-height: 1.7; max-width: 52ch; text-wrap: pretty;
}
.footer__links-group {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
  justify-items: end; text-align: right;
}
.footer__title {
  font-family: var(--font-display);
  font-weight: 600; color: #ffffff; font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer__nav {
  display: grid; gap: 0.8rem;
}
.footer__nav a {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--mist-200); font-size: 0.95rem; text-decoration: none;
  transition: color var(--dur-base) var(--ease-brand);
}
.footer__nav a:hover { color: var(--violet-100); }

.footer__kryven-link { color: var(--violet-300) !important; }
.footer__kryven-link:hover { color: var(--violet-100) !important; }

.footer__ig-link { color: #d62976 !important; }
.footer__ig-link:hover { color: #f53187 !important; }
.footer__punchline {
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.footer__punchline p {
  font-family: var(--font-display);
  font-weight: 700; color: var(--mist-100);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}
.footer__punchline span { color: var(--violet-300); }

.footer__base {
  border-top: 1px solid var(--line);
  background: var(--ink-900);
  padding: 1.25rem var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--mist-200); opacity: 0.9;
}
.footer__socials {
  display: flex; gap: 1.5rem;
}
.footer__socials a {
  color: var(--violet-300); text-decoration: none;
  transition: color var(--dur-base) var(--ease-brand);
}
.footer__socials a:hover { color: var(--violet-100); }

/* ═══════════════ CURSOR DE PRECISÃO ═══════════════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: var(--z-cursor);
  width: 34px; height: 34px;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
}
.cursor::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(168, 118, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  transform: scale(1);
  transition: transform var(--dur-slow) var(--ease-brand),
              border-color var(--dur-slow) var(--ease-brand),
              background-color var(--dur-slow) var(--ease-brand);
}
.cursor::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--violet-300);
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover::before {
  transform: scale(1.65);
  border-color: var(--violet-300);
  background: rgba(106, 0, 255, 0.08);
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ═══════════════ ESTADOS INICIAIS DE ANIMAÇÃO (só com JS) ═══════════════ */
.js .hero__line, .js .hero__sub, .js .hero__actions, .js .hero__annotation {
  opacity: 0; transform: translateY(28px);
}
.js .section-head h2, .js .section-head p { opacity: 0; transform: translateY(24px); }
.js .dores__row { opacity: 0; transform: translateY(18px); }
.js .servico { opacity: 0; transform: translateY(26px); }
.js .pilares__item { opacity: 0; transform: translateY(20px); }
.js .posicao__apoio, .js .contato__inner > * { opacity: 0; transform: translateY(22px); }
.js .footer__inner { opacity: 0; }

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 980px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .servico, .servico--wide { grid-column: span 1; min-height: 0; }
  .servico--full { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head p { justify-self: start; }
  .pilares { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__links-group { justify-items: start; text-align: left; grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
  .header__nav { display: none; }
  .hero__foot { justify-content: center; }
  .hero__hint { display: none; }
  .hero__annotation { position: static; margin-bottom: 2.2rem; }
  .hero__annotation-tick { display: none; }
  .header__inner { gap: 1rem; }
  .btn--small { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
  .hero { padding-top: 6.5rem; }

  /* dores: respostas sempre visíveis (não há hover no touch) */
  .dores__trigger {
    grid-template-columns: 1fr;
    gap: 0.7rem; padding: 1.5rem 0.25rem;
  }
  .dores__arrow { display: none; }
  .dores__resposta { opacity: 1; transform: none; }
  .dores__resposta::before {
    content: "→ "; color: var(--violet-300);
  }

  /* metodologia: mesmo percurso lateral, cards compactos
     (o próximo card “espia” na borda — convite a continuar) */
  .js .fase {
    flex-basis: min(70vw, 280px);
    padding: 1.1rem 1rem;
    gap: 0.6rem;
  }
  .fase__num { font-size: 1.8rem; }
  .fase h3 { font-size: 1.05rem; }
  .fase p { font-size: 0.85rem; line-height: 1.45; }
  .fase__entrega { font-size: 0.78rem !important; padding-top: 0.6rem; }
  .section-head--inpin h2 { font-size: clamp(1.4rem, 5vw, 1.7rem); }
  .metodo__rail { margin-top: 1rem; }

  .servicos__grid { grid-template-columns: 1fr; }
}

/* ═══════════════ V2 · MARQUEE DE MARCA ═══════════════ */
.marquee {
  overflow: clip;
  border-block: 1px solid var(--line);
  background: var(--ink-800);
  padding-block: 1.15rem;
}
.marquee--violet {
  background: #23004F;
  border-color: rgba(224, 208, 255, 0.18);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track--reverse { animation-direction: reverse; }
.marquee__group {
  display: flex; align-items: center;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  padding-right: clamp(1.6rem, 3.5vw, 3rem);
}
.marquee__word { height: clamp(17px, 2vw, 24px); width: auto; opacity: 0.9; }
.marquee__sym { height: clamp(20px, 2.3vw, 27px); width: auto; opacity: 0.9; }
.marquee__tag {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  font-weight: 600; letter-spacing: 0.04em;
  color: var(--violet-300); white-space: nowrap;
}
.marquee--violet .marquee__tag { color: var(--violet-100); }
.marquee__sep {
  width: 9px; height: 9px; flex: none;
  background: var(--violet-500);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
}
.marquee--violet .marquee__sep { background: var(--violet-100); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ V2 · GLOWS DE FUNDO (parallax) ═══════════════ */
.glow {
  position: absolute; z-index: var(--z-canvas);
  width: 68vmin; height: 68vmin;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(106, 0, 255, 0.17), transparent 72%);
  pointer-events: none;
}
.glow--right { right: -22vmin; top: 6%; }
.glow--left { left: -24vmin; bottom: 4%; }

/* ═══════════════ V2 · TRILHO DE PROGRESSO DA METODOLOGIA ═══════════════ */
.metodo__rail {
  grid-column: 1 / -1;
  display: block; height: 2px;
  margin-top: 1.6rem;
  background: var(--slate-600);
  overflow: hidden;
}
.metodo__rail span {
  display: block; height: 100%; width: 100%;
  background: var(--violet-500);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ═══════════════ V2 · CREST DO CONTATO ═══════════════ */
.contato__crest {
  width: clamp(98px, 12vw, 142px); height: auto;
  margin-bottom: 0.4rem;
}

/* footer com a versão principal (tagline embutida) */
.footer__brand img { width: min(300px, 72vw); }

/* ═══════════════ V2 · DINÂMICA TOUCH ═══════════════ */
/* linha de dor “acesa” conforme cruza o centro da tela (mobile) */
.dores__row.is-focus .dores__trigger { background: var(--ink-900); }
.dores__row.is-focus .dores__dor { color: var(--violet-100); }
.dores__row.is-focus .dores__resposta { color: var(--mist-100); }
.dores__row.is-focus .dores__resposta::before { color: var(--violet-300); }

@media (hover: none) {
  .btn { transition: background-color var(--dur-base) var(--ease-brand),
                     box-shadow var(--dur-base) var(--ease-brand),
                     transform var(--dur-fast) var(--ease-brand); }
  .btn:active { transform: scale(0.96); }
  .servico:active { background: var(--ink-800); }
}

/* ═══════════════ MOVIMENTO REDUZIDO ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .hero__line, .js .hero__sub, .js .hero__actions, .js .hero__annotation,
  .js .section-head h2, .js .section-head p, .js .dores__row, .js .servico,
  .js .pilares__item, .js .posicao__apoio, .js .contato__inner > *,
  .js .footer__inner {
    opacity: 1 !important; transform: none !important;
  }
  .js .manifesto [data-reveal-words] .w,
  .js .posicao [data-reveal-words] .w { opacity: 1 !important; }
  .hero__scrollcue span { animation: none; }
  .marquee__track { animation: none; }
  .metodo__rail span { transform: scaleX(1); }
  /* sem coreografia de pin: a metodologia volta a ser pilha */
  .js .metodo__track { flex-direction: column; }
  .js .fase { flex-basis: auto; }
  .loader { display: none; }
}
