/* =========================================================
   FUSE — Dark marketing site
   Fonts: Exo 2 (titles/highlights), Montserrat (body)
   Highlight gradient: #A9A8EE → #5E43CA
   ========================================================= */

:root {
  --bg: #030208;
  --bg-2: #08061a;
  --bg-3: #0e0b1e;
  --ink: #f3f1ff;
  --ink-2: #c9c5e0;
  --ink-3: #8a86a8;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --violet-1: #A9A8EE;
  --violet-2: #5E43CA;
  --violet-deep: #3a2596;
  --grad: linear-gradient(to right, #A9A8EE, #5E43CA);
  --grad-soft: linear-gradient(135deg, rgba(169,168,238,0.18), rgba(94,67,202,0.18));
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-neon: 0 0 0 1px rgba(169,168,238,0.18), 0 18px 60px -20px rgba(94,67,202,0.55);

  /* Respiro das bordas. Era `92vw`, proporcional — o que invertia a lógica:
     no celular sobravam 7px de margem e no desktop mais de 100px, quando é a
     tela pequena que mais precisa de folga. Agora o gutter tem piso de 20px,
     cresce com a tela e trava em 48px. */
  --gutter: clamp(20px, 4vw, 48px);
  --container: min(1240px, calc(100% - 2 * var(--gutter)));
  --maxread: 62ch;

  /* Escala tipográfica das seções */
  --fs-h2:     clamp(36px, 5vw, 64px);   /* h2 de seção */
  --fs-h2-alt: clamp(28px, 4.8vw, 60px); /* frases pinadas (word-stagger) */
  --fs-h3:     clamp(28px, 3.4vw, 42px);
  --fs-body:   clamp(15px, 1.6vw, 18px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; max-width: 100vw; }

/* Acessibilidade — skip link só aparece no foco do teclado */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #5E43CA; color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0;
  font: 600 14px/1 'Montserrat', sans-serif;
  z-index: 99999; text-decoration: none;
}
.skip-link:focus { left: 0; }
/* scroll-behavior removido: conflita com Lenis (cria double-easing) */
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  /* Sem `overflow-x: hidden` aqui: ele cria um scroll container e mata
     `position: sticky` em todos os descendentes. O `overflow-x: clip` da
     regra html,body já corta o transbordo horizontal sem esse efeito. */
  line-height: 1.55;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--violet-2); color: white; }

/* ---------- Typography ---------- */
.exo { font-family: 'Exo 2', 'Montserrat', sans-serif; letter-spacing: -0.01em; }
h1, h2, h3, h4 { font-family: 'Exo 2', sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }

.h-lg { font-size: clamp(26px, 4.4vw, 48px); font-weight: 700; }

.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 56ch; }
.eyebrow { font-family: 'Exo 2', sans-serif; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: var(--violet-1); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout primitives ---------- */
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: clamp(80px, 12vw, 100px) 0; overflow-x: clip; }

/* ---------- Badge / chip ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(169,168,238,0.12), rgba(94,67,202,0.18));
 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--violet-1);
  box-shadow: 0 0 12px var(--violet-1);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-primary {
  color: white;
  background: var(--grad);
  box-shadow: 0 12px 40px -10px rgba(94,67,202,0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 20px 60px -10px rgba(94,67,202,0.9); }
.btn .arrow {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Orbs (subtle, deep) ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.orb-violet { background: radial-gradient(circle, #2318a8 0%, transparent 70%); }
.orb-deep   { background: radial-gradient(circle, #0e0935 0%, transparent 70%); opacity: 0.22; }

/* Section seam fix: smooth background gradient between sections to eliminate visible folds */
body {
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(58,37,150,0.10), transparent 60%),
    var(--bg);
}
.section { background: transparent; }

/* ---------- NAV (floating centered pill with 3D flip menu) ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  transition: top .3s ease;
}
.nav-inner {
  pointer-events: auto;
  margin: 0 auto;
  width: max-content;
  max-width: calc(100% - 24px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,16,38,0.78), rgba(12,10,22,0.5));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
/* nav glow on hover */
.nav-inner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 25% 50%, rgba(169,168,238,0.28), transparent 35%),
    radial-gradient(circle at 60% 50%, rgba(127, 95, 230, 0.28), transparent 35%),
    radial-gradient(circle at 85% 50%, rgba(94,67,202,0.28), transparent 35%);
  opacity: 0;
  transition: opacity .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  filter: blur(20px);
}
.nav-inner:hover::before { opacity: 1;border-radius: 20px; }

/* Variante `logo`: só a marca, encostada à esquerda.
   Sem menu e sem CTA a pílula perde a razão de existir — o fundo, a borda e a
   sombra viravam uma caixa vazia atravessando a tela. Fica a logo sozinha.
   Também sai do `fixed`: numa página de leitura longa, marca perseguindo o
   scroll é ruído, e sem fundo ela ficaria por cima do texto. Rola junto e
   some, como cabeçalho de documento. */
.nav--logo {
  position: absolute;
  top: 28px;
}
.nav--logo .nav-inner {
  width: var(--container);
  max-width: var(--container);
  justify-content: flex-start;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav--logo .nav-inner::before { display: none; }

/* 89×34 = proporção real do PNG (939×360). Caixa maior deixaria vão morto ao lado. */
.logo {
  display: inline-block;
  width: 89px;
  height: 34px;
  background-image: url('/assets/images/Logo-V-Negativa-Fuse.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  position: relative; z-index: 2;
  margin: 0 4px;
}
.nav-item {
  position: relative;
  display: inline-block;
  perspective: 600px;
  border-radius: 12px;
}
.nav-item .flip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  border-radius: 12px;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease, color .3s ease;
  cursor: pointer;
}
.nav-item .flip-back {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 12px;
  transform: rotateX(90deg);
  transform-origin: center top;
  opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  pointer-events: none;
}
.nav-item:hover .flip {
  transform: rotateX(-90deg);
  opacity: 0;
}
.nav-item:hover .flip-back {
  transform: rotateX(0deg);
  opacity: 1;
}
.nav-item .glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  pointer-events: none;
  filter: blur(14px);
}
.nav-item:hover .glow {
  opacity: 0.9;
  transform: scale(1.4);
}
.nav-item .icon { width: 16px; height: 16px; display: inline-block; }

.nav .btn { padding: 10px 18px; font-size: 13px; position: relative; z-index: 2; }
.nav .btn .arrow { width: 20px; height: 20px; }

/* mobile burger */
.nav-burger {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  position: relative; z-index: 2;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,6,12,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--ink); }
.mobile-menu a:hover { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mobile-menu .close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
}

