.swipe-hint { display: none; }
/* O Seu Software: dark cinematográfico, Clash Display + Geist. Tema escuro fixo. */

@font-face { font-family: "Clash Display"; src: url("fonts/clash-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("fonts/clash-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Geist"; src: url("fonts/geist-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Geist"; src: url("fonts/geist-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Geist Mono"; src: url("fonts/geist-mono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }

:root {
  color-scheme: dark;
  --bg: #0e0e10;
  --bg-raised: #141417;
  --ink: #f2f2f0;
  --ink-soft: #a7a7b1;
  --line: #232329;
  --accent: #5a78ff;
  --accent-soft: rgb(90 120 255 / 0.35);
  --accent-ink: #0b0d14;
  --radius: 12px;
  --pad-x: clamp(1.25rem, 4.5vw, 5rem);
  --display: "Clash Display", "Geist", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a, button, summary, label { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus-visible { top: 1rem; }

::selection { background: var(--accent); color: var(--accent-ink); }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar discreta */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2c33; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a42; }
@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: #2c2c33 var(--bg); }
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Cortina de entrada (só com JS + motion) */
.curtain {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  align-items: center;
  justify-content: center;
}
.js .curtain { display: flex; }
.curtain-mark { width: 72px; height: 72px; }
.curtain-mark .mark-glint { stroke-width: 0.7; }
.brand em { font-style: normal; color: var(--accent); }

/* Grão fixo, fora do fluxo de scroll */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: -0.015em; text-wrap: balance; }
p { text-wrap: pretty; }

.display { font-size: clamp(2rem, 4.6vw, 3.6rem); max-width: 20ch; }

.section-lead { margin-top: 1rem; color: var(--ink-soft); max-width: 48ch; }

main { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ---------- Nav ---------- */

.nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 220px;
  background: var(--bg);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  height: calc(72px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--pad-x) 0;
  background: linear-gradient(rgb(14 14 16 / 0.85), rgb(14 14 16 / 0.55) 70%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgb(14 14 16 / 0.92);
  box-shadow: 0 1px 0 var(--line);
}

/* Burger e menu mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 90;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu.open { opacity: 1; visibility: visible; }

.menu nav { display: grid; gap: 0.4rem; }
.menu nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 9vw, 3.2rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s ease;
}
.menu nav > a:last-child { color: var(--accent); }
.menu.open nav a { opacity: 1; transform: none; }
.menu nav a { transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease; }
.menu.open nav a:nth-child(1) { transition-delay: 0.08s; }
.menu.open nav a:nth-child(2) { transition-delay: 0.14s; }
.menu.open nav a:nth-child(3) { transition-delay: 0.2s; }
.menu.open nav a:nth-child(4) { transition-delay: 0.26s; }
.menu.open nav a:nth-child(5) { transition-delay: 0.32s; }
.menu.open nav a:nth-child(6) { transition-delay: 0.38s; }
.menu.open nav a:nth-child(7) { transition-delay: 0.44s; }
.menu.open nav a:nth-child(8) { transition-delay: 0.5s; }
.menu.open nav a:nth-child(9) { transition-delay: 0.56s; }

.stream.off .stream-card { animation-play-state: paused; }

/* Menu mobile v2: fica SOB o header (para o X fechar), numerado como os capítulos, CTA em botão */
.menu { z-index: 40; flex-direction: column; align-items: stretch; justify-content: center; padding-top: calc(72px + env(safe-area-inset-top, 0px)); }
.menu nav { counter-reset: mi; gap: 0; }
.menu nav a {
  font-size: clamp(1.55rem, 6vw, 2rem);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.menu nav a:first-child { border-top: 0; }
.menu nav > a::before {
  content: attr(data-n);
  min-width: 1.6rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  color: var(--accent);
}
.menu nav > a:last-child {
  margin-top: 1.6rem;
  border-top: 0;
  background: var(--accent);
  color: #fff;
  justify-content: center;
  border-radius: 999px;
  font-family: "Geist", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  padding: 1rem 1.4rem;
}
.menu nav a:last-child::before { content: none; }
.menu .menu-foot {
  position: static;
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.85rem;
}
.menu {
  overflow-y: auto;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
}
.menu nav a:last-child { margin-top: 1.4rem; }

.menu-foot {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.menu-foot a { color: var(--ink); text-decoration: none; }

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark { width: 33px; height: 33px; flex: none; filter: drop-shadow(0 4px 12px rgb(0 0 0 / 0.55)); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease; }
.brand:hover .brand-mark { transform: translateY(-1.5px) scale(1.04); filter: drop-shadow(0 6px 16px rgb(90 120 255 / 0.3)); }
.mark-glyph { fill: var(--ink); }
.mark-glint { stroke: var(--accent); stroke-width: 0.8; }
.mark-dot { fill: var(--accent); }

.nav nav { display: flex; gap: clamp(1.05rem, 1.9vw, 1.75rem); margin-left: auto; }

.nav nav a {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav nav a:hover { color: var(--ink); }
.nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav nav a.active { color: var(--ink); }
.nav nav a.active::after { transform: scaleX(1); transform-origin: left; background: var(--accent); }

/* ---------- Botões ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--ink); color: var(--bg); isolation: isolate; }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: inherit;
}

.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-soft); background: rgb(242 242 240 / 0.05); }

.btn-nav { padding: 0.6rem 1.3rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 46% 38% at 30% 34%, rgb(90 120 255 / 0.13), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; }

.threads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.plumb {
  position: absolute;
  top: 0;
  right: clamp(2rem, 12vw, 14rem);
  bottom: 34%;
  width: 2px;
  pointer-events: none;
}
.plumb-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--line), var(--accent-soft));
  transform-origin: top;
}
.plumb-dot {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-radius: 3px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.25rem, 8.2vw, 7.2rem);
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-title .hero-dot { color: var(--ink); }
.type-cursor {
  display: inline-block;
  width: 0.14em;
  height: 0.74em;
  margin-left: 0.05em;
  background: var(--accent);
  border-radius: 0.03em;
  transform: translateY(0.06em);
  animation: cursor-blink 0.85s steps(1) infinite;
}
@keyframes cursor-blink { 50% { opacity: 0; } }

.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero-title .line-inner { display: inline-block; will-change: transform; }

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  flex-wrap: wrap;
}

.hero-sub em { font-style: normal; font-weight: 600; color: var(--accent); }
.hero-eyebrow::before { content: none; }
.he-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  margin-right: 0.7rem;
  vertical-align: 0.08em;
  box-shadow: 0 0 12px rgb(90 120 255 / 0.7);
}
.hero-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.92;
  margin-bottom: 1.3rem;
}
.hero-sub {
  position: relative;
  z-index: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: var(--ink);
  opacity: 0.88;
  max-width: 44ch;
  line-height: 1.5;
}
.hero-sub::before {
  content: "";
  position: absolute;
  inset: -1.6rem 0;
  background: radial-gradient(ellipse 128% 100% at 50% 50%, rgb(14 14 16 / 0.95) 42%, rgb(14 14 16 / 0) 76%);
  z-index: -1;
  pointer-events: none;
}

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-cta { display: grid; gap: 0.7rem; justify-items: end; }
.hero-points { list-style: none; display: grid; gap: 0.5rem; justify-items: end; margin-top: 0.2rem; }

/* prova social do hero */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.15rem;
  padding: 0.62rem 1.15rem 0.62rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(20 20 26 / 0.6);
}
.hp-faces { display: inline-flex; flex-shrink: 0; }
.hp-faces img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  background: #e9eaec;
  box-shadow: 0 0 0 2px #101014;
}
.hp-faces img + img { margin-left: -0.6rem; }
.hp-body { display: grid; gap: 0.18rem; text-align: left; }
.hp-stars { display: inline-flex; gap: 0.1rem; color: var(--accent); }
.hp-stars svg { width: 1.02rem; height: 1.02rem; display: block; }
.hp-txt { font-size: 1rem; line-height: 1.25; color: rgb(242 242 240 / 0.78); }
.hp-txt strong { color: var(--ink); font-weight: 600; }
@media (max-width: 560px) {
  .hero-proof { padding: 0.55rem 0.95rem 0.55rem 0.6rem; gap: 0.7rem; }
  .hp-faces img { width: 2rem; height: 2rem; }
  .hp-faces img + img { margin-left: -0.62rem; }
  .hp-stars svg { width: 0.9rem; height: 0.9rem; }
  .hp-txt { font-size: 0.88rem; }
}
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-points li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgb(90 120 255 / 0.14);
  border: 1px solid rgb(90 120 255 / 0.35);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  flex: none;
}

/* Cartão 3D pós-hero (ContainerScroll em GSAP) */

.devicescroll { padding: clamp(2rem, 5vh, 3.4rem) 0 clamp(2.4rem, 6vh, 4rem); }
.ds-stage { perspective: 1000px; margin-top: clamp(2.2rem, 6vh, 4rem); }
.ds-card {
  max-width: 1100px;
  margin: 0 auto;
  transform-origin: center top;
  will-change: transform;
  transform-style: preserve-3d;
}
.ds-frame {
  border-radius: 24px;
  border: 1px solid rgb(242 242 240 / 0.14);
  background: #17171b;
  padding: clamp(8px, 1vw, 14px);
  box-shadow: 0 9px 20px rgb(0 0 0 / 0.3), 0 37px 37px rgb(0 0 0 / 0.26),
              0 84px 50px rgb(0 0 0 / 0.15), 0 149px 60px rgb(0 0 0 / 0.04);
  will-change: transform;
}
.ds-frame img { width: 100%; height: auto; display: block; border-radius: 14px; }
.ds-note {
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.3rem 0;
  margin: 0 calc(-1 * var(--pad-x));
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  opacity: 0.82;
  animation: marquee 36s linear infinite;
}
.marquee-track .mq-x { color: var(--accent); opacity: 1; }

.tick {
  width: 16px;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.55;
  transform: rotate(-24deg);
  flex: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Secções ---------- */

section { padding: clamp(4rem, 12vh, 8.5rem) 0; }

/* Grão de filme: materialidade sobre o preto chapado */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* Âncoras nativas (mobile sem Lenis): compensa o header fixo */
[id] { scroll-margin-top: calc(84px + env(safe-area-inset-top, 0px)); }

/* iOS: backdrop-filter em fixed descola o header durante o scroll — sem blur em touch */
@media (pointer: coarse) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(rgb(14 14 16 / 0.97) 55%, rgb(14 14 16 / 0.86) 80%, rgb(14 14 16 / 0));
  }
}

/* Prova em números */

.proof { padding: clamp(2.5rem, 7vh, 4.5rem) 0; }
.proof-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof-grid li { border-left: 1px solid var(--line); padding-left: 1.4rem; }
.proof-num {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.55rem;
  white-space: nowrap;
}
.proof-num em { font-style: normal; color: var(--accent); }
.proof-label { color: var(--ink-soft); font-size: 0.95rem; display: block; max-width: 24ch; }

/* Acompanhamento ao minuto (port do OrderTracking) */

.tracking-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.track { list-style: none; max-width: 460px; }
.track-step {
  position: relative;
  display: flex;
  gap: 1.2rem;
  padding-bottom: 1.9rem;
}
.track-step:last-child { padding-bottom: 0; }
.track-step::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 2px;
  width: 2px;
  background: var(--line);
}
.track-step.done::before { background: var(--accent); }
.track-step:last-child::before { display: none; }
.tk {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.track-step.done .tk { border-color: var(--accent); background: var(--accent); }
.track-step.done .tk::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}
.track-step.now .tk { border-color: var(--accent); }
.track-step.now .tk::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@media (prefers-reduced-motion: no-preference) {
  .track-step.now .tk { animation: tk-pulse 2s ease-in-out infinite; }
  @keyframes tk-pulse {
    50% { box-shadow: 0 0 0 8px rgb(90 120 255 / 0.15); }
  }
}
.track-step strong { display: block; font-weight: 500; }
.track-step em { font-style: normal; font-size: 0.88rem; color: var(--ink-soft); }
.track-step.now strong { color: var(--accent); }
@media (max-width: 900px) {
  .tracking-inner { grid-template-columns: 1fr; }
}

/* Resultados em colunas a rolar (port do TestimonialsColumn) */

.rev-wall {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  max-height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}
.rev-col { flex: 0 1 360px; min-width: 0; }
.rev-track { display: flex; flex-direction: column; gap: 1.25rem; }
@media (prefers-reduced-motion: no-preference) {
  .rev-track { animation: rev-scroll linear infinite; }
  .rev-col-1 .rev-track { animation-duration: 26s; }
  .rev-col-2 .rev-track { animation-duration: 34s; }
  .rev-col-3 .rev-track { animation-duration: 30s; }
  @keyframes rev-scroll { to { transform: translateY(-50%); } }
}
.rev-wall:hover .rev-track { animation-play-state: paused; }
.rev-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
}
.rev-card p { color: var(--ink); font-size: 1.02rem; line-height: 1.55; }
.rev-who {
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.rev-who strong { display: block; font-weight: 500; font-size: 0.92rem; }
.rev-who em {
  font-style: normal;
  display: block;
  margin-top: 0.25rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 1100px) { .rev-col-3 { display: none; } }
@media (max-width: 620px) { .rev-col-2 { display: none; } }
@media (max-width: 760px) {
  .rev-wall { max-height: 70vh; gap: 0.8rem; }
  .rev-card { padding: 1.1rem 1.15rem; border-radius: 14px; }
  .rev-card p { font-size: 0.9rem; line-height: 1.5; }
  .rev-who { margin-top: 0.9rem; padding-top: 0.7rem; }
  .rev-who strong { font-size: 0.85rem; }
  .rev-who em { font-size: 0.62rem; }
}

/* Compromissos: cláusulas assinadas */

.seal {
  position: absolute;
  top: -26px;
  right: clamp(1rem, 4vw, 3rem);
  width: clamp(190px, 20vw, 250px);
  display: block;
  transform: rotate(4deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 14px 30px rgb(0 0 0 / 0.5));
  z-index: 2;
}
.seal:hover { transform: rotate(0deg) scale(1.05); }
.seal-svg { width: 100%; height: auto; display: block; }
.seal-foil { mix-blend-mode: overlay; }
.sf { transform-origin: 130px 27px; }
@media (prefers-reduced-motion: no-preference) {
  .sf { animation: seal-foil 5s ease-in-out infinite; }
  .sf1 { transform: rotate(0deg); animation-delay: 0s; }
  .sf2 { transform: rotate(10deg); animation-delay: -0.6s; }
  .sf3 { transform: rotate(20deg); animation-delay: -1.2s; }
  .sf4 { transform: rotate(30deg); animation-delay: -1.8s; }
  .sf5 { transform: rotate(40deg); animation-delay: -2.4s; }
  .sf6 { transform: rotate(50deg); animation-delay: -3s; }
  .sf7 { transform: rotate(90deg); animation-delay: -3.6s; }
  @keyframes seal-foil {
    0%, 100% { rotate: 0deg; }
    50% { rotate: 12deg; }
  }
}
@media (max-width: 760px) {
  .seal { position: static; margin: 0 0 1.4rem auto; transform: rotate(3deg); }
}

.seal-award {
  top: auto;
  bottom: -26px;
  width: clamp(180px, 16vw, 216px);
  transform: rotate(-3deg);
}

.charter-panel {
  position: relative;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-raised);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 860px;
}
.charter-list { list-style: none; counter-reset: clause; display: grid; gap: 0.5rem; }
.charter-list li {
  counter-increment: clause;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 13px;
  background: rgb(255 255 255 / 0.025);
}
.charter-list li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 7px;
  background: rgb(90 120 255 / 0.16);
  color: var(--accent);
  font-size: 0.9rem;
}
.charter-list li { transition: border-color 0.35s ease, background-color 0.35s ease; }
@media (hover: hover) {
  .charter-list li:hover { border-color: rgb(90 120 255 / 0.25); background: rgb(90 120 255 / 0.05); }
}
.charter-list p { color: var(--ink); max-width: 56ch; line-height: 1.55; }
.charter-sign {
  margin-top: 1.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
}
.charter-sign svg { width: 22px; height: 10px; color: var(--ink-soft); }

.charter-cta { margin-top: clamp(1.8rem, 4vh, 2.6rem); display: grid; gap: 0.8rem; justify-items: start; }
.charter-sign em { font-style: normal; color: var(--accent); }

/* Manifesto e promessas */

.manifesto-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 46ch;
}
.manifesto-coda {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 46ch;
  margin-top: clamp(2.2rem, 6vh, 3.5rem);
}
.manifesto-coda .wa { color: var(--accent); }
.manifesto-text .w { display: inline-block; }

.promises {
  list-style: none;
  margin-top: clamp(3rem, 8vh, 5rem);
}

.promises li {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}
.promises h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.promises p { color: var(--ink-soft); font-size: 1rem; max-width: 52ch; }