@media (min-width: 860px) {
  .nav-links { display: inline-flex; }
  .nav-burger { display: none; }
}
@media (max-width: 859px) {
  .nav .btn { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
@supports (height: 100svh) {
  .hero { height: 100svh; }
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video, .hero-video .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dotted-surface {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
}
/* Vinheta escura por cima dos pontos, abaixo do conteúdo — destaca o texto */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 50% 55%, rgba(7,6,12,0.55) 0%, rgba(7,6,12,0.15) 55%, transparent 85%);
  z-index: 2;
  pointer-events: none;
}
.dotted-surface canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.video-fallback {
  background:
    radial-gradient(60% 70% at 20% 30%, rgba(94,67,202,0.55), transparent 60%),
    radial-gradient(50% 60% at 80% 70%, rgba(169,168,238,0.45), transparent 60%),
    radial-gradient(40% 40% at 50% 50%, rgba(58,37,150,0.7), transparent 60%),
    #030208;
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}
/* Só o scale anima. As `background-position` que havia aqui não moviam nada:
   o background-size padrão de um gradiente é o próprio elemento, e o offset
   percentual vale (área − imagem) × %, ou seja zero. Elas custavam um repaint
   da hero inteira a cada frame, para sempre, sem efeito visual — enquanto o
   transform sozinho é composto na GPU. */
@keyframes heroDrift {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 50% 0%, transparent 0%, rgba(7,6,12,0.35) 40%, rgba(7,6,12,0.85) 80%),
    linear-gradient(180deg, rgba(7,6,12,0.45) 0%, rgba(7,6,12,0.7) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.9'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 2; pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-inline: max(24px, var(--gutter));
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 800;
  max-width: 20ch;
  text-wrap: balance;
  line-height: 1.08;
}
@media (min-width: 1100px) {
  .hero h1 { font-size: clamp(48px, 4.6vw, 68px); }
}
.hero .lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-2);
  max-width: 58ch;
  text-wrap: pretty;
}
.hero .scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: .6;
}
.scroll-cue .line {
  width: 1px; height: 26px;
  background: linear-gradient(180deg, transparent, var(--violet-1));
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 640px) {
  .hero .scroll-cue { display: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.3); }
}

/* =========================================================
   SECTION 2 — Leads chegam e somem
   ========================================================= */
.s-leads {
  position: relative;
  overflow: hidden;
}
.s-leads .grid-2 {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
/* 760px e não 900: em tablet retrato (834) o container tem 768px, largura de
   sobra para duas colunas. Empilhar ali fazia a imagem virar um bloco de 768px
   de altura sozinho. */
@media (min-width: 760px) {
  .s-leads .grid-2 { grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px); }
}
.leads-text { display: flex; flex-direction: column; gap: 24px; }
.leads-text h2 { max-width: 16ch; }
.leads-text p { color: var(--ink-2); font-size: clamp(15px, 1.6vw, 18px); max-width: 52ch; }
/* ---- leads visual (money.png — indexed, sem alpha, 1024×1024) ---- */
.leads-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #120e28 0%, #08061a 100%);
  
}
.leads-visual .section-img {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 759px) {
  /* Mobile: largura total, altura proporcional à imagem — sem corte */
  .leads-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: none;
    border-radius: var(--radius);
  }
}

/* ---- utilitário de imagem responsiva ---- */
.section-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.leads-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 35% at 30% 30%, rgba(169,168,238,0.4), transparent 60%),
    radial-gradient(50% 40% at 70% 70%, rgba(94,67,202,0.5), transparent 60%);
}

/* ---- Canvas "queima de budget" (funil de vendas → estilhaço) ---- */
.leads-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
/* No modo canvas a imagem fica escondida DESDE O SERVIDOR — mata o "flash" do
   PNG antes do JS assumir. O canvas (transparente até desenhar) já ocupa o lugar,
   e a seção some com o "quadrado" (fundo + glow + recorte). */
.leads-visual.has-canvas {
  background: none;
  box-shadow: none;
  overflow: visible;
}
.leads-visual.has-canvas::before { display: none; }
.leads-visual.has-canvas .section-img { display: none; }

/* Fallback (reduced-motion ou animação indisponível): volta a imagem,
   esconde o canvas e restaura a moldura da caixa. */
@media (prefers-reduced-motion: reduce) {
  .leads-visual.has-canvas { background: linear-gradient(160deg, #120e28 0%, #08061a 100%); overflow: hidden; }
  .leads-visual.has-canvas::before { display: block; }
  .leads-visual.has-canvas .section-img { display: block; }
  .leads-visual.has-canvas .leads-canvas { display: none; }
}
.leads-visual.has-canvas.canvas-fallback { background: linear-gradient(160deg, #120e28 0%, #08061a 100%); overflow: hidden; }
.leads-visual.has-canvas.canvas-fallback::before { display: block; }
.leads-visual.has-canvas.canvas-fallback .section-img { display: block; }
.leads-visual.has-canvas.canvas-fallback .leads-canvas { display: none; }

/* =========================================================
   SECTION 3 — Zoom text explode
   ========================================================= */
.s-zoom {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  box-sizing: border-box;
}
.s-zoom::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(94,67,202,0.10) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.zoom-sticky {
  position: relative;
  width: 100%;
  max-width: 940px;
  padding-inline: max(28px, var(--gutter));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.zoom-sticky .orb {
  /* Centraliza o orb exatamente atrás do texto, não em top:30% */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none;
}
.zoom-text {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h2-alt);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
  width: 100%;
  color: #fff;
  will-change: transform, opacity;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .zoom-text {
    font-size: clamp(26px, 7.5vw, 40px);
    line-height: 1.22;
  }
}
.zoom-text em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* =========================================================
   SECTION 6 — Método
   ========================================================= */
.s-method {
  position: relative;
  overflow: hidden;
}
.method-head {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: clamp(48px, 8vw, 72px);
}
@media (min-width: 900px) {
  .method-head { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
}
.method-head h2 { font-size: var(--fs-h2); line-height: 1.05; }

.method-head p { color: var(--ink-2); font-size: clamp(16px, 1.8vw, 18px); max-width: 45ch; line-height: 1.6; }
@media (max-width: 700px) {
  .method-head h2 { font-size: 36px; }
  .method-head p { font-size: 16px; line-height: 1.65; }
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 36px 30px 32px;
  border-radius: 22px;
  /* mesma linguagem de vidro dos checkpoints do circuito */
  background: linear-gradient(180deg, rgba(16,12,32,0.55) 0%, rgba(9,7,18,0.66) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(169, 168, 238, 0.10);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .5s cubic-bezier(.2,.7,.2,1),
    border-color .5s cubic-bezier(.2,.7,.2,1),
    box-shadow .5s cubic-bezier(.2,.7,.2,1);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 24px 50px -30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Sheen / mouse light overlay (top inside) */
.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.06), transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
}
.card:hover::before { opacity: 1; }

/* Bottom premium glow (cyan + violet ellipse), like GradientCard */
.card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 65%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 100%, rgba(123, 108, 230, 0.42) -10%, transparent 60%),
    radial-gradient(ellipse at 25% 100%, rgba(94, 67, 202, 0.34) -10%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(108, 86, 224, 0.50) -20%, transparent 55%);
  filter: blur(40px);
  opacity: 0.55;
  transition: opacity .5s ease, transform .5s ease;
}
.card:hover {
  transform: translateY(-4px);
  /* "energiza" como um checkpoint do circuito ao passar o mouse */
  border-color: rgba(169, 168, 238, 0.34);
  box-shadow:
    0 -6px 60px -18px rgba(94, 67, 202, 0.42),
    0 30px 60px -28px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.card:hover::after { opacity: 0.85; }

/* Glowing bottom edge */
.card-edge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(169,168,238,0.55) 50%, transparent 100%);
  z-index: 1;
  box-shadow:
    0 0 12px 2px rgba(139, 134, 240, 0.35),
    0 0 22px 4px rgba(94, 67, 202, 0.22);
  transition: box-shadow .4s ease, opacity .4s ease;
  opacity: 0.6;
  pointer-events: none;
}
.card:hover .card-edge {
  opacity: 1;
  box-shadow:
    0 0 16px 3px rgba(185, 165, 255, 0.55),
    0 0 28px 5px rgba(94, 67, 202, 0.40);
}
/* Glowing corner verticals */
.card-corner {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 22%;
  z-index: 1;
  background: linear-gradient(to top, rgba(169,168,238,0.5) 0%, rgba(169,168,238,0.22) 40%, transparent 100%);
  box-shadow: 0 0 12px 2px rgba(139, 134, 240, 0.32);
  opacity: 0.55;
  transition: opacity .4s ease;
  pointer-events: none;
}
.card:hover .card-corner { opacity: 1; }
.card-corner.l { left: 0; }
.card-corner.r { right: 0; }

/* Icon chip (skeuomorphic dark circle) */
.card-icon {


  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  width: 4.4em;
}


.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  color: rgba(169,168,238,0.7);
  letter-spacing: 0.18em;
  position: relative; z-index: 1;
}
.card h3 {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
  color: white;
}
.card .card-sub {
  font-family: 'Exo 2', sans-serif;
  margin-top: 8px;
  color: rgba(200, 210, 255, 0.6);
  font-size: 14.5px;
  font-style: italic;
  position: relative; z-index: 1;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative; z-index: 1;
}
.card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(220, 226, 255, 0.85);
  font-size: 16px;
  line-height: 1.5;
}
.card li::before {
  content: '';
  flex: none;
  margin-top: 7px;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #a9a8ee);
  box-shadow: 0 0 8px rgba(169,168,238,0.6);
}