/* Serviços */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: clamp(3rem, 7vh, 5rem);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0.4rem 1.3rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-raised);
  overflow: hidden;
}
.service-icon {
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  padding: 13px;
  border: 1px solid rgb(90 120 255 / 0.2);
  border-radius: 15px;
  background: rgb(90 120 255 / 0.1);
  color: var(--accent);
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service:hover .service-icon {
  border-color: rgb(90 120 255 / 0.5);
  background: rgb(90 120 255 / 0.18);
  transform: scale(1.05);
}
.svc-cena {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgb(255 255 255 / 0.028);
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgb(242 242 240 / 0.72);
  transition: color 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.svc-cena::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.42rem;
  border-radius: 2px;
  background: var(--accent);
}
@media (hover: hover) {
  .service:hover .svc-cena {
    color: var(--ink);
    border-color: rgb(90 120 255 / 0.26);
    background: rgb(90 120 255 / 0.06);
  }
}
}
}
.service { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
@media (hover: hover) {
  .service:hover { transform: translateY(-5px); }
}
.service:hover .service-icon { color: var(--accent); }
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service:hover::before { transform: scaleX(1); }



.service h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.service p { color: var(--ink-soft); max-width: 44ch; }

/* IA: o futuro é agora */

.ai-inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sec-kicker { position: relative; }
.sk-ghost {
  position: absolute;
  right: 0;
  top: -0.4em;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(6.5rem, 15vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgb(242 242 240 / 0.05);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.lamp .sk-ghost { display: none; }
.sec-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.sec-kicker .sk-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.sec-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.lamp .sec-kicker { justify-content: center; }
.lamp .sec-kicker::after { display: none; }

.ai-list {
  list-style: none;
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
  display: grid;
  counter-reset: ai;
  max-width: 54ch;
}
.ai-list li {
  counter-increment: ai;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  transition: border-color 0.4s ease;
}
.ai-list li:last-child { border-bottom: 1px solid var(--line); }
.ai-list li::before {
  content: "";
  grid-row: 1 / span 2;
  width: 7px;
  height: 7px;
  margin-top: 0.72em;
  border-radius: 2px;
  background: var(--accent);
}
.ai-list strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--ink);
}
.ai-list span { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }
@media (hover: hover) {
  .ai-list li:hover { border-color: rgb(90 120 255 / 0.4); }
}
@media (max-width: 560px) {
  .ai-list li { padding: 0.95rem 0; gap: 0.15rem 0.8rem; }
  .ai-list strong { font-size: 1.04rem; }
  .ai-list span { font-size: 0.93rem; }
}

.ai-copy .btn { margin-top: clamp(1.8rem, 4vh, 2.6rem); }

.ai-scene {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ai-scene img, .ai-scene picture { width: 100%; height: auto; display: block; }

@media (max-width: 900px) {
  .ai-inner { grid-template-columns: 1fr; }
  .ai-scene { margin-top: 1.4rem; }
}

/* Na prática: cenários expandíveis por sector */

.anyone-list { list-style: none; display: grid; gap: 0.5rem; margin-top: clamp(2.5rem, 6vh, 4rem); }

.anyone-row {
  border: 1px solid transparent;
  border-radius: 15px;
  background: rgb(255 255 255 / 0.025);
  transition: border-color 0.35s ease, background-color 0.35s ease;
}
.anyone-row:hover { border-color: #2c2c34; }
.anyone-row.open {
  border-color: rgb(90 120 255 / 0.28);
  background: linear-gradient(100deg, rgb(90 120 255 / 0.08), rgb(90 120 255 / 0.015));
}

.anyone-summary {
  display: grid;
  grid-template-columns: auto 1fr 2.1rem;
  grid-template-areas: "icone nome mais" "icone texto mais";
  column-gap: 1.15rem;
  row-gap: 0.25rem;
  align-items: center;
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.anyone-sector {
  grid-area: nome;
  align-self: end;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.anyone-row.open .anyone-sector { color: var(--accent); }
.anyone-what { grid-area: texto; align-self: start; font-size: 0.94rem; color: var(--ink-soft); max-width: 52ch; }

.anyone-summary::after {
  content: "+";
  grid-area: mais;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, border-color 0.3s ease;
}
.anyone-summary:hover .anyone-sector { color: var(--accent); }
.anyone-summary:hover::after { color: var(--accent); border-color: var(--accent); }
.anyone-row.open .anyone-summary::after { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }

.anyone-row-cta {
  border-color: rgb(90 120 255 / 0.3);
  background: linear-gradient(100deg, rgb(90 120 255 / 0.11), rgb(90 120 255 / 0.02));
}
.anyone-row-cta .anyone-sector { color: var(--accent); }
.anyone-row-cta .anyone-summary::after { content: "\2192"; }

.anyone-thumb {
  grid-area: icone;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: 1px solid rgb(90 120 255 / 0.18);
  background: rgb(90 120 255 / 0.1);
  align-self: center;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.anyone-thumb svg { width: 24px; height: 24px; }
.anyone-summary:hover .anyone-thumb,
.anyone-row.open .anyone-thumb { transform: scale(1.06); border-color: rgb(90 120 255 / 0.5); background: rgb(90 120 255 / 0.18); }

.anyone-detail { overflow: hidden; }
.js .anyone-detail { height: 0; opacity: 0; }

.anyone-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: 0.4rem 0 2.2rem;
  align-items: center;
}
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.ba h4 { font-family: "Geist", sans-serif; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.8rem; }
.ba .ba-hoje h4 { color: var(--ink-soft); }
.ba .ba-depois h4 { color: var(--accent); }
.ba ul { list-style: none; display: grid; gap: 0.7rem; }
.ba li { position: relative; padding-left: 1.5rem; font-size: 0.97rem; color: var(--ink-soft); }
.ba-depois li { color: var(--ink); }
.ba-hoje li::before { content: "\2715"; position: absolute; left: 0; top: 0.12rem; font-size: 0.72rem; color: rgb(242 242 240 / 0.32); }
.ba-depois li::before { content: "\2713"; position: absolute; left: 0; top: 0.05rem; font-size: 0.8rem; font-weight: 600; color: var(--accent); }
@media (max-width: 560px) { .ba { grid-template-columns: 1fr; } }

.anyone-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
}
.anyone-media img { width: 100%; height: 100%; object-fit: cover; }
.anyone-detail h4 { font-family: "Geist", sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--accent); margin-bottom: 0.45rem; }
.anyone-detail p { color: var(--ink-soft); font-size: 1rem; }

/* Apps móveis: quatro telemóveis */

.phones {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
  margin-top: clamp(3rem, 7vh, 5rem);
  padding-bottom: 2.5rem;
}
.phone {
  position: relative;
  flex: 0 0 clamp(190px, 17vw, 240px);
  border-radius: 44px;
  padding: 10px;
  background: #101013;
  border: 1px solid rgb(242 242 240 / 0.16);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08), 0 30px 70px rgb(0 0 0 / 0.55);
}
.phone::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 15px;
  border-radius: 9px;
  background: #050507;
  z-index: 1;
}
.phone img { width: 100%; height: auto; display: block; border-radius: 34px; }
.ph1 { transform: rotate(-2.5deg) translateY(18px); }
.ph2 { transform: rotate(1deg) translateY(-8px); }
.ph3 { transform: rotate(-1deg) translateY(26px); }
.ph4 { transform: rotate(2.5deg); }
@media (prefers-reduced-motion: no-preference) {
  .phone { animation: phone-float 6s ease-in-out infinite alternate; will-change: transform; }
  .ph2 { animation-delay: -1.6s; }
  .ph3 { animation-delay: -3.1s; }
  .ph4 { animation-delay: -4.7s; }
  @keyframes phone-float {
    to { translate: 0 -18px; rotate: 1.3deg; }
  }
}
@media (max-width: 900px) {
  /* Nada cortado: os quatro ecrãs inteiros em 2x2, sem arrastar */
  .phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    overflow: visible;
    margin: 0;
    padding: 0;
    justify-content: stretch;
  }
  .phone { flex: none; width: 100%; }
  .phone img {
    border-radius: 20px;
    aspect-ratio: 5 / 7;
    object-fit: cover;
    object-position: top center;
  }
  .ph1, .ph2, .ph3, .ph4 { transform: none; }
}

/* Comparação */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(3rem, 7vh, 5rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.compare-col { padding: clamp(1.75rem, 4vw, 2.75rem); }
.compare-col h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
.compare-col ul { list-style: none; display: grid; gap: 1rem; }
.compare-col li { color: var(--ink-soft); padding-left: 1.4rem; position: relative; }
.compare-col li::before { position: absolute; left: 0; font-family: "Geist Mono", monospace; }

.compare-generic { border-right: 1px solid var(--line); }
.compare-generic li::before { content: "-"; color: var(--ink-soft); }

.compare-prumo {
  background: var(--bg-raised);
  box-shadow: inset 0 2px 0 var(--accent);
}
.compare-prumo li { color: var(--ink); }
.compare-prumo li::before { content: "+"; color: var(--accent); }

/* Trabalho: cartões que empilham no scroll */

.case-stack { margin-top: clamp(3rem, 7vh, 5rem); display: grid; gap: clamp(1.5rem, 3vw, 2.4rem); }
.case-card {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  will-change: transform;
}

.case-info h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); max-width: 20ch; }
.case-info > p { margin-top: 1rem; color: var(--ink-soft); max-width: 52ch; }

.case-out {
  margin-top: 1.35rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgb(90 120 255 / 0.2);
  border-radius: 13px;
  background: linear-gradient(100deg, rgb(90 120 255 / 0.09), rgb(90 120 255 / 0.02));
  max-width: 46ch;
}
.case-out-lbl {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-out p { color: var(--ink); font-weight: 500; line-height: 1.5; }

.case-card { transition: border-color 0.4s ease; }
@media (min-width: 901px) {
  .case-card:nth-child(even) .case-media { order: -1; }
}
.case-card:hover { border-color: #34343c; }

.case-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; border: 1px solid var(--line); }
.case-media img { will-change: transform; }
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-card:hover .case-media img { transform: scale(1.04); }
.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgb(242 242 240 / 0.05), transparent 45%);
  pointer-events: none;
}

/* E mais, do mesmo estúdio */

.more-work { margin-top: clamp(3rem, 8vh, 5rem); }
.more-work h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.more-list { list-style: none; }
.more-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}
.more-thumb {
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.more-thumb img { width: 100%; height: 100%; object-fit: cover; }
.more-list h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.25rem; }
.more-list p { color: var(--ink-soft); font-size: 0.98rem; max-width: 62ch; }

/* Método */

.method { position: relative; }

.method-rail {
  position: absolute;
  top: clamp(4.5rem, 12vh, 8.5rem);
  bottom: clamp(4.5rem, 12vh, 8.5rem);
  left: calc(50% - 1px);
  width: 2px;
  background: var(--line);
}
.method-rail-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(0);
}

.method-head { margin-bottom: clamp(3rem, 8vh, 5rem); }

.method-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(4.5rem, 9vw, 8rem);
  row-gap: clamp(2.5rem, 6vh, 4rem);
  counter-reset: step;
}
.method-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  margin-bottom: 0.9rem;
  border-radius: 7px;
  background: rgb(90 120 255 / 0.16);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  color: var(--accent);
}