/* =========================================================
   SECTION 7 — Cases (overlapping fan)
   ========================================================= */
.cases-section {
  padding: clamp(80px, 12vw, 160px) 5%;
  position: relative;

}
.cases-header {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.cases-header .eyebrow { display: inline-block; margin-bottom: 12px; }
.cases-header h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
}
.cases-header p {
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto;
}

.cases-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.case-card {
  width: 240px;
  height: 380px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  margin-left: -60px;
  box-shadow: -15px 0 25px rgba(0,0,0,0.8);
  filter: grayscale(30%) brightness(0.78);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, filter, margin;
  background: #0a0814;
}
.case-card:first-child { margin-left: 0; }

.case-card:nth-child(1) { transform: rotateZ(-14deg); }
.case-card:nth-child(2) { transform: rotateZ(-7deg);  }
.case-card:nth-child(3) { transform: rotateZ(0deg);   }
.case-card:nth-child(4) { transform: rotateZ(7deg);   }
.case-card:nth-child(5) { transform: rotateZ(14deg);  }

.case-card:hover {
  filter: grayscale(0%) brightness(1.15);
  transform: scale(1.15) translateY(-30px) rotateZ(0deg) !important;
  z-index: 50;
  margin: 0 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.9);
}

.case-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.case-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.case-card:hover .case-bg { transform: scale(1.1); }

.fuse-case-btn {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.case-card:hover .fuse-case-btn { opacity: 1; }

@media (max-width: 820px) {
  .cases-gallery { flex-direction: column; gap: 24px; padding: 40px 0; }
  .case-card {
    width: min(80vw, 320px);
    height: 420px;
    margin: 0;
    transform: none !important;
    filter: grayscale(0%) brightness(0.9);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
  }
  .case-card:hover { transform: none !important; margin: 0; }
  .fuse-case-btn { opacity: 1; top: auto; bottom: 20px; transform: translateX(-50%); }
}

/* --- Case modal --- */
.fuse-case-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fuse-case-modal.open { display: flex; }
.fuse-case-overlay {
  position: absolute; inset: 0;
  background: rgba(4,3,9,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.55s ease, backdrop-filter 0.55s ease;
  -webkit-transition: background 0.55s ease, -webkit-backdrop-filter 0.55s ease;
}
.fuse-case-modal.video-playing .fuse-case-overlay {
  background: rgba(4,3,9,0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
.fuse-case-content {
  position: relative;
  width: min(1120px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(180deg, #0e0a20 0%, #060412 100%);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
  transform: scale(0.96);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fuse-case-content::-webkit-scrollbar { display: none; width: 0; height: 0; }
.fuse-case-modal.open .fuse-case-content { transform: scale(1); }

.fuse-case-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  cursor: pointer; color: var(--ink);
  font-size: 26px; line-height: 1;
  font-family: 'Exo 2', sans-serif;
  z-index: 2;
}
.fuse-case-close:hover { background: rgba(255,255,255,0.15); }

.fuse-modal-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 820px) {
  .fuse-modal-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; }
}
.fuse-modal-sidebar { display: flex; flex-direction: column; gap: 18px; }
.fuse-modal-logo-wrapper { min-height: 1px; }
.fuse-modal-logo { display: block; max-width: 120px; height: auto; }
/* 5/8 = proporção nativa dos posters de case (1002×1574).
   Com 4/3 sobrava letterbox lateral; com 9/16 o poster do vídeo cortava topo e base. */
.fuse-modal-main-img {
  width: 100%;
  aspect-ratio: 5 / 8;
  max-height: min(58vh, 480px);
  margin: 0 auto;
  border-radius: 18px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #100c22;
  border: 1px solid var(--line);
}

.fuse-modal-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0 0 20px;
  color: #fff;
}
.fuse-modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stat-value {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label {
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fuse-modal-description .desc-block { margin-bottom: 22px; }
.fuse-modal-description h4 {
  font-family: 'Exo 2', sans-serif;
  color: #a9a8ee;
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.fuse-modal-description p {
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}
.btn-case-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.s-testi {
  position: relative;
  overflow: hidden;
}
.testi-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.testi-head h2 { max-width: 16ch; font-size: var(--fs-h2); }
.testi-head p { color: var(--ink-2); max-width: 50ch; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  max-height: 760px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
@media (min-width: 700px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

.testi-col {
  display: flex; flex-direction: column; gap: 24px;
  animation: testiScroll var(--dur, 28s) linear infinite;
}
.testi-grid:hover .testi-col { animation-play-state: paused; }
@keyframes testiScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.testi-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(20,16,38,0.7), rgba(12,10,22,0.7));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(94,67,202,0.25);
}
.testi-card p { color: var(--ink); font-size: 14.5px; line-height: 1.6; margin: 0; }
.testi-card .who {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
}
.testi-card .avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--grad);
  display: grid; place-items: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex: none;
}
.testi-card .name { font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 14px; }
.testi-card .role { color: var(--ink-3); font-size: 12.5px; }

/* hide extra columns on small */
@media (max-width: 699px) { .testi-col.col-2 { display: none; } }

/* =========================================================
   SECTION 4 — CINEMATIC SALES FUNNEL
   ========================================================= */

.s-funnel {
  position: relative;
  padding: 24px 0 40px;
}
@media (max-width: 700px) {
  .s-funnel { padding: 16px 0 32px; }
}
.funnel-pin {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
}
/* faint grid backdrop */
.funnel-grid {
  position: absolute; inset: 0;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: .45;
  z-index: 0;
}

.funnel-stage {
  position: relative;
  /* Mesmo gutter do .container — este bloco tem largura própria por causa do
     pin, mas a borda tem de bater com a do resto da página. */
  width: min(1280px, calc(100% - 2 * var(--gutter)));
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  z-index: 2;
  padding: 24px 0;
}
@media (min-width: 980px) {
  .funnel-stage { grid-template-columns: 0.9fr 1.3fr; gap: 56px; }
}
/* Tablet: a copy precisa de mais espaço proporcional que no desktop — em 768px
   de container, 0.9fr deixaria a coluna de texto com ~310px e o h2 quebraria
   em cinco linhas. Meio a meio equilibra sem empilhar. */
@media (min-width: 760px) and (max-width: 979px) {
  .funnel-stage { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .funnel-stage {
    width: min(calc(100% - 2 * var(--gutter)), 560px);
    padding: 0;
    gap: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* COPY */
.funnel-copy { will-change: transform; }
.funnel-copy .eyebrow { color: var(--violet-1); }
.funnel-copy h2 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  text-wrap: balance;
}
@media (max-width: 700px) {
  /* No mobile: copy fica em faixa compacta acima do canvas */
  .funnel-copy {
    padding: 20px 20px 0;
    text-align: center;
  }
  .funnel-copy h2 {
    font-size: clamp(20px, 6vw, 28px);
    margin-top: 8px;
  }
  .funnel-copy .eyebrow { font-size: 10px; }
  .funnel-nots { margin-top: 14px; gap: 10px; }
}
.funnel-copy h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.funnel-nots { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.funnel-not {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink-2);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.45;
  display: flex; align-items: flex-start; gap: 12px;
  /* estado inicial controlado por GSAP — sem opacity:0 aqui para evitar flash em fallback */
}
.funnel-not .x {
  flex: none;
  margin-top: 5px;
  width: 18px; height: 18px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255, 122, 138, 0.12);
  color: #ff7a8a;
}
.funnel-not .x svg { width: 8px; height: 8px; }

/* VISUAL */
.funnel-visual {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  
}
.funnel-img {
  display: block;
  width: 100%;
  height: auto;

}
@media (max-width: 700px) {
  .funnel-visual { border-radius: var(--radius); }
}

/* =========================================================
   FOOTER — NeoMinimal
   ========================================================= */
footer {
  position: relative;
  margin: 80px auto 0;
  max-width: 1280px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(15, 14, 24, 0.4);
  border-radius: 16px 16px 0 0;
  padding: 64px 0 32px;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
          mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
}
footer .container { max-width: 1180px; position: relative; z-index: 1; }

.foot-grid {
  display: grid;
  gap: 48px 32px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
@media (min-width: 800px) {
  /* Colunas de links com largura própria, brand ficando com a sobra. Com `fr`
     em todas, tirar uma coluna inflava o bloco da marca — a proporção 5fr:2fr
     só fechava com exatamente quatro colunas. Assim o rodapé aguenta qualquer
     número de colunas no config sem redesenho. */
  .foot-grid {
    grid-template-columns: 1fr repeat(var(--foot-cols, 3), minmax(150px, 200px));
    gap: 56px 36px;
  }
}

.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-brand .brand {
  display: inline-block;
  width: 89px;
  height: 34px;
  background-image: url('/assets/images/Logo-V-Negativa-Fuse.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.foot-brand p {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 38ch;
}
.foot-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(220, 226, 255, 0.7);
  margin: 0 0 18px;
  font-weight: 700;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-family: 'Montserrat', sans-serif;
  color: rgba(160, 165, 180, 0.85);
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 10px;
  width: fit-content;
  transition: color .2s ease;
}
.foot-col a .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: background .25s ease, width .25s cubic-bezier(.2,.7,.2,1);
}
.foot-col a:hover { color: var(--violet-1); }
.foot-col a:hover .dot { background: var(--violet-1); width: 16px; }

.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.foot-bottom-left {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(180, 185, 200, 0.45);
}
.foot-bottom-right { display: flex; align-items: center; gap: 20px; }
.socials {
  display: flex; align-items: center; gap: 14px;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.socials a { color: rgba(180, 185, 200, 0.5); transition: color .2s ease; }
.socials a:hover { color: var(--ink); }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(10, 207, 131, 0.06);
  border: 1px solid rgba(10, 207, 131, 0.18);
  font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(121, 245, 176, 0.8);
}
.status-pill .ledot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #79f5b0;
  box-shadow: 0 0 8px rgba(121, 245, 176, 0.8);
  animation: pulse 1.6s ease-in-out infinite;
}

/* =========================================================
   BG PATTERN (dots)
   ========================================================= */
.bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(169,168,238,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}
.s-method > .container { position: relative; z-index: 1; }

/* =========================================================
   ECOSYSTEM + RD STATION SECTION
   ========================================================= */
.s-eco {
  position: relative;
  overflow: hidden;
}
.eco-head {
  display: grid; gap: 28px; grid-template-columns: 1fr;
  align-items: end; margin-bottom: 64px;
}
@media (min-width: 760px) {
  .eco-head { grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px); }
}
.eco-head h2 { font-size: var(--fs-h2); }
.eco-head p { color: var(--ink-2); max-width: 52ch; font-size: var(--fs-body); }

.rd-block {
  display: grid; gap: 40px; grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,16,38,0.7), rgba(12,10,22,0.6));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.rd-block::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,67,202,0.45), transparent 60%);
  filter: blur(60px);
  top: -120px; right: -120px;
  pointer-events: none;
}
@media (min-width: 760px) {
  .rd-block { grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4.5vw, 64px); }
}
.rd-visual {
  position: relative;
  width: 100%;
  max-width: clamp(220px, 32vw, 360px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 24px);
}
.rd-visual .section-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 28px rgba(94, 67, 202, 0.25));
}
@media (max-width: 700px) {
  .rd-visual {
    max-width: 200px;
    padding: 8px;
  }
}

.rd-content > .badge { margin-bottom: 18px; }
.rd-content h3 { font-size: var(--fs-h3); max-width: 22ch; }
.rd-content p { color: var(--ink-2); font-size: clamp(15px, 1.6vw, 17px); margin-top: 18px; line-height: 1.7; }
.rd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.rd-tag {
  font-family: 'Exo 2', sans-serif;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.s-final {
  position: relative;
  overflow: hidden;
}
.final-grid {
  display: grid; gap: 48px; grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 760px) {
  .final-grid { grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); }
}
/* ---- final visual (cta-person.png — RGBA com alpha, 1006×1280, ratio ~4:5) ---- */
/* PNG com transparência: fundo #030208 funde com a página — sem gap visível */
.final-visual {
  position: relative;
  background: #030208;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Desktop: altura ditada pelo grid, imagem como contain centralizada */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
}
.final-visual .section-img {
  object-fit: contain;
  object-position: bottom center;
  height: 100%;
  width: auto;
  max-width: 100%;
}
@media (max-width: 759px) {
  .final-visual {
    order: -1;
    width: 100%;
    min-height: 0;
    /* Altura proporcional ao retrato: imagem de 4:5 a 80% da largura */
    height: calc(80vw * 1.27);
    max-height: 480px;
    background: #030208;
    border-radius: var(--radius);
  }
  .final-visual .section-img {
    width: 100%;
    height: 100%;
    object-position: top center;
  }
}

.final-content > .badge { margin-bottom: 22px; }
.final-content h2 { font-size: var(--fs-h2); }
.final-content p { color: var(--ink-2); font-size: clamp(15px, 1.7vw, 18px); margin-top: 22px; line-height: 1.7; max-width: 52ch; }
.final-content .final-reforco {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
}
.final-content .btn { margin-top: 32px; }

/* =========================================================
   Utilities
   ========================================================= */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.fade-in.visible { opacity: 1; transform: none; }

/* Lenis smooth scroll */
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =========================================================
   SECTION 5 — Funil de gotas (substitui video+phrases)
   ========================================================= */
.fnl-section {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  box-sizing: border-box;
}
#fnl-outro::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(94,67,202,0.10) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.fnl-text-container {
  max-width: 940px;
  padding-inline: max(28px, var(--gutter));
  text-align: center;
  z-index: 2;
  position: relative;
  will-change: transform, opacity;
}
/* Overlap: o texto pinado fica na camada de baixo; a dobra clara (.s-msys,
   z-index:2) sobe por cima criando a sobreposição. */
#fnl-outro { z-index: 1; }
/* Sobe o texto na seção para reduzir o vão escuro acima da frase.
   Mantém min-height:100vh (necessário para a dobra clara docar logo abaixo). */