.method-step {
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-raised);
  opacity: 0.45;
  transition: opacity 0.5s ease, border-color 0.5s ease;
}
.method-step.active { opacity: 1; border-color: rgb(90 120 255 / 0.26); }
.method-step.active::before { background: var(--accent); color: #fff; }
.method-step:nth-child(even) { margin-top: clamp(3rem, 8vh, 5rem); }

.method-step h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.method-step .when {
  font-family: "Geist Mono", monospace;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.method-step p { color: var(--ink-soft); max-width: 44ch; }
.method-media {
  margin-top: 1.4rem;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.method-media img { width: 100%; height: auto; }

/* FAQ */

.faq-list { margin-top: clamp(2.5rem, 6vh, 4rem); max-width: 860px; }

.faq-item { border-top: 1px solid var(--line); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: "+";
  font-family: "Geist Mono", monospace;
  font-size: 1.4rem;
  color: var(--ink-soft);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }

.faq-body { overflow: hidden; }
.faq-body p { color: var(--ink-soft); max-width: 62ch; padding-bottom: 1.5rem; }

/* Pedido */

form { display: grid; gap: 1.6rem; }

.field { display: grid; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }

label { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }

input, textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.65rem 0.1rem;
  transition: border-color 0.3s ease;
}
textarea { resize: vertical; min-height: 7.5rem; }

input:focus-visible, textarea:focus-visible { outline: none; border-bottom-color: var(--accent); }

.field.invalid input, .field.invalid textarea { border-bottom-color: #e07b6d; }
.field-error { font-size: 0.85rem; color: #e07b6d; }
.field-help { font-size: 0.85rem; color: var(--ink-soft); }

.btn-submit { justify-self: start; min-width: 13rem; margin-top: 0.5rem; }
.btn-submit[disabled] { opacity: 0.55; cursor: default; }

.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.label-soft { font-weight: 400; color: var(--ink-soft); }
.request-alt { font-size: 0.92rem; }
.request-alt a { color: var(--ink); text-underline-offset: 3px; }
.request-alt a:hover { color: var(--accent); }
.form-status { font-size: 0.95rem; }
.form-status.ok {
  color: var(--ink);
  font-weight: 500;
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}
.form-status.err { color: #e07b6d; }

/* ---------- Página de proposta ---------- */

.proposta-nav {
  position: static;
  justify-content: space-between;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.proposta-back { text-decoration: none; color: var(--ink-soft); font-size: 0.92rem; transition: color 0.25s ease; }
.proposta-back:hover { color: var(--ink); }

.proposta-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) var(--pad-x) clamp(3.5rem, 9vh, 6.5rem);
}

@media (prefers-reduced-motion: no-preference) {
  .proposta-head, .pw-card, .pw-aside, .proposta-alt { animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .pw-aside { animation-delay: 0.16s; }
  .pw-card { animation-delay: 0.1s; }
  .proposta-alt { animation-delay: 0.18s; }
  @keyframes rise { from { opacity: 0; transform: translateY(22px); } }
}

.proposta-eyebrow { font-family: "Geist Mono", monospace; font-size: 0.85rem; color: var(--accent); margin-bottom: 1.2rem; }
.proposta-title { font-size: clamp(2.4rem, 5.5vw, 3.8rem); letter-spacing: -0.02em; }
.proposta-title em { font-style: normal; color: var(--accent); }
.proposta-lead { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.08rem; max-width: 48ch; }
.proposta-trust {
  margin-top: 1.3rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.pw-card {
  margin-top: clamp(2.2rem, 5vh, 3.2rem);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.6rem, 4vw, 2.8rem);
}

.pw-progress {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 4vw, 2.2rem);
  margin-bottom: clamp(1.8rem, 4vh, 2.4rem);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}
.pw-progress li { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); }
.pw-progress li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: "Geist Mono", monospace;
  font-size: 0.8rem;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.pw-progress li em { font-style: normal; font-size: 0.9rem; }
.pw-progress li.is-active { color: var(--ink); }
.pw-progress li.is-active span { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.pw-progress li.is-done { color: var(--ink); }
.pw-progress li.is-done span { border-color: var(--accent); color: var(--accent); }

/* Barra de progresso do pedido (port do componente React para vanilla) */

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

.pbar { margin: -0.4rem 0 clamp(1.6rem, 4vh, 2.2rem); }

.pbar-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; }
.pbar-label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.pbar-value { display: grid; justify-items: end; color: var(--ink-soft); }
.pbar-pending, .pbar-num {
  grid-area: 1 / 1;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.35s ease;
}
.pbar-num { font-family: "Geist Mono", monospace; font-variant-numeric: tabular-nums; }
.pbar .pbar-pending { opacity: 0; }
.pbar[data-state="indeterminate"] .pbar-pending { opacity: 1; }
.pbar[data-state="indeterminate"] .pbar-num { opacity: 0; }

.pbar-track {
  margin-top: 0.55rem;
  border-radius: 4px;
  padding: 2px;
  background: #1a1a1e;
  box-shadow: inset 0 1px 2px rgb(0 0 0 / 0.45), inset 0 0 0 1px rgb(0 0 0 / 0.25);
}
.pbar-well { position: relative; display: block; height: 8px; overflow: hidden; border-radius: 2px; }
.pbar-fill {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.35), inset 0 -1px 0 rgb(0 0 0 / 0.25);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.65s cubic-bezier(0.34, 1.25, 0.5, 1);
}
.pbar[data-state="indeterminate"] .pbar-fill { transform: scaleX(0); }
.pbar-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.35), inset 0 -1px 0 rgb(0 0 0 / 0.25);
  opacity: 0;
}
.pbar[data-state="indeterminate"] .pbar-sweep { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .pbar[data-state="indeterminate"] .pbar-sweep { animation: pbar-sweep 1.25s ease-in-out infinite; }
  @keyframes pbar-sweep {
    from { transform: translateX(-100%); }
    to { transform: translateX(250%); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .pbar-fill, .pbar-pending, .pbar-num { transition: none; }
}

.pw-panel { display: none; border: none; }
.pw-panel.is-active { display: grid; gap: 1.4rem; }
@media (prefers-reduced-motion: no-preference) {
  .pw-panel.is-active { animation: panel-in 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
  @keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
}

.pw-legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.pw-form input, .pw-form textarea { font-size: 1.1rem; padding: 0.8rem 0.1rem; }

.tetris-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.tetris-wrap[hidden] { display: none; }
.tetris-wrap p { color: var(--ink-soft); font-size: 0.95rem; }
.tetris {
  display: grid;
  grid-template-columns: repeat(8, 6px);
  gap: 2px;
}
.tetris span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgb(242 242 240 / 0.08);
}

.pw-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

.chips { border: none; display: grid; gap: 0.9rem; }
.chips legend { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 0.9rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.chip:hover span { border-color: var(--ink-soft); color: var(--ink); }
.chip input:checked + span { border-color: var(--accent); color: var(--ink); background: rgb(90 120 255 / 0.12); }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 3px; }

.proposta-alt {
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.proposta-alt a { color: var(--ink); text-underline-offset: 3px; }
.proposta-alt a:hover { color: var(--accent); }

.proposta-sent[hidden] { display: none; }
.proposta-sent {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
  padding: clamp(0.5rem, 2vh, 1.5rem) 0;
}
.proposta-sent svg { width: 56px; height: 56px; }
.proposta-sent h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.proposta-sent h2 em { font-style: normal; color: var(--accent); }
.proposta-sent p { color: var(--ink-soft); max-width: 44ch; font-size: 1.05rem; }
.track-mini { margin-top: 0.6rem; }
.track-mini .track-step { padding-bottom: 1.4rem; }

.proposta-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 620px) {
  .pw-progress li em { display: none; }
  .pw-progress li.is-active em { display: inline; }
}

/* Convite final em palco iluminado (port do Lamp, no azul da casa) */

.lamp {
  position: relative;
  margin-left: calc(-1 * var(--pad-x));
  margin-right: calc(-1 * var(--pad-x));
  padding: 0 var(--pad-x) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.lamp-fx { position: relative; height: clamp(150px, 24vh, 230px); pointer-events: none; }
.lamp-bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(28rem, 72vw);
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 22px rgb(90 120 255 / 0.8);
}
.lamp-glow {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: min(30rem, 76vw);
  height: 130px;
  border-radius: 50%;
  background: rgb(90 120 255 / 0.4);
  filter: blur(60px);
}
.lamp-cone {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 1px;
  transform: translateX(-50%);
  width: min(26rem, 66vw);
  background: linear-gradient(to top, rgb(90 120 255 / 0.22), transparent 78%);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 32% 100%);
  filter: blur(14px);
}
.lamp-content {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.1rem;
  padding-top: clamp(2.2rem, 5vh, 3.4rem);
}
.lamp-content .display { max-width: none; }
.lamp-sub { color: var(--ink-soft); max-width: 52ch; }
.lamp-content .btn-big { margin-top: 0.6rem; }
.lamp-content .request-alt { margin-top: 0.4rem; }

/* Corredor de ecrãs (port vanilla do ImageStreamHero) */

.showcase { padding-top: 0; }
.showcase-stage {
  margin: 0 calc(-1 * var(--pad-x));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.showcase-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0 var(--pad-x) clamp(1.6rem, 4vh, 2.6rem);
}
.sk-plain { justify-content: center; line-height: 1.6; }
.showcase-copy .nb { white-space: nowrap; }
.sk-plain::after { display: none; }
.sk-plain::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex: none;
}
.showcase-copy .display { margin: 0 auto; }
.showcase-copy .section-lead { margin: 0.6rem auto 0; }
.showcase-copy .btn { margin-top: 1.2rem; }

.stream {
  position: relative;
  height: clamp(340px, 48vh, 520px);
  container-type: inline-size;
  pointer-events: none;
}
.stream-persp {
  position: absolute;
  inset: 0;
  perspective: 30cqw;
  perspective-origin: 50% 55%;
}
.stream-3d { position: absolute; inset: 0; transform-style: preserve-3d; }
.stream-card {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 21cqw;
  height: 14cqw;
  margin: -7cqw 0 0 -10.5cqw;
  border-radius: 0.5cqw;
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 0.3);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.55);
  backface-visibility: hidden;
}
.stream-card img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  /* cartões maiores em ecrãs estreitos */
  .stream { height: 64vw; }
  .stream-persp { perspective-origin: 50% 50%; }
  .stream-card { width: 34cqw; height: 22.7cqw; margin: -11.4cqw 0 0 -17cqw; top: 50%; box-shadow: 0 12px 34px rgb(0 0 0 / 0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .stream-card { animation-play-state: paused !important; }
}
.request-banner-actions { display: grid; gap: 0.9rem; justify-items: start; }
.btn-big { padding: 1.05rem 2.3rem; font-size: 1.05rem; }

@media (max-width: 900px) {
  .request-banner { grid-template-columns: 1fr; }
}

/* Botão grande (candeeiro final) */
.btn-big { padding: 1.05rem 2.3rem; font-size: 1.05rem; }

/* ---------- Footer: cortina no fim do scroll ---------- */

.footer { position: relative; border-top: 1px solid var(--line); overflow: hidden; background: var(--bg); }

@media (min-width: 901px) {
  .js .footer-stage { position: relative; clip-path: inset(0); }
  .js .footer-stage .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.to-top {
  position: absolute;
  top: clamp(2.5rem, 7vh, 4.5rem);
  right: var(--pad-x);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.to-top svg { width: 20px; height: 20px; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.to-top:hover { color: var(--ink); border-color: var(--accent); background: rgb(90 120 255 / 0.1); }
.to-top:hover svg { transform: translateY(-3px); }

.footer-word {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vh, 4.5rem) var(--pad-x) 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 9.5vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--ink);
}
.footer-word em { font-style: normal; color: var(--accent); }

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.25rem var(--pad-x) 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 2.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer-col { display: grid; gap: 0.55rem; align-content: start; justify-items: start; }
.footer-col a { text-decoration: none; color: var(--ink-soft); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--ink); }

.footer-brand { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.35rem; }
.footer-brand em { font-style: normal; color: var(--accent); }
.footer-col-brand p { max-width: 32ch; }
.footer-copy { margin-top: 0.5rem; }

/* ---------- Estados iniciais de animação (só sem reduced motion) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .js .hero-title .line-inner { transform: translateY(110%); }
  .js .hero-sub, .js .hero-actions, .js .nav { opacity: 0; }
  .js .hero-sub { transform: translateY(18px); }
  .js .plumb-line { transform: scaleY(0); }
  .js .plumb-dot { opacity: 0; }
  .js .reveal { opacity: 0; transform: translateY(26px); }
  .js .ds-card { transform: rotateX(18deg) scale(1.05); }
}

/* ---------- Mobile ---------- */

@media (max-width: 1200px) {
  .nav { gap: 1rem; }
  .nav nav { display: none; }
  .btn-nav { margin-left: auto; }
  .burger { display: flex; }
}

@media (max-width: 900px) {

  .plumb { display: none; }

  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-cta { justify-items: start; width: 100%; }
  .hero-points { justify-items: start; gap: 0; width: 100%; margin-top: 0.6rem; }
  .hero-points li {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(90deg, rgb(14 14 16 / 0.88), rgb(14 14 16 / 0.72));
    border-radius: 10px;
  }

  .services-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .service { padding: 1.15rem 1.25rem 1.25rem; border-radius: 16px; gap: 0.3rem 0.85rem; }
  .service-icon { grid-row: 1; width: 38px; height: 38px; padding: 8px; border-radius: 11px; align-self: center; }
  .service h3 { grid-column: 2; align-self: center; font-size: 1.08rem; line-height: 1.2; }
  .service p { grid-column: 1 / -1; margin-top: 0.5rem; font-size: 0.92rem; line-height: 1.5; }
  .svc-cena { grid-column: 1 / -1; margin-top: 1rem; padding-top: 0.9rem; font-size: 0.86rem; }
  .service:nth-child(n) { grid-column: auto; margin-top: 0; }

  .promises li, .compare-grid { grid-template-columns: 1fr; }
  .promises li { gap: 0.5rem; }
  .compare-generic { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .charter-list li { grid-template-columns: 1.9rem 1fr; gap: 0.85rem; padding: 0.95rem 0.95rem; }
  .charter-list li::before { width: 1.9rem; height: 1.9rem; }

  .anyone-summary { column-gap: 0.9rem; padding: 1rem 1rem; }
  .anyone-thumb { width: 40px; height: 40px; border-radius: 10px; }
  .anyone-thumb svg { width: 21px; height: 21px; }
  .anyone-detail-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .case-card { grid-template-columns: 1fr; }
  .case-media { order: -1; }

  .method-rail { display: none; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step, .method-step:nth-child(even) { width: 100%; margin-top: 0; margin-left: 0; }

  .field-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .btn-nav { display: none; }
  .burger { margin-left: auto; }
}

/* ---------- 404 ---------- */

.kgrid { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.notfound-page .nav, .notfound-page .notfound-main { position: relative; z-index: 1; }

.notfound-main {
  min-height: calc(100dvh - 72px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.4rem;
}
.notfound-title { font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -0.02em; }
.notfound-title em { font-style: normal; color: var(--accent); }
.notfound-lead { color: var(--ink-soft); max-width: 44ch; }
.notfound-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.6rem; }

/* CTA fixo em mobile: aparece depois do hero, esconde-se no convite/rodapé */
.mobile-cta {
  display: none;
  justify-content: center;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
  z-index: 70;
  padding: 1rem;
  font-size: 1.02rem;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.55);
  transform: translateY(140%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 900px) {
  .mobile-cta { display: inline-flex; }
  .mobile-cta.show { transform: translateY(0); }
}




/* Faixa de percurso: o mapa de "o que fazer" em 3 passos */
.path {
  margin: 0 calc(-1 * var(--pad-x));
  padding: clamp(1.8rem, 4vh, 2.6rem) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.path-steps { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); flex: 1; flex-wrap: wrap; }
.path-step { display: flex; align-items: center; gap: 0.85rem; position: relative; }
.path-step:not(:last-child)::after {
  content: "\2192";
  color: var(--accent);
  margin-left: clamp(0.6rem, 1.5vw, 1.6rem);
  font-size: 1.1rem;
}
.path-n {
  color: var(--accent);
  background: rgb(90 120 255 / 0.1);
  border: 1px solid rgb(90 120 255 / 0.34);
  border-radius: 12px;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.path-n svg { width: 1.25rem; height: 1.25rem; }
.path-step strong { display: block; font-weight: 500; font-size: 0.98rem; }
.path-step em { font-style: normal; display: block; font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 1100px) {
  .path { flex-direction: column; align-items: stretch; }
  .path-steps { flex-direction: column; align-items: stretch; gap: 0.9rem; }
  .path-step:not(:last-child)::after { content: "\2193"; position: absolute; left: 0.95rem; top: 2.7rem; margin: 0; }
  .path .btn { justify-content: center; }
}

/* Próximo passo no fim dos capítulos */
.next-step { margin-top: clamp(2.2rem, 5vh, 3.2rem); }
.next-step a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.next-step a span { color: var(--accent); }
.next-step a:hover { color: var(--accent); border-color: var(--accent); }


/* Proposta: rail de confiança ao lado do formulário */
.proposta-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.pw-aside { position: sticky; top: 100px; display: grid; gap: 2rem; }
.pw-aside-kicker {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pw-garantias { list-style: none; display: grid; gap: 0.7rem; }
.pw-garantias li { font-size: 0.95rem; color: var(--ink); }
.pw-garantias li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgb(90 120 255 / 0.14);
  border: 1px solid rgb(90 120 255 / 0.35);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  margin-right: 0.6rem;
  vertical-align: -0.22rem;
}
@media (max-width: 980px) {
  .proposta-cols { grid-template-columns: 1fr; }
  .pw-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pw-aside { grid-template-columns: 1fr; }
}




@media (max-width: 900px) {
  .showcase { padding-top: clamp(3rem, 8vh, 5rem); padding-bottom: clamp(2.5rem, 7vh, 4rem); }
  .showcase-copy .display { font-size: clamp(2rem, 8.5vw, 2.6rem); }
}


@media (max-width: 900px) {
  .showcase-copy .sk-plain { font-size: 0.7rem; letter-spacing: 0.1em; gap: 0.7rem; max-width: 26ch; margin: 0 auto 0.3rem; }
  .showcase-copy .sk-plain::before { display: none; }
  .showcase-copy .display { line-height: 1.05; }
  .showcase-copy .section-lead { font-size: 0.97rem; }
}


/* Casos numerados, com régua entre eles */
.case-sector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.case-sector::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}


/* Afirmação do histórico, agora separada do kicker do capítulo */
.showcase-claim {
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: -0.1rem;
}

/* Selo preso ao painel dos compromissos, sem sair da caixa */
.seal-award { bottom: 24px; right: 28px; top: auto; width: clamp(200px, 18vw, 240px); }
@media (max-width: 760px) { .seal-award { position: static; margin: 1.6rem auto 0; transform: rotate(-2deg); width: 220px; } }

/* Capítulos encostados: metade do ar entre blocos do mesmo assunto */
.showcase + .appsec { padding-top: 0; }
.appsec { padding-bottom: clamp(3rem, 8vh, 5rem); }
.work { padding-bottom: clamp(3rem, 8vh, 5rem); }
.charter { padding-bottom: clamp(3rem, 8vh, 5rem); }


/* Selo de garantia no hero */
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  justify-self: end;
  margin-top: 1.5rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.guarantee:hover { border-color: rgb(90 120 255 / 0.5); background: linear-gradient(180deg, #1c1d27, #15161d); transform: translateY(-2px); }
.gr-mark {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgb(90 120 255 / 0.12);
  border: 1px solid rgb(90 120 255 / 0.32);
  color: var(--accent);
}
.gr-mark svg { width: 1.35rem; height: 1.35rem; }
.gr-txt { display: grid; gap: 0.2rem; }
.gr-txt strong { font-family: var(--display); font-weight: 600; font-size: 1.06rem; color: var(--ink); letter-spacing: -0.01em; }
.gr-txt em {
  font-style: normal;
  font-family: "Geist Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .guarantee { justify-self: start; margin-top: 1.3rem; }
  .gr-txt em { font-size: 0.6rem; letter-spacing: 0.06em; }
}

@media (max-width: 620px) {
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.07em; }
}


/* Acabamento premium: tipografia com volume, botões com luz, selo em vidro */
.hero-title .line-inner {
  background: linear-gradient(178deg, #ffffff 0%, #f2f2f0 42%, #c6c7cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title em { -webkit-text-fill-color: var(--accent); color: var(--accent); }

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #ebebe9 100%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.6) inset, 0 10px 26px rgb(0 0 0 / 0.45);
}
.btn-primary:hover { box-shadow: 0 1px 0 rgb(255 255 255 / 0.7) inset, 0 14px 34px rgb(0 0 0 / 0.55); }
.btn-ghost { box-shadow: 0 1px 0 rgb(255 255 255 / 0.05) inset; }

.guarantee {
  position: relative;
  background: linear-gradient(180deg, #191920, #131317);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.06) inset, 0 14px 34px rgb(0 0 0 / 0.5);
  overflow: hidden;
}
.guarantee::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.22) 30%, rgb(90 120 255 / 0.35) 70%, transparent);
}
.gr-mark { box-shadow: 0 1px 0 rgb(255 255 255 / 0.1) inset, 0 6px 16px rgb(90 120 255 / 0.16); }


/* Botões: acabamento de peça, não de rectângulo */
.btn { letter-spacing: -0.005em; }
.btn-primary {
  position: relative;
  color: #0e0e10;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f2 45%, #e4e4e2 100%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 -1px 0 rgb(0 0 0 / 0.06) inset,
    0 1px 2px rgb(0 0 0 / 0.3),
    0 12px 28px rgb(0 0 0 / 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, color 0.3s ease;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 32%, rgb(255 255 255 / 0.75) 46%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 2px 4px rgb(0 0 0 / 0.32),
    0 18px 40px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(90 120 255 / 0.28);
}
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:active { transform: translateY(0) scale(0.985); }

.btn-ghost {
  border-color: rgb(242 242 240 / 0.18);
  background: linear-gradient(180deg, rgb(242 242 240 / 0.045), rgb(242 242 240 / 0.015));
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.06) inset;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgb(242 242 240 / 0.34);
  background: linear-gradient(180deg, rgb(242 242 240 / 0.08), rgb(242 242 240 / 0.03));
}



/* Hero no telemóvel: acção principal em destaque, secundária discreta */
@media (max-width: 620px) {
  .hero-actions { align-items: center; gap: 0.4rem; }
  .hero-second {
    border-color: rgb(242 242 240 / 0.14);
    background: #141419;
    box-shadow: none;
    padding: 0.8rem 1.25rem;
    color: var(--ink);
    font-size: 0.95rem;
  }
  .hero-second::after {
    content: "\2192";
    color: var(--accent);
    margin-left: 0.55rem;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .hero-second:active::after { transform: translateX(3px); }
  .hero-second:hover { transform: none; background: #1a1a20; border-color: rgb(242 242 240 / 0.24); color: var(--ink); }
  .hero-points li { padding: 0.62rem 0.9rem; }
}


/* Links de próximo passo não podem cortar na margem */
.next-step a { display: inline; overflow-wrap: anywhere; }
@media (max-width: 620px) {
  .next-step { margin-top: 1.8rem; }
  .next-step a { font-size: 0.94rem; line-height: 1.7; }
}


/* Hero: ritmo vertical constante */
@media (max-width: 900px) {
  .hero-foot { margin-top: clamp(1.8rem, 4.5vh, 2.6rem); gap: 1.6rem; }
  .hero-cta { gap: 1.15rem; }
  .hero-sub { margin-top: 0.2rem; }
  .hero-points { margin-top: 0; }
  .guarantee { margin-top: 1.15rem; }
  .hero { padding-bottom: clamp(2rem, 6vh, 4rem); }
}

/* 4) grelha do hero: mais presente no telemóvel, sem competir com o texto */
@media (max-width: 900px) {
  .threads { opacity: 0.55; }
  .hero::before { background: radial-gradient(ellipse 70% 34% at 50% 30%, rgb(90 120 255 / 0.16), transparent 72%); }
}


/* Hero no telemóvel: altura pelo conteúdo, sem ecrã vazio em baixo */
@media (max-width: 900px) {
  .hero {
    min-height: 0;
    padding-top: calc(96px + env(safe-area-inset-top, 0px));
    padding-bottom: clamp(2.6rem, 8vh, 4.5rem);
  }
}


/* Cartões de serviço: exemplos numa linha só */

@media (max-width: 900px) {
  .service { padding: 1.3rem 1.4rem 1.4rem; }
  .service h3 { font-size: 1.14rem; }
  .service p { color: rgb(242 242 240 / 0.68); }
}
}


/* Nada de arrastar para os lados: corta qualquer transbordo horizontal */
html { background: var(--bg); }
.footer-word { max-width: 100%; }

/* Escudo do header também por baixo da barra do browser em apps */
@media (max-width: 900px) {
  .nav::before { height: 320px; }
}


/* O cartão 3D não pode empurrar a página para os lados */
.devicescroll { overflow: clip; }
.ds-stage { overflow: clip; padding: 0 2px; }
@media (max-width: 900px) {
  .js .ds-card { transform: rotateX(12deg) scale(1); }
  .ds-stage { perspective: 1400px; }
}


/* O corredor 3D também não pode gerar arrasto lateral */
.showcase, .showcase-stage, .stream, .stream-persp { overflow: clip; }
.showcase-stage, .stream { contain: paint; }




/* ---------- Telemóvel: cabeçalho simples e à prova de browsers de apps ---------- */
@media (max-width: 900px) {
  .nav {
    position: static;
    height: calc(64px + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) var(--pad-x) 0;
    background: #0e0e10;
    border-bottom: 1px solid var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.6);
  }
  .nav::before { display: none; }

  /* área de toque generosa e afastada do canto onde as apps põem os seus botões */
  .burger {
    width: 52px;
    height: 52px;
    padding: 14px;
    margin-right: -6px;
  }

  .hero { padding-top: clamp(1.4rem, 4vh, 2.4rem); }
  [id] { scroll-margin-top: 12px; }
}

/* Só movimento vertical, com zoom permitido */
html, body { touch-action: pan-y pinch-zoom; }


/* Menu: começa por baixo do cabeçalho e nunca corta o primeiro item */
@media (max-width: 900px) {
  .menu {
    justify-content: flex-start;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
  }
  .menu nav { width: 100%; }
}








/* Telemóvel: cabeçalho fixo no topo e sem grão (a camada fixa do grão ficava
   para trás no scroll e deixava um fantasma do conteúdo por cima do cabeçalho) */
@media (max-width: 900px) {
  body::after { display: none; }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) var(--pad-x) 0;
    background: #0e0e10;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: flex; }
  .hero { padding-top: calc(84px + env(safe-area-inset-top, 0px)); }
  [id] { scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px)); }
  .menu { padding-top: calc(84px + env(safe-area-inset-top, 0px)); }
}


/* Qualquer aparelho de toque: sem grão (a camada fixa ficava para trás no scroll) */
@media (pointer: coarse) {
  body::after { display: none !important; }
}


/* WebKit dentro de apps: o cabeçalho precisa de camada própria e isolamento,
   senão o conteúdo é composto por cima dele durante o scroll */
@media (pointer: coarse) {
  .nav { z-index: 90; }
  .menu { z-index: 80; }
}


/* Faixa acima do cabeçalho nos browsers de apps: escudo na mesma camada */
@media (pointer: coarse) {
  .nav::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 220px;
    background: #0e0e10;
  }
}