#fnl-outro { align-items: flex-start; padding-top: clamp(110px, 16vh, 190px); }
.fnl-outro-text {
  font-family: 'Exo 2', sans-serif;
  font-size: var(--fs-h2-alt);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.fnl-word {
  display: inline-block;
  margin-right: 0.28em;
  will-change: transform, opacity, filter;
}



/* =========================================================
   Fade-in genérico para elementos sem animação GSAP
   ========================================================= */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
[data-fade].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-fade] { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* === Clients marquee === */

  .clients-section{
    position:relative;
    overflow:hidden;
    padding:110px 0 130px;
    background:transparent;
  }
  .clients-section::before{
    content:"";
    position:absolute;
    inset:-1px 0 0;
    background:radial-gradient(ellipse 70% 55% at 50% 55%, rgba(94,67,202,0.14), transparent 70%);
    pointer-events:none;
    z-index:0;
  }

  .clients-head{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:880px;
    margin:0 auto 64px;
    padding-inline: max(24px, var(--gutter));
  }
  /* Cápsula própria da esteira — não é .eyebrow (que é texto solto, sem borda). */
  .clients-eyebrow{
    display:inline-block;
    font-family:'Exo 2', sans-serif;
    font-weight:600;
    font-size:12px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:rgba(255,255,255,.65);
    border:1px solid rgba(169,168,238,.25);
    padding:6px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.02);
  }

  .marquee{
    position:relative;
    z-index:2;
    width:100%;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
            mask-image:linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
    -webkit-transform:translateZ(0);
            transform:translateZ(0);
  }
  .marquee + .marquee{ margin-top:36px; }
  .marquee-track{
    display:flex;
    gap:72px;
    width:max-content;
    animation:marquee-scroll 40s linear infinite;
    -webkit-animation:marquee-scroll 40s linear infinite;
    will-change:transform;
    -webkit-backface-visibility:hidden;
            backface-visibility:hidden;
    -webkit-transform:translate3d(0,0,0);
            transform:translate3d(0,0,0);
    -webkit-perspective:1000;
            perspective:1000;
  }
  .marquee-track.reverse{ animation-direction:reverse; -webkit-animation-direction:reverse; }
  .marquee-item{
    flex:0 0 auto;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .marquee-item img{
    height:100%;
    width:auto;
    max-width:200px;
    object-fit:contain;
    opacity:.85;
    transition:opacity .35s ease, transform .35s ease;
  }
  .marquee-item:hover img{
    opacity:1;
    transform:scale(1.08);
  }
  @keyframes marquee-scroll{
    from { -webkit-transform:translate3d(0,0,0); transform:translate3d(0,0,0); }
    to   { -webkit-transform:translate3d(-50%,0,0); transform:translate3d(-50%,0,0); }
  }
  @-webkit-keyframes marquee-scroll{
    from { -webkit-transform:translate3d(0,0,0); }
    to   { -webkit-transform:translate3d(-50%,0,0); }
  }
  @media (prefers-reduced-motion: reduce){
    .marquee-track{ animation:none; }
  }
  @media (max-width:640px){
    .clients-section{ padding:72px 0 90px; }
    .clients-head{ margin-bottom:40px; }
    .marquee{
      -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
              mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }
    .marquee + .marquee{ margin-top:24px; }
    .marquee-track{ gap:36px; animation-duration:28s; }
    .marquee-item{
      height:54px;
      width:calc((100vw - 72px) / 3);
      max-width:130px;
    }
    .marquee-item img{ max-width:100%; }
  }

/* =========================================================
   MODAL — Player de Vídeo (privacy-enhanced YouTube)
   ========================================================= */

/* Wrapper substitui .fuse-modal-main-img quando o card tem data-video */
.fuse-modal-video-wrap {
  aspect-ratio: 5 / 8;
  height: min(58vh, 480px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: #0e0a20;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  isolation: isolate;
}

/* Overlay escuro sobre o poster antes de dar play */
.fuse-modal-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(3,2,8,0.42);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.fuse-modal-video-wrap.is-loaded::after { background: transparent; }

/* Botão de play centralizado */
.fuse-video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.fuse-modal-video-wrap.is-loaded .fuse-video-play-btn { opacity: 0; pointer-events: none; }

.fuse-video-play-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s ease, box-shadow 0.35s ease;
  box-shadow: 0 0 40px -10px rgba(94,67,202,0.5);
}
.fuse-video-play-btn:hover .fuse-video-play-icon {
  transform: scale(1.1);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 0 60px -8px rgba(94,67,202,0.75);
}
.fuse-video-play-icon svg {
  width: 28px; height: 28px;
  margin-left: 4px; /* optical centering da seta */
}

/* Label "Privacidade garantida" abaixo do play */
.fuse-video-privacy-hint {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 2;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.fuse-video-privacy-hint svg { width: 11px; height: 11px; opacity: 0.7; }

/* Container do iframe — preenche o wrap após play */
.fuse-modal-player-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 3;
  display: none;
}
.fuse-modal-video-wrap.is-loaded .fuse-modal-player-frame { display: block; }

/* Responsivo: aspect-ratio já garante proporção; sidebar empilha no mobile */
@media (max-width: 819px) {
  .fuse-modal-video-wrap {
    height: min(52vh, 380px);
    border-radius: 14px;
  }
  .fuse-video-play-icon { width: 60px; height: 60px; }
  .fuse-video-play-icon svg { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .fuse-video-play-icon { transition: none; }
  .fuse-case-overlay { transition: none; }
}

/* =========================================================
   Blocos — utilitários que substituem style inline
   ========================================================= */

/* CTA centralizado abaixo dos cards (era style="display:flex;…") */
.cards-cta {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

/* CTA dentro da coluna de copy do funil (era style="padding:30px 0") */
.funnel-cta { padding: 30px 0; }
@media (max-width: 700px) {
  .funnel-cta { display: flex; justify-content: center; }
}

/* Lista de entregas — mesmo bullet gradiente dos cards do método */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(220, 226, 255, 0.85);
  font-size: 16px;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  flex: none;
  margin-top: 7px;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #a9a8ee);
  box-shadow: 0 0 8px rgba(169,168,238,0.6);
}
.leads-text .btn { align-self: flex-start; margin-top: 8px; }

/* split-media com a imagem à esquerda */
@media (min-width: 900px) {
  .s-leads.media-left .grid-2 { grid-template-columns: 1fr 1.05fr; }
  .s-leads.media-left .leads-text   { order: 2; }
  .s-leads.media-left .leads-visual { order: 1; }
}

/* =========================================================
   PAGE HERO — subpáginas
   Meia altura. Sem canvas: o dotted-surface é assinatura da home.
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 20vh, 220px) 0 clamp(70px, 10vw, 110px);
  display: grid;
  place-items: center;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(94,67,202,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.page-hero h1 {
  font-size: var(--fs-h2);
  font-weight: 800;
  max-width: 18ch;
  text-wrap: balance;
  line-height: 1.08;
}
.page-hero .lead { max-width: 56ch; text-wrap: pretty; }
.page-hero .btn { margin-top: 6px; }

/* =========================================================
   A DESCONSTRUÇÃO DA VAIDADE
   Canvas sticky cobrindo hero + frase de virada. Sem `pin`: um pin isola a
   animação dentro da própria seção e o feixe morre no vácuo.
   ========================================================= */
.dv {
  position: relative;
  height: 220vh;          /* o palco rola por trás do sticky */
  background: #030208;
}

.dv-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
@supports (height: 100svh) { .dv-viewport { height: 100svh; } }

.dv-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Sem vinheta a headline compete com o brilho dos pontos. */
.dv-vinheta {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(54% 48% at 50% 50%, rgba(3,2,8,0.52) 0%, rgba(3,2,8,0.14) 58%, transparent 84%),
    linear-gradient(180deg, rgba(3,2,8,0.6) 0%, transparent 24%, transparent 72%, rgba(3,2,8,0.7) 100%);
}

/* `overlay` amplificaria o halo do feixe e desenharia um bloco retangular.
   Aqui o grain é textura, não realce. */
.dv .hero-grain {
  z-index: 3;
  mix-blend-mode: soft-light;
  opacity: 0.14;
}

/* hero e frase dividem o mesmo palco, sobrepostas */
.dv-hero,
.dv-virada {
  grid-area: 1 / 1;
  position: relative;
  z-index: 4;
  padding-inline: max(24px, var(--gutter));
  will-change: transform, opacity, filter;
}

.dv-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.dv-hero h1 {
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 800;
  max-width: 20ch;
  text-wrap: balance;
  line-height: 1.08;
}
@media (min-width: 1100px) {
  .dv-hero h1 { font-size: clamp(48px, 4.6vw, 68px); }
}
.dv-hero .lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-2);
  max-width: 58ch;
  text-wrap: pretty;
}

.dv-virada {
  opacity: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.dv-frase {
  margin: 0;
  max-width: 16ch;
  font-size: var(--fs-h2-alt);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
}
.dv-word {
  display: inline-block;
  margin-right: 0.26em;
  opacity: 0.1;
  will-change: opacity, transform, filter;
}

.dv .scroll-cue { z-index: 4; }
@media (max-width: 640px) {
  .dv .scroll-cue { display: none; }
  .dv { height: 200vh; }
}

/* Sem JS/GSAP a frase precisa nascer legível. */
@media (prefers-reduced-motion: reduce) {
  .dv-virada { opacity: 1; }
  .dv-word { opacity: 1; }
}

/* =========================================================
   CARD + TIMELINE VERTICAL
   A linha preenche no scroll (altura controlada por timeline.js).
   O passo alcançado recebe .is-active: node acende, dia ganha neon.
   ========================================================= */
.s-card-timeline { position: relative; overflow: hidden; }
.s-card-timeline > .container { position: relative; z-index: 1; }

.ct-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) {
  .ct-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* ---- coluna da direita ---- */
.tl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}
.tl-titulo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(169,168,238,0.7);
  margin-bottom: 28px;
}

.tl-track { position: relative; }

/* trilho: do centro do primeiro node ao centro do último (posicionado pelo JS) */
.tl-rail {
  position: absolute;
  left: 13px;
  width: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.tl-progress {
  display: block;
  width: 100%;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #A9A8EE, #5E43CA);
  box-shadow: 0 0 12px rgba(169,168,238,0.55), 0 0 24px rgba(94,67,202,0.35);
}

.tl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.tl-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
}

/* ---- node ---- */
.tl-node {
  position: relative;
  justify-self: center;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #0e0b1e;
  border: 2px solid rgba(255,255,255,0.16);
  transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
}
.tl-step.is-active .tl-node {
  background: var(--violet-1);
  border-color: var(--violet-1);
  transform: scale(1.12);
  box-shadow:
    0 0 0 4px rgba(169,168,238,0.12),
    0 0 14px 2px rgba(169,168,238,0.75),
    0 0 30px 6px rgba(94,67,202,0.45);
  animation: tl-flicker 3.4s ease-in-out infinite;
}

/* ---- texto ---- */
.tl-body { min-width: 0; }
.tl-dia {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  transition: color .45s ease, text-shadow .45s ease;
}
.tl-step.is-active .tl-dia {
  color: #fff;
  text-shadow:
    0 0 6px rgba(169,168,238,0.85),
    0 0 18px rgba(94,67,202,0.55);
  animation: tl-flicker-text 3.4s ease-in-out infinite;
}
.tl-texto {
  margin: 6px 0 0;
  color: rgba(220, 226, 255, 0.55);
  font-size: 15px;
  line-height: 1.55;
  transition: color .45s ease;
}
.tl-step.is-active .tl-texto { color: rgba(220, 226, 255, 0.9); }

/* ---- flicker: oscilação sutil, nunca apaga de vez ---- */
@keyframes tl-flicker {
  0%, 100%   { box-shadow: 0 0 0 4px rgba(169,168,238,0.12), 0 0 14px 2px rgba(169,168,238,0.75), 0 0 30px 6px rgba(94,67,202,0.45); }
  42%        { box-shadow: 0 0 0 4px rgba(169,168,238,0.10), 0 0 10px 1px rgba(169,168,238,0.55), 0 0 22px 4px rgba(94,67,202,0.32); }
  46%        { box-shadow: 0 0 0 4px rgba(169,168,238,0.14), 0 0 18px 3px rgba(169,168,238,0.9),  0 0 36px 8px rgba(94,67,202,0.5); }
  52%        { box-shadow: 0 0 0 4px rgba(169,168,238,0.10), 0 0 11px 1px rgba(169,168,238,0.6),  0 0 24px 4px rgba(94,67,202,0.34); }
}
@keyframes tl-flicker-text {
  0%, 100%   { text-shadow: 0 0 6px rgba(169,168,238,0.85), 0 0 18px rgba(94,67,202,0.55); }
  42%        { text-shadow: 0 0 4px rgba(169,168,238,0.6),  0 0 12px rgba(94,67,202,0.38); }
  46%        { text-shadow: 0 0 9px rgba(169,168,238,1),    0 0 24px rgba(94,67,202,0.7); }
  52%        { text-shadow: 0 0 4px rgba(169,168,238,0.65), 0 0 13px rgba(94,67,202,0.4); }
}

/* Sem movimento: acende tudo, sem piscar. */
@media (prefers-reduced-motion: reduce) {
  .tl-step .tl-node,
  .tl-step .tl-dia { animation: none !important; transition: none !important; }
}

@media (max-width: 899px) {
  .tl { padding-top: 8px; }
  .tl-steps { gap: 32px; }
  .tl-dia { font-size: 16px; }
}

/* =========================================================
   PORTFOLIO GRID
   Screenshots desktop. Mesma linguagem de vidro dos cards do método.
   ========================================================= */
.s-portfolio { position: relative; overflow: hidden; }

.portfolio-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.portfolio-head h2 { font-size: var(--fs-h2); line-height: 1.05; }
.portfolio-head p { color: var(--ink-2); max-width: 56ch; }

.portfolio-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(16,12,32,0.55) 0%, rgba(9,7,18,0.66) 100%);
  border: 1px solid rgba(169, 168, 238, 0.10);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform .5s cubic-bezier(.2,.7,.2,1),
    border-color .5s cubic-bezier(.2,.7,.2,1),
    box-shadow .5s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 168, 238, 0.34);
  box-shadow:
    0 -6px 60px -18px rgba(94, 67, 202, 0.42),
    0 30px 60px -28px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Ancora no topo: a dobra do site é o que importa, o rodapé pode cortar. */
.portfolio-shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0814;
  border-bottom: 1px solid var(--line);
}
.portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.portfolio-card:hover .portfolio-shot img { transform: scale(1.04); }

.portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px 22px;
}
.portfolio-cliente {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.portfolio-tipo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(169,168,238,0.7);
}

/* =========================================================
   Variantes do shell
   ========================================================= */

/* Landing page: o CTA do nav é o único destino, some nunca. */
.nav .btn.nav-cta-always { display: inline-flex; }