/* Telemóvel: nada de 3D (o cartão em perspectiva saltava por cima do cabeçalho) */
@media (pointer: coarse) {
  .ds-stage { perspective: none; }
  .ds-card, .js .ds-card, .ds-frame {
    transform: none !important;
    transform-style: flat !important;
  }
  .phone, .stream-3d, .stream-persp { transform-style: flat; }
}


/* Telemóvel: nenhuma camada gráfica extra nos cartões (WebKit colocava-as por cima do cabeçalho) */
@media (pointer: coarse) {
  .ds-card, .ds-frame, .phone, .stream, .stream-3d, .stream-persp, .case-media img {
    will-change: auto !important;
    backface-visibility: visible;
  }
  .ds-frame { box-shadow: 0 18px 40px rgb(0 0 0 / 0.5); }
}




/* Faixa do topo: altura garantida mesmo sem área segura reportada */
@media (pointer: coarse) {
  .nav { height: calc(58px + env(safe-area-inset-top, 0px)); }
  .hero { padding-top: calc(82px + env(safe-area-inset-top, 0px)); }
}


/* Telemóvel: o cabeçalho sai ao descer e volta ao subir */
@media (pointer: coarse) {
  .nav { transition: none; }
}


/* Telemóvel: o estado "com scroll" também tem de ser opaco (a 92% via-se o texto) */
@media (pointer: coarse) {
  .nav,
  .nav.scrolled {
    background: #0e0e10 !important;
    box-shadow: none;
  }
}


/* WhatsApp: pastilha com promessa de resposta */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 3vw, 2rem));
  z-index: 78;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #1f1f26, #16161b);
  border: 1px solid rgb(37 211 102 / 0.35);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.5), 0 0 0 6px rgb(37 211 102 / 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.wa-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #0b3d20;
}
.wa-icon svg { width: 23px; height: 23px; }
.wa-txt { display: grid; gap: 0.1rem; line-height: 1.2; }
.wa-txt strong { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.wa-txt em {
  font-style: normal;
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6ee79b;
}
.wa-float:hover {
  transform: translateY(-3px);
  border-color: rgb(37 211 102 / 0.6);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.55), 0 0 0 8px rgb(37 211 102 / 0.1);
}
@media (max-width: 900px) {
  .wa-float { bottom: calc(env(safe-area-inset-bottom, 0px) + 82px); padding: 0.42rem 0.85rem 0.42rem 0.42rem; gap: 0.55rem; }
  .wa-icon { width: 30px; height: 30px; }
  .wa-icon svg { width: 18px; height: 18px; }
  .wa-txt strong { font-size: 0.78rem; }
  .wa-txt em { font-size: 0.54rem; letter-spacing: 0.08em; }
}