/* Footer compacto: sem as 4 colunas, a linha legal não precisa do topo. */
.foot-bottom.is-compact {
  padding-top: 0;
  border-top: 0;
}

/* =========================================================
   MÉTODO COMO SISTEMA — 3 estágios (s-msys)
   DOBRA CLARA: painel flutuante que quebra o ritmo escuro do site
   como transição moderna. Acento por estágio:
   violeta (marca) · azul (processo) · verde (crescimento).
   ========================================================= */
.s-msys {
  --marca: #7a74e6;
  --processo: #3f8ee6;
  --cresc: #2fae76;
  --ink-d: #191636;
  --ink-m: #4c4869;
  --ink-l: #78748f;
  position: relative;
  z-index: 2;
  border-radius: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(78% 60% at 12% 0%, rgba(122,116,230,.12), transparent 60%),
    radial-gradient(70% 60% at 92% 100%, rgba(47,174,118,.09), transparent 60%),
    linear-gradient(180deg, #f7f5fc 0%, #efebf8 100%);
  box-shadow:
    0 -28px 80px -46px rgba(94,67,202,.35),
    0 44px 90px -54px rgba(0,0,0,.7);
}
/* Some com a decoração escura herdada do .s-method */
.s-msys .bg-pattern, .s-msys .orb { display: none; }
.s-msys > .container { position: relative; z-index: 1; }
.s-msys .method-head { margin-bottom: clamp(28px, 4vw, 40px); }
.s-msys .eyebrow { color: #5E43CA; }
.s-msys .method-head h2 { color: var(--ink-d); }
.s-msys .method-head p { color: var(--ink-m); }

/* Espinha "Sistema Fuse" */
.msys-spine {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto clamp(28px, 5vw, 44px);
}
.msys-spine-line { flex: 1; height: 1px; }
.msys-spine-line.l { background: linear-gradient(90deg, transparent, rgba(122,116,230,.55)); }
.msys-spine-line.r { background: linear-gradient(90deg, rgba(47,174,118,.55), transparent); }
.msys-spine-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid rgba(30,22,70,.09);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px -12px rgba(94,67,202,.3);
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-m);
  white-space: nowrap;
}
.msys-spine-dot { width: 5px; height: 5px; border-radius: 50%; }
.msys-spine-dot.pu { background: var(--marca); box-shadow: 0 0 10px var(--marca); }
.msys-spine-dot.gr { background: var(--cresc); box-shadow: 0 0 10px var(--cresc); }

/* Grade dos 3 estágios */
.msys-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 940px) { .msys-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.msys-stage {
  --st: var(--marca);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(30,22,70,.08);
  border-top: 2px solid var(--st);
  background: #ffffff;
  box-shadow:
    0 20px 50px -30px rgba(70,50,130,.4),
    0 2px 6px rgba(30,22,70,.05);
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}
.msys-stage.st-marca    { --st: var(--marca); }
.msys-stage.st-processo { --st: var(--processo); }
.msys-stage.st-cresc    { --st: var(--cresc); }
.msys-stage:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--st) 40%, rgba(30,22,70,.08));
  box-shadow:
    0 -4px 40px -22px color-mix(in srgb, var(--st) 55%, transparent),
    0 28px 56px -26px rgba(70,50,130,.42);
}

/* Número do estágio — foco e hierarquia */
.msys-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--st);
  background: color-mix(in srgb, var(--st) 13%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--st) 30%, transparent);
  margin-bottom: 16px;
}
.msys-stage h3 {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-d);
  line-height: 1;
  margin-bottom: 8px;
}
.msys-what {
  font-size: 15px;
  color: var(--ink-m);
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 45px;
}
.msys-what b { color: var(--ink-d); font-weight: 600; }
@media (max-width: 939px) { .msys-what { min-height: 0; } }

/* Ilustração — palco de sensação e resultado (claro) */
.msys-art {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(30,22,70,.06);
  background:
    radial-gradient(130% 110% at 50% 0%, color-mix(in srgb, var(--st) 18%, transparent), transparent 72%),
    linear-gradient(180deg, #ffffff, #f3f0fb);
}
.msys-svg { display: block; width: 100%; height: auto; }

/* Leitura de cada estágio — mensagem de alto impacto */
.msys-read {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-d);
  line-height: 1.25;
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(30,22,70,.1);
}
.msys-read b { color: var(--st); font-weight: 800; }