/* Botão secundário do hero: fundo sólido para a grelha não atravessar o texto */
.btn-ghost.hero-second {
  background: #141419;
  border-color: rgb(242 242 240 / 0.14);
}
.btn-ghost.hero-second:hover { background: #1a1a20; }


/* WhatsApp sempre visível; no telemóvel um pouco mais acima e compacto */
@media (max-width: 900px) {
  .wa-float {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
    padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  }
  .wa-icon { width: 32px; height: 32px; }
  .wa-icon svg { width: 20px; height: 20px; }
  .wa-txt strong { font-size: 0.8rem; }
  .wa-txt em { font-size: 0.55rem; }
}


/* Espaço por baixo do selo para a pastilha do WhatsApp flutuar sobre o vazio */
@media (max-width: 900px) {
  .hero { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8.5rem); }
}


/* Telemóvel: WhatsApp encostado ao fundo (sobre o espaço vazio do hero) e a
   barra de pedir proposta logo acima dele */
@media (max-width: 900px) {
  .wa-float { bottom: calc(env(safe-area-inset-bottom, 0px) + 14px); }
  .mobile-cta { bottom: calc(env(safe-area-inset-bottom, 0px) + 78px); }
}


/* Menos ar entre o fim de um capítulo e o início do seguinte */
.services { padding-bottom: clamp(2.5rem, 6vh, 4rem); }
.ai { padding-top: clamp(2.5rem, 6vh, 4rem); }
.anyone { padding-top: clamp(3rem, 7vh, 4.5rem); }
.next-step { margin-top: clamp(1.8rem, 4vh, 2.6rem); }


/* Equipa */
.equipa-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 3.4vw, 3.4rem) clamp(1.4rem, 2.6vw, 2.8rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
}
.membro {
  flex: 0 1 clamp(148px, 15vw, 196px);
  max-width: 208px;
  text-align: center;
  position: relative;
}
.membro figure {
  position: relative;
  margin: 0 auto 1.05rem;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #e9eaec;
  box-shadow: 0 0 0 1px rgb(242 242 240 / 0.1), 0 16px 34px rgb(0 0 0 / 0.4);
  transition: box-shadow 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.membro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .membro:hover figure {
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgb(90 120 255 / 0.45), 0 22px 44px rgb(0 0 0 / 0.5);
  }
  .membro:hover img { transform: scale(1.06); }
  .membro:hover .membro-fn { color: var(--accent); }
}
.membro h3 { font-size: 0.98rem; font-weight: 500; letter-spacing: -0.005em; line-height: 1.3; }
.membro-fn {
  margin-top: 0.34rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.4s ease;
}
.membro-nota {
  margin: 0.7rem auto 0;
  max-width: 21ch;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgb(242 242 240 / 0.52);
}

/* entrada em cascata */
.js .membro { opacity: 0; transform: translateY(26px); }

@media (max-width: 900px) {
  .equipa-grid { gap: 1.9rem 1.6rem; }
  .membro { flex: 0 1 clamp(112px, 27vw, 150px); }
  .membro figure { margin-bottom: 0.85rem; }
  .membro h3 { font-size: 0.9rem; }
  .membro-fn { font-size: 0.55rem; }
  .membro-nota { display: none; }
}

/* Faixa para quem tem uma ideia e ainda não tem empresa */
.ideia {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin: clamp(1rem, 3vh, 2rem) 0 clamp(2.5rem, 6vh, 4rem);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(120deg, rgb(90 120 255 / 0.07), rgb(20 20 26 / 0.6) 55%);
}
.ideia-txt { max-width: 62ch; }
.ideia-kicker {
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.ideia h3 { font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.9rem); font-weight: 600; letter-spacing: -0.01em; }
.ideia p { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }
.ideia .btn { flex: none; }
@media (max-width: 900px) {
  .ideia { flex-direction: column; align-items: flex-start; border-radius: 16px; }
  .ideia .btn { width: 100%; justify-content: center; }
}


/* =========================================================
   Barra de aviso no topo
   ========================================================= */
:root { --bar-h: 34px; }
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: calc(var(--bar-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--pad-x) 0;
  background: linear-gradient(90deg, #1a1c2e, #232744 45%, #1a1c2e);
  border-bottom: 1px solid rgb(90 120 255 / 0.25);
  font-size: 0.78rem;
  color: rgb(242 242 240 / 0.86);
  text-align: center;
}
.topbar strong { color: var(--ink); font-weight: 600; }
.topbar a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgb(242 242 240 / 0.35);
  white-space: nowrap;
}
.topbar a:hover { border-bottom-color: var(--accent); color: #cdd6ff; }
.topbar > span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tb-curto { display: none; }
@media (max-width: 720px) {
  .tb-full { display: none; }
  .tb-curto { display: inline; }
}

body:has(.topbar) .nav { top: calc(var(--bar-h) + env(safe-area-inset-top, 0px)); padding-top: 0; height: 72px; }
body:has(.topbar) .hero { padding-top: calc(72px + var(--bar-h) + env(safe-area-inset-top, 0px)); }
@media (max-width: 900px) {
  body:has(.topbar) .nav { height: 60px; }
}
@media (max-width: 620px) {
  :root { --bar-h: 30px; }
  .topbar { font-size: 0.7rem; gap: 0.5rem; }
}

/* =========================================================
   Faixa de números
   ========================================================= */
.stats {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(2.5rem, 7vh, 4.5rem) 0;
  border-block: 1px solid var(--line);
}
.stats li {
  list-style: none;
  padding: clamp(1.4rem, 3.5vw, 2.4rem) 1rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stats li:first-child { border-left: 0; }
.stats b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.stats span { display: block; margin-top: 0.55rem; font-size: 0.85rem; line-height: 1.4; color: var(--ink-soft); }
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats li:nth-child(odd) { border-left: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* =========================================================
   Páginas interiores (casos e recursos)
   ========================================================= */
.sub-page { background: var(--bg); }
.sub-nav { justify-content: space-between; background: rgb(14 14 16 / 0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.sub-nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.8rem); }
.sub-nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; }
.sub-nav-links a:hover { color: var(--ink); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }
.sub-nav-links .btn-sm { color: var(--accent-ink); }
@media (max-width: 620px) {
  .sub-nav-links a:not(.btn) { display: none; }
}

.sub-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(72px + clamp(2.5rem, 8vh, 5rem)) var(--pad-x) clamp(3rem, 8vh, 5rem);
}
.sub-crumb { font-family: "Geist Mono", monospace; font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); }
.sub-crumb a { color: var(--accent); text-decoration: none; }
.sub-crumb a:hover { text-decoration: underline; }
.sub-crumb span { margin: 0 0.4rem; opacity: 0.5; }

.sub-head { max-width: 100%; }
.sub-head h1 {
  margin-top: 1rem;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.sub-lead { margin-top: 1.2rem; max-width: 58ch; font-size: 1.05rem; color: var(--ink-soft); }

.sub-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: clamp(3rem, 8vh, 5rem);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(120deg, rgb(90 120 255 / 0.08), rgb(20 20 26 / 0.6) 55%);
}
.sub-cta h2 { font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.sub-cta p { margin-top: 0.6rem; max-width: 60ch; font-size: 0.95rem; color: var(--ink-soft); }
.sub-cta .btn { flex-shrink: 0; }
@media (max-width: 820px) { .sub-cta { flex-direction: column; align-items: flex-start; } }

.sub-footer { border-top: 1px solid var(--line); padding: 2.5rem var(--pad-x); }
.sub-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.sub-footer-inner p { max-width: 34ch; }
.sub-footer-inner nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.sub-footer-inner a { color: var(--ink-soft); text-decoration: none; }
.sub-footer-inner a:hover { color: var(--ink); }

/* --- índice de casos --- */
.casos-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
  margin-top: clamp(2.5rem, 6vh, 4rem);
}
.casos-card a {
  display: block;
  height: 100%;
  padding: 1.1rem 1.1rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-raised);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.casos-card a:hover { border-color: rgb(90 120 255 / 0.45); transform: translateY(-4px); }
.casos-card figure { margin-bottom: 1.2rem; border-radius: 12px; overflow: hidden; background: #0b0b0f; }
.casos-card img { width: 100%; height: auto; display: block; }
.casos-sector { font-family: "Geist Mono", monospace; font-size: 0.64rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); }
.casos-card h2 { margin-top: 0.6rem; font-family: var(--display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.casos-res { margin-top: 0.7rem; font-size: 0.92rem; color: var(--ink-soft); }
.casos-link { display: inline-block; margin-top: 1.1rem; font-size: 0.88rem; color: var(--accent); }
@media (max-width: 760px) { .casos-grid { grid-template-columns: 1fr; } }

/* --- caso --- */
.caso-head { max-width: 100%; }
.caso-head h1 {
  margin-top: 1rem;
  max-width: 20ch;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.caso-lead { margin-top: 1.1rem; max-width: 62ch; font-size: 1.05rem; color: var(--ink-soft); }
.caso-flag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--ink-soft);
}
.caso-media { margin: clamp(2rem, 5vh, 3rem) 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #0b0b0f; }
.caso-media img { width: 100%; height: auto; display: block; }
.caso-bloco { margin-top: clamp(2.2rem, 6vh, 3.4rem); max-width: 68ch; }
.caso-bloco h2, .art-bloco h2 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.caso-bloco p, .art-bloco p { margin-top: 0.9rem; color: rgb(242 242 240 / 0.78); }
.caso-bloco p:first-of-type, .art-bloco p:first-of-type { margin-top: 0; }
.caso-lista { list-style: none; display: grid; gap: 0.9rem; }
.caso-lista li { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-raised); }
.caso-lista strong { display: block; font-weight: 600; }
.caso-lista span { display: block; margin-top: 0.35rem; font-size: 0.94rem; color: var(--ink-soft); }
.caso-depois { list-style: none; display: grid; gap: 0.7rem; }
.caso-depois li { position: relative; padding-left: 1.7rem; color: rgb(242 242 240 / 0.8); }
.caso-depois li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}
.caso-nav { margin-top: clamp(3rem, 8vh, 4.5rem); border-top: 1px solid var(--line); padding-top: 1.8rem; }
.caso-nav > p { font-family: "Geist Mono", monospace; font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); }
.caso-nav ul { list-style: none; display: grid; gap: 0.2rem; margin-top: 1rem; }
.caso-nav a { display: flex; gap: 0.9rem; padding: 0.8rem 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.caso-nav a:hover { color: var(--accent); }
.caso-nav a span { font-family: "Geist Mono", monospace; font-size: 0.78rem; color: var(--ink-soft); flex-shrink: 0; }

/* --- recursos --- */
.rec-grid { list-style: none; display: grid; gap: 0.2rem; margin-top: clamp(2.5rem, 6vh, 4rem); }
.rec-card a {
  display: grid;
  gap: 0.45rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.rec-card a:hover h2 { color: var(--accent); }
.rec-tema { font-family: "Geist Mono", monospace; font-size: 0.64rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); }
.rec-card h2 { font-family: var(--display); font-size: clamp(1.2rem, 2.8vw, 1.65rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; transition: color 0.3s ease; }
.rec-meta { max-width: 68ch; font-size: 0.95rem; color: var(--ink-soft); }
.rec-data { font-family: "Geist Mono", monospace; font-size: 0.7rem; color: rgb(242 242 240 / 0.52); }

.artigo { max-width: 68ch; }
.art-head h1 {
  margin-top: 1rem;
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.art-lead { margin-top: 1.1rem; font-size: 1.08rem; color: rgb(242 242 240 / 0.8); }
.art-data { margin-top: 1.1rem; font-family: "Geist Mono", monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgb(242 242 240 / 0.52); }
.art-bloco { margin-top: clamp(2.2rem, 6vh, 3.2rem); }
.art-bloco strong { color: var(--ink); font-weight: 600; }
.art-bloco em { font-style: normal; font-family: "Geist Mono", monospace; font-size: 0.92em; color: var(--ink-soft); }
.case-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.case-more:hover { border-color: rgb(90 120 255 / 0.5); background: rgb(90 120 255 / 0.1); color: #cdd6ff; }
.case-more span { transition: transform 0.3s ease; }
.case-more:hover span { transform: translateX(3px); }
.sub-main:has(.artigo) { max-width: 880px; }

/* Hero no computador: as duas colunas alinham pelo topo, para não abrir um
   buraco entre o título e o bloco de acções (a coluna da direita é alta) */
@media (min-width: 1001px) {
  .hero { justify-content: center; }
  .hero-foot {
    align-items: flex-start;
    margin-top: clamp(1.8rem, 4vh, 3rem);
    gap: clamp(2.5rem, 6vw, 5rem);
    flex-wrap: nowrap;
  }
  .hero-sub { max-width: 30ch; padding-top: 0.4rem; }
  .hero-cta { flex-shrink: 0; }
}

/* kicker de sub-capítulo: sem número, mas alinhado como os outros */
.sk-sub { color: var(--ink-soft); }
.sk-sub::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Menu: links secundários por baixo dos capítulos numerados */
.menu nav { overflow-y: auto; overscroll-behavior: contain; }
.menu-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.4rem 1.1rem;
  margin-top: 1.3rem;
  padding-left: 0;
}
.menu nav .menu-sec a {
  font-family: "Geist", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  border: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  transition-delay: 0.56s;
}
.menu.open .menu-sec a { opacity: 1; transform: none; }
.menu nav .menu-sec a:hover { color: var(--ink); }
.menu nav > a:nth-child(8) { border-bottom: 1px solid var(--line); }
.menu nav > a { font-size: clamp(1.4rem, 5.6vw, 1.9rem); padding: 0.72rem 0; }
.menu nav .menu-sec a { font-size: 0.95rem; font-weight: 400; line-height: 1.4; }
.menu nav .menu-sec a { margin: 0; font-size: 0.9rem; }

/* Menu: número em pastilha e seta à direita, como os capítulos da página */
.menu nav > a {
  position: relative;
  gap: 1.1rem;
  align-items: center;
  padding-right: 2rem;
}
.menu nav > a::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  min-width: 2.05rem;
  border-radius: 7px;
  background: rgb(90 120 255 / 0.16);
  font-size: 0.68rem;
}
.menu nav > a::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid rgb(242 242 240 / 0.28);
  border-bottom: 1.6px solid rgb(242 242 240 / 0.28);
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.menu nav > a:hover::after,
.menu nav > a:active::after { border-color: var(--accent); transform: translateY(-50%) translateX(3px) rotate(-45deg); }
.menu nav > a:last-child::after { content: none; }
.menu nav > a:last-child::before { content: none; }
.appsec-lead {
  max-width: 46ch;
  margin: clamp(2.5rem, 6vh, 4rem) auto clamp(1.5rem, 4vh, 2.5rem);
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* Preço: os compromissos ao lado da proposta que o cliente recebe */
.charter-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: clamp(2.5rem, 6vh, 4rem);
}
.charter-cols .charter-panel { margin-top: 0; max-width: none; }
.charter-doc { position: sticky; top: 120px; }
.charter-doc figure {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgb(0 0 0 / 0.55);
  animation: doc-flutua 8s ease-in-out infinite;
}
.charter-doc img { width: 100%; height: auto; display: block; }
.charter-doc figcaption {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@keyframes doc-flutua {
  0%, 100% { transform: translateY(0) rotate(-0.45deg); }
  50% { transform: translateY(-11px) rotate(0.35deg); }
}
@media (prefers-reduced-motion: reduce) { .charter-doc figure { animation: none; } }
@media (max-width: 980px) {
  .charter-cols { grid-template-columns: 1fr; }
  .charter-doc { position: static; max-width: 440px; margin: 0 auto; }
}
.method { padding-block: clamp(1rem, 3vh, 2rem); }

/* =========================================================
   Campos de luz: profundidade nas secções que só têm texto.
   Tudo em CSS, sem ficheiros, e sempre por trás do conteúdo.
   ========================================================= */
.campo { position: relative; isolation: isolate; overflow: clip; }
.campo::before,
.campo::after { content: ""; position: absolute; z-index: -1; pointer-events: none; }

/* halo azul que respira devagar */
.campo::before {
  inset: -18% 0;
  background:
    radial-gradient(ellipse 44% 50% at 22% 40%, rgb(90 120 255 / 0.26), transparent 66%),
    radial-gradient(ellipse 38% 42% at 86% 74%, rgb(126 96 255 / 0.14), transparent 68%);
  animation: campo-respira 14s ease-in-out infinite;
}
/* grelha fina que desvanece nas bordas */
.campo::after {
  inset: 0;
  background-image:
    linear-gradient(rgb(242 242 240 / 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgb(242 242 240 / 0.085) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 68% 82% at 32% 50%, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 68% 82% at 32% 50%, #000 10%, transparent 72%);
}
@keyframes campo-respira {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .campo::before { animation: none; } }

/* manifesto: o campo é o próprio cenário da declaração */
.manifesto.campo { padding-block: clamp(3rem, 9vh, 5.5rem); }
.manifesto.campo::after { background-size: 76px 76px; }

/* faixa de números: grelha centrada, sem halo a competir com os algarismos */
.stats.campo::before {
  inset: -60% 0;
  background: radial-gradient(ellipse 52% 66% at 50% 50%, rgb(90 120 255 / 0.16), transparent 70%);
}
.stats.campo::after {
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 50% 50%, #000 5%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 90% at 50% 50%, #000 5%, transparent 78%);
}

/* pedido: o candeeiro ganha chão */
.lamp.campo::before {
  inset: 8% 0 -10%;
  background: radial-gradient(ellipse 44% 56% at 50% 30%, rgb(90 120 255 / 0.2), transparent 70%);
}
.lamp.campo::after {
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 56% 70% at 50% 42%, #000 5%, transparent 74%);
  mask-image: radial-gradient(ellipse 56% 70% at 50% 42%, #000 5%, transparent 74%);
}
@media (max-width: 640px) {
  .campo::after { background-size: 46px 46px; }
  .manifesto.campo::after { background-size: 52px 52px; }
  .stats.campo::after { background-size: 40px 40px; }
}

/* Telemóvel: menos ar entre capítulos, para não se rolar às escuras */
@media (max-width: 760px) {
  section { padding: clamp(2.75rem, 7.5vh, 4.5rem) 0; }
  .manifesto.campo { padding-block: clamp(2.25rem, 6vh, 3.5rem); }
  .sec-kicker { margin-bottom: 1.05rem; }
  .section-lead { margin-top: 0.85rem; }
  .case-stack, .services-grid, .anyone-list, .equipa-grid, .charter-cols, .faq-list {
    margin-top: clamp(1.6rem, 4vh, 2.6rem);
  }
  .stats { margin-block: clamp(1.8rem, 5vh, 3rem); }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 104px; }
}
.form-note a, .proposta-footer a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.form-note a:hover, .proposta-footer a:hover { color: var(--ink); }