/* Fecho */
.msys-tagline { text-align: center; margin-top: clamp(24px, 4vw, 34px); }
.msys-tagline p { font-size: clamp(13px, 1.6vw, 15px); color: var(--ink-l); line-height: 1.6; margin: 0 auto; max-width: 640px; }
.msys-tagline strong { color: #5E43CA; font-weight: 600; }
.msys-illus { display: block; font-size: 10px; color: var(--ink-l); opacity: .8; letter-spacing: .06em; margin-top: 10px; }

.s-msys .cards-cta { margin-top: clamp(28px, 4vw, 40px); }

/* =========================================================
   HISTÓRIAS DE SUCESSO
   Hub (/historias-de-sucesso) e páginas de case.
   Mobile-first: o desktop entra a partir de 900px.
   ========================================================= */

/* ---------- Hero da história ---------- */
.historia-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 18vh, 200px) 0 clamp(40px, 6vw, 64px);
}
.historia-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(55% 55% at 25% 35%, rgba(94,67,202,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.historia-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .historia-hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.historia-hero-texto { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

/* Migalha de volta ao hub. Discreta: a página é a história, não a navegação. */
.historia-voltar {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-1);
  opacity: .85;
  transition: opacity .2s ease;
}
.historia-voltar::before { content: '\2190\00a0'; }
.historia-voltar:hover { opacity: 1; }

.historia-logo { width: auto; max-width: 220px; max-height: 72px; object-fit: contain; object-position: left center; }

/* Sem logo do cliente, o nome ocupa o lugar dele — mesmo peso visual. */
.historia-cliente {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.historia-hero h1 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.08;
  max-width: 20ch;
  text-wrap: balance;
}
.historia-hero .lead { max-width: 52ch; }

/* Ficha do negócio: rótulo pequeno em cima, valor embaixo. */
.historia-ficha {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 10px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  width: 100%;
}
@media (min-width: 620px) { .historia-ficha { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 900px) { .historia-ficha { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.historia-ficha dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.historia-ficha dd {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.historia-hero-capa {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neon);
  aspect-ratio: 4 / 5;
}
.historia-hero-capa img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Métricas em destaque ---------- */
.historia-metricas {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
  margin-top: clamp(40px, 6vw, 64px);
}
@media (min-width: 700px) { .historia-metricas { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.historia-metrica {
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(169,168,238,0.07), rgba(94,67,202,0.07));
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.historia-metrica-num {
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.historia-metrica-rot { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }

/* ---------- Corpo: Sobre / Desafio / Solução / Resultados ---------- */
.historia-corpo-inner { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 76px); }

.historia-secao { display: grid; gap: 18px; }
@media (min-width: 900px) {
  /* Título à esquerda, texto à direita — o mesmo cabeçalho assimétrico que o
     resto do site usa quando há eyebrow. */
  .historia-secao { grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
  .historia-secao-head { position: sticky; top: 110px; }
}

.historia-secao-head .eyebrow { display: block; margin-bottom: 12px; }
.historia-secao-head h2 { font-size: var(--fs-h3); }

.historia-secao-texto { max-width: var(--maxread); }
.historia-secao-texto p { font-size: var(--fs-body); color: var(--ink-2); line-height: 1.7; margin: 0 0 18px; }
.historia-secao-texto p:last-child { margin-bottom: 0; }
.historia-secao-texto strong { color: var(--ink); font-weight: 600; }

/* ---------- Depoimento ---------- */
.historia-depoimento {
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: var(--grad-soft);
}
.historia-depoimento blockquote { margin: 0; }
.historia-depoimento blockquote p {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.historia-depoimento blockquote p::before { content: '\201C'; }
.historia-depoimento blockquote p::after  { content: '\201D'; }

.historia-depoimento figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.historia-depoimento figcaption strong { display: block; font-family: 'Exo 2', sans-serif; font-size: 15px; }
.historia-depoimento figcaption em { font-style: normal; font-size: 13px; color: var(--ink-3); }

.historia-depoimento-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--grad);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

/* ---------- Links externos da história ---------- */
.historia-links { display: flex; flex-wrap: wrap; gap: 14px; }
.historia-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.historia-links a:hover { border-color: rgba(169,168,238,0.5); background: rgba(255,255,255,0.04); }

/* ---------- Grade do hub ---------- */
.historias-grid { display: grid; gap: 20px; }
@media (min-width: 640px)  { .historias-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .historias-grid { grid-template-columns: repeat(3, 1fr); } }

.historia-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(15, 14, 24, 0.5);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.historia-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169,168,238,0.35);
  box-shadow: var(--shadow-neon);
}

.historia-card-capa { aspect-ratio: 16 / 11; overflow: hidden; }
/* Ancorado no topo: a capa ideal é paisagem, mas enquanto os cases usarem as
   artes verticais do leque o corte precisa preservar a parte de cima, que é
   onde a arte tem o conteúdo. */
.historia-card-capa img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.historia-card:hover .historia-card-capa img { transform: scale(1.06); }

.historia-card-corpo { display: flex; flex-direction: column; gap: 6px; padding: 24px; flex: 1; }
.historia-card-logo { max-width: 130px; max-height: 40px; object-fit: contain; object-position: left center; }
.historia-card-cliente { font-size: 18px; font-weight: 700; color: var(--ink); }
.historia-card-seg { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }

.historia-card-num {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.historia-card-rot { margin: 4px 0 0; font-size: 13px; color: var(--ink-2); line-height: 1.45; }

.historia-card-link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--violet-1);
}

.historias-vazio { color: var(--ink-3); font-size: var(--fs-body); }

/* Bloco "Outras histórias" no fim de um case: o grid já traz o padding da
   .section, então aqui só entra o rótulo. */
.historias-outras { padding-top: clamp(40px, 6vw, 64px); }
.historias-outras .historias-grid-secao { padding-top: 20px; }

/* =========================================================
   TABLET RETRATO (760–939px) — iPad 834, Air, Mini paisagem
   O site pulava de mobile direto para desktop: até 939px tudo
   empilhava em coluna única, e num container de 768px isso deixava
   cards de 718px de altura e imagens de 480px sozinhas na tela.
   Esta faixa aproveita a largura que o tablet tem de sobra.
   ========================================================= */
@media (min-width: 760px) and (max-width: 939px) {

  /* --- Método: card deitado ---------------------------------
     Em coluna única a ilustração ganhava 493px de altura sozinha.
     Deitado, o texto ocupa a esquerda e a arte a direita, e o card
     inteiro cabe na altura que só a arte ocupava antes. */
  .msys-stage {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 320px);
    /* As quatro linhas precisam ser explícitas: com linhas implícitas o
       `grid-row: 1 / -1` da arte resolveria para a linha 1 sozinha — `-1`
       conta a última linha EXPLÍCITA — e a arte empurrava o texto para baixo
       em vez de acompanhá-lo. A última é 1fr para o fecho ficar no rodapé. */
    grid-template-rows: auto auto auto 1fr;
    column-gap: 28px;
    align-content: start;
    padding: 24px;
  }
  .msys-stage > .msys-num  { grid-column: 1; grid-row: 1; }
  .msys-stage > h3         { grid-column: 1; grid-row: 2; }
  .msys-stage > .msys-what { grid-column: 1; grid-row: 3; }
  .msys-stage > .msys-read { grid-column: 1; grid-row: 4; align-self: end; }

  .msys-stage > .msys-art {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    margin-bottom: 0;
  }
  .msys-stage > .msys-read { margin-top: 18px; }
  .msys-grid { gap: 16px; }

  /* --- Funil ------------------------------------------------
     A frase de fechamento reservava a tela inteira (100vh) mais
     179px de padding para uma linha de texto. Continua sendo uma
     dobra própria, sem o vão morto. */
  .fnl-section { min-height: 76vh; }
  #fnl-outro { padding-top: clamp(64px, 9vh, 110px); }
  .fnl-text-container { padding: 0 32px; }

  /* --- Respiro geral ---------------------------------------
     100px em cima e embaixo de cada seção somavam mais de duas
     telas de vazio ao longo da página. */
  .section { padding: clamp(56px, 8vw, 76px) 0; }
  .clients-section { padding: 76px 0 84px; }
  .clients-head { margin-bottom: 44px; }
  .cases-header { margin-bottom: 40px; }

  /* --- Fechamento ------------------------------------------
     Com duas colunas a partir de 760px, o retrato volta a ser
     coluna e não bloco empilhado. */
  .final-visual { max-height: 520px; }

  /* --- "Não somos agência" ---------------------------------
     A ilustração vinha abaixo da copy ocupando a largura toda.
     Lado a lado, a negação e a imagem são lidas juntas — que é
     o ponto do bloco. */
  .funnel-stage { padding: 16px 0; }
  .funnel-visual { max-width: 380px; margin-inline: auto; }
  .funnel-copy h2 { font-size: clamp(26px, 3.6vw, 38px); }

  /* --- Ecossistema -----------------------------------------
     O selo RD tinha 360px de largura sozinho numa linha; ao lado
     do painel ele volta a ser assinatura, não protagonista. */
  .eco-head { margin-bottom: 40px; }
  .rd-visual { max-width: clamp(180px, 26vw, 240px); }
  .rd-content h3 { font-size: clamp(24px, 3.2vw, 30px); }
}

/* =========================================================
   FAQ — accordion nativo (<details>/<summary>)
   Sem JS: o toggle é do browser. O conteúdo já vem no HTML,
   requisito do FAQPage schema (texto visível na página).
   ========================================================= */
.s-faq { position: relative; overflow: clip; }
.faq-inner { position: relative; z-index: 1; }

.faq-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 52px); }
.faq-head .eyebrow { display: block; margin-bottom: 14px; }
.faq-head h2 { font-size: var(--fs-h2); }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 14, 24, 0.4);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] {
  border-color: rgba(169, 168, 238, 0.28);
  background: rgba(20, 16, 38, 0.55);
}
.faq-item:hover { border-color: rgba(169, 168, 238, 0.22); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.4vw, 24px) clamp(20px, 3vw, 28px);
  cursor: pointer;
  list-style: none;               /* remove o triângulo padrão */
  font-family: 'Exo 2', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--violet-1);
  outline-offset: -2px;
  border-radius: var(--radius);
}

.faq-q {
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* Ícone +/− desenhado em CSS: duas barras, a vertical some quando aberto. */
.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px; height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--violet-1);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease, transform .3s ease;
}
.faq-icon::before { width: 13px; height: 2px; }                 /* barra horizontal */
.faq-icon::after  { width: 2px; height: 13px; }                 /* barra vertical */
.faq-item[open] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 2.6vw, 26px);
}
.faq-a p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  max-width: 62ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon::before, .faq-icon::after { transition: none; }
}
