/* ══════════════════════════════════════════════════
   METAMAVI — Site institucional
   Design system portado das propostas (Helena/Ferpan)
   Preto + verde neon + roxo · Space Grotesk / Inter / Montserrat
══════════════════════════════════════════════════ */

:root {
  --bg:            #000000;
  --bg-1:          #060606;
  --bg-card:       rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.055);
  --accent:        #00FF88;
  --accent-low:    rgba(0,255,136,0.07);
  --accent-mid:    rgba(0,255,136,0.14);
  --accent-glow:   0 0 32px rgba(0,255,136,0.22), 0 0 64px rgba(0,255,136,0.10);
  --purple:        #7C3AED;
  --purple-soft:   #C084FC;
  --purple-low:    rgba(124,58,237,0.09);
  --purple-glow:   0 0 32px rgba(124,58,237,0.28), 0 0 64px rgba(124,58,237,0.14);
  --text:          #FFFFFF;
  --text-muted:    #888888;
  --text-dim:      #3A3A3A;
  --border:        rgba(255,255,255,0.06);
  --border-a:      rgba(0,255,136,0.14);
  --border-p:      rgba(124,58,237,0.2);
  --r:             10px;
  --r-lg:          16px;
  --maxw:          1080px;
  --mono:          'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.18; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 21px; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none; white-space: nowrap;
}
.wordmark b { color: var(--accent); font-weight: 700; text-shadow: 0 0 22px rgba(0,255,136,0.35); }
.wordmark { display: inline-flex; align-items: center; }
.wordmark img { height: 24px; width: auto; display: block; }
.footer-brand-col .wordmark img { height: 30px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #000 !important;
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px; text-decoration: none;
  transition: box-shadow .3s, transform .2s;
}
.nav-btn:hover { box-shadow: var(--accent-glow); transform: translateY(-2px); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 24px; cursor: pointer; }

/* ─── TAG CHIP ─── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--border-a); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 22px;
}
.tag.p { color: var(--purple-soft); border-color: rgba(192,132,252,0.22); }
.tag-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: inline-block; }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 52px; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-sub { color: var(--text-muted); font-size: 16px; max-width: 560px; line-height: 1.7; }

/* ─── KICKER (rótulo de seção editorial, sem cápsula) ─── */
.kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono);
  font-size: 12.5px; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 22px; text-transform: lowercase; }
.kicker::before { content: ''; width: 30px; height: 1px; background: var(--accent); flex: 0 0 auto; }
.kicker b { color: var(--accent); font-weight: 500; }
.kicker.p::before { background: var(--purple-soft); }
.kicker.p b { color: var(--purple-soft); }
.kicker.center { display: flex; justify-content: center; }

/* neon consistente no desktop e no mobile (não depende de hover) */
.mavi-card, .result-card, .proof-stat { border-color: var(--border-a); }

/* ─── LEDGER (lista estruturada, sem icon tiles) ─── */
.ledger { border-top: 1px solid var(--border); }
.ledger-row { display: grid; grid-template-columns: 92px 1fr; gap: 30px; padding: 32px 10px;
  border-bottom: 1px solid var(--border); position: relative; transition: background .25s; }
.ledger-row::before { content: ''; position: absolute; left: 0; top: -1px; bottom: -1px; width: 2px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .35s; }
.ledger-row:hover { background: var(--bg-card); }
.ledger-row:hover::before { transform: scaleY(1); box-shadow: var(--accent-glow); }
.ledger-num { font-family: var(--mono); font-size: 15px; color: var(--accent); padding-top: 4px; }
.ledger-stage { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 10px; }
.ledger-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px,2.6vw,26px); font-weight: 600; margin-bottom: 10px; }
.ledger-text { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 660px; }
@media (max-width: 640px) { .ledger-row { grid-template-columns: 46px 1fr; gap: 16px; padding: 26px 4px; } }

/* ─── REVEAL ─── */
.r { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
body.intro-on .r { transition: none; } /* quando a intro GSAP controla, sem transição CSS pra não brigar */
.r.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; } .d5 { transition-delay: .40s; }

/* ══════════════════════════ HERO ══════════════════════════ */
#hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 0 60px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(124,58,237,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 88% 85%, rgba(0,255,136,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 30%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.hero-eyebrow-line { display: block; width: 36px; height: 1px; background: var(--accent); }
.hero-title { font-size: clamp(40px, 6.4vw, 74px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-title-accent { color: var(--accent); text-shadow: 0 0 60px rgba(0,255,136,0.3); }
/* reveal por linha (intro GSAP) */
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; will-change: transform; }
body.intro-reveal .hero-title .line > span { transform: translateY(115%); }
.hero-title.done .line { overflow: visible; }
/* scan de sistema (intro GSAP) */
.scan-overlay { position: fixed; inset: 0; z-index: 300; background: #000; pointer-events: none; will-change: transform; }
.scan-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent);
  box-shadow: 0 0 22px 3px rgba(0,255,136,0.75), 0 0 60px 10px rgba(0,255,136,0.32); }
.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px; text-decoration: none;
  transition: box-shadow .3s, transform .2s, border-color .3s, background .25s;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { box-shadow: var(--accent-glow); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-a); background: var(--bg-card); }
.btn-lg { padding: 18px 40px; font-size: 14px; }

.hero-stats {
  margin-top: 56px; padding-top: 34px; border-top: 1px solid var(--border);
  display: flex; gap: 44px; flex-wrap: wrap; grid-column: 1 / -1;
}
.hero-stat-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 5px; }
.hero-stat-val { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; }

/* ─── HERO STAGE (composição com recorte do Daniel) ─── */
.hero-stage { position: relative; min-height: 560px; display: flex; align-items: flex-end; justify-content: center; perspective: 1000px; }
.stage-glow { position: absolute; inset: -8% -4% 2% -4%; pointer-events: none;
  background:
    radial-gradient(58% 52% at 58% 28%, rgba(124,58,237,0.34), transparent 70%),
    radial-gradient(44% 40% at 44% 80%, rgba(0,255,136,0.16), transparent 72%);
}
.stage-glow::before { content:''; position:absolute; left:50%; top:4%; transform:translateX(-50%);
  width: 60%; height: 94%; border-radius: 260px 260px 40px 40px;
  background: linear-gradient(180deg, rgba(124,58,237,0.26), rgba(0,255,136,0.05) 62%, transparent);
  filter: blur(30px); }
.stage-ring { position:absolute; left:50%; bottom:2%; transform:translateX(-50%);
  width: min(92%, 430px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--border-a);
  -webkit-mask-image: linear-gradient(180deg,#000 40%,transparent 78%); mask-image: linear-gradient(180deg,#000 40%,transparent 78%); }
.stage-figure { position: relative; z-index: 1; width: 100%; max-width: 470px; aspect-ratio: 4/5;
  display:flex; align-items:flex-end; justify-content:center; transform-style: preserve-3d; will-change: transform; backface-visibility: hidden; }
.stage-figure img { will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
.stage-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%;
  filter: contrast(1.05) brightness(1.03) saturate(1.03);
  -webkit-mask-image: radial-gradient(125% 108% at 50% 34%, #000 62%, transparent 100%);
  mask-image: radial-gradient(125% 108% at 50% 34%, #000 62%, transparent 100%); }
.stage-placeholder { display:none; }
.hero-stage.no-photo .stage-figure img { display:none; }
.hero-stage.no-photo .stage-placeholder { display:flex; position:absolute; inset:14% 10% 8%; z-index:1;
  align-items:center; justify-content:center; text-align:center; padding:22px;
  border:1px dashed var(--border-a); border-radius:18px; background: rgba(0,0,0,0.32);
  color: var(--text-muted); font-size:13px; line-height:1.6; }
.stage-placeholder span { display:block; margin-top:6px; color: var(--text-dim); font-size:12px; }

/* Chips flutuantes de vidro */
.chip { position:absolute; z-index:3; display:flex; align-items:center; gap:10px;
  background: rgba(11,11,13,0.9);
  border:1px solid var(--border); border-radius:14px; padding:10px 15px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55); font-size:13px; white-space:nowrap;
  will-change: transform; }
.chip svg { width:18px; height:18px; stroke: var(--accent); fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.chip b { font-family:'Space Grotesk',sans-serif; font-weight:600; color: var(--text); }
.chip span { color: var(--text-muted); }
.chip-mavi { border-color: var(--border-p); }
.chip-mavi svg { stroke: var(--purple-soft); }
.chip-mavi b { color: var(--purple-soft); }
.chip-1 { top: 8%; left: -4%; }
.chip-2 { top: 46%; right: -6%; }
.chip-3 { bottom: 10%; left: 0; }

/* ══════════════════════════ MANIFESTO ══════════════════════════ */
#manifesto { background: var(--bg-1); }
.manifesto-lead {
  font-family: 'Space Grotesk', sans-serif; font-weight: 500;
  font-size: clamp(24px, 3.6vw, 38px); line-height: 1.32; letter-spacing: -0.02em;
  max-width: 860px;
}
.manifesto-lead .hl { color: var(--accent); }
.manifesto-lead .hlp { color: var(--purple-soft); }
.manifesto-body { margin-top: 30px; max-width: 640px; color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.manifesto-body p + p { margin-top: 16px; }

/* ══════════════════════════ MOSAIC (o que fazemos) ══════════════════════════ */
.mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  gap: 1px; background: var(--border);
}
.mosaic-card { background: var(--bg-card); padding: 34px; transition: background .25s; position: relative; }
.mosaic-card:hover { background: var(--bg-card-hover); }
.mosaic-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(0,255,136,0.045) 0%, transparent 60%);
}
.mosaic-card:hover::after { opacity: 1; }
.mc-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--accent-low); border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 22px;
}
.mc-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mc-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.mc-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════ MÉTODO MAVI ══════════════════════════ */
#metodo { background: var(--bg); }
.mavi-brand {
  border: 1px solid var(--border-p); border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, transparent 55%);
  padding: 34px 36px; margin-bottom: 34px; position: relative; overflow: hidden;
}
.mavi-brand::before {
  content: ''; position: absolute; top: -40%; right: -5%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 70%); pointer-events: none;
}
.mavi-brand-word { font-family: 'Montserrat', sans-serif; font-size: clamp(30px,5vw,52px); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.mavi-brand-word .dim { color: var(--text-dim); }
.mavi-brand-word .lit { color: var(--accent); text-shadow: 0 0 40px rgba(0,255,136,0.28); }
.mavi-brand p { margin-top: 12px; color: var(--text-muted); font-size: 15px; max-width: 620px; line-height: 1.75; position: relative; }

.mavi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mavi-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 24px; transition: border-color .3s, box-shadow .3s, background .25s;
}
.mavi-card:hover { border-color: var(--border-a); box-shadow: var(--accent-glow); background: var(--bg-card-hover); }
.mavi-letter { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 14px; text-shadow: 0 0 40px rgba(0,255,136,0.25); }
.mavi-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.mavi-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ─── JORNADA MAVI (assinatura animada) ─── */
.journey { position: relative; margin-top: 48px; --p: 1; }
.journey-track { position: relative; margin: 0 12.5% 42px; height: 2px; background: var(--border); border-radius: 2px; }
.journey-fill { position: absolute; inset: 0; background: var(--accent); transform: scaleX(var(--p)); transform-origin: left center; box-shadow: 0 0 10px rgba(0,255,136,0.5); }
.journey-dot { display: none; position: absolute; top: 50%; left: calc(var(--p) * 100%); width: 14px; height: 14px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); box-shadow: 0 0 16px 5px rgba(0,255,136,0.6); z-index: 3; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.journey-step { position: relative; text-align: center; padding: 0 6px; }
.journey-node { position: absolute; top: -50px; left: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--accent); box-shadow: 0 0 14px 3px rgba(0,255,136,0.45); z-index: 2;
  transition: background .35s, border-color .35s, box-shadow .35s; }
.journey-letter { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; line-height: 1; margin-bottom: 12px;
  color: var(--accent); text-shadow: 0 0 26px rgba(0,255,136,0.35); transition: color .4s ease, text-shadow .4s ease; }
.journey-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.journey-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 230px; margin: 0 auto; }

/* estado animável (JS liga com .anim): começa apagado, acende conforme o ponto passa */
.journey.anim { --p: 0; }
.journey.anim .journey-dot { display: block; }
.journey.anim .journey-letter { color: var(--text-dim); text-shadow: none; }
.journey.anim .journey-node { background: var(--bg-1); border-color: var(--border); box-shadow: none; }
.journey.anim .journey-step.on .journey-letter { color: var(--accent); text-shadow: 0 0 28px rgba(0,255,136,0.45); }
.journey.anim .journey-step.on .journey-node { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 14px 3px rgba(0,255,136,0.5); }

@media (max-width: 760px) {
  .journey-track { position: absolute; top: 8px; bottom: 8px; left: 6px; width: 2px; height: auto; margin: 0; }
  .journey-fill { transform: scaleY(var(--p)); transform-origin: top center; }
  .journey-dot { top: calc(var(--p) * 100%); left: 50%; }
  .journey-steps { grid-template-columns: 1fr; gap: 34px; padding-left: 34px; }
  .journey-step { text-align: left; padding: 0; }
  .journey-node { top: 10px; left: -28px; }
  .journey-text { max-width: none; margin: 0; }
}

/* ══════════════════════════ PARA QUEM ══════════════════════════ */
#paraquem { background: var(--bg-1); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.audience-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px 22px; transition: border-color .3s, background .25s;
}
.audience-card:hover { border-color: var(--border-a); background: var(--bg-card-hover); }
.audience-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-low);
  border: 1px solid var(--border-a); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.audience-ic svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.audience-title { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.audience-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.audience-note {
  background: var(--accent-low); border: 1px solid var(--border-a); border-radius: var(--r);
  padding: 24px 28px; font-size: 15px; color: var(--text-muted); line-height: 1.75;
}
.audience-note strong { color: var(--text); font-family: 'Space Grotesk', sans-serif; }

/* ══════════════════════════ PROVA SOCIAL ══════════════════════════ */
#prova { background: var(--bg); }
.proof-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 46px; }
.proof-stat {
  border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; background: var(--bg-card);
}
.proof-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px,4vw,42px); font-weight: 700; color: var(--accent); line-height: 1; text-shadow: 0 0 40px rgba(0,255,136,0.2); }
.proof-label { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
}
.testi-quote { font-size: 15px; line-height: 1.7; color: var(--text); }
.testi-quote::before { content: '“'; color: var(--accent); font-family: 'Space Grotesk',sans-serif; font-size: 30px; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--purple-low); border: 1px solid var(--border-p); display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:600; color: var(--purple-soft); font-size: 14px; }
.testi-meta b { display:block; font-family:'Space Grotesk',sans-serif; font-size: 14px; }
.testi-meta span { font-size: 12px; color: var(--text-dim); }
.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; transition: border-color .3s, box-shadow .3s, background .25s; }
.result-card:hover { border-color: var(--border-a); box-shadow: var(--accent-glow); background: var(--bg-card-hover); }
.result-num { font-family:'Space Grotesk',sans-serif; font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; text-shadow: 0 0 40px rgba(0,255,136,0.2); }
.result-num.p { color: var(--purple-soft); text-shadow: 0 0 40px rgba(124,58,237,0.25); }
.result-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.result-text a { color: var(--accent); text-decoration: none; }
.result-text a:hover { text-decoration: underline; }

/* ══════════════════════════ EQUIPE ══════════════════════════ */
#equipe { background: var(--bg-1); }
.team-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.team-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(124,58,237,0.16), rgba(0,0,0,0.92)); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(1.05); }
.team-photo::after { content:''; position:absolute; inset:0; pointer-events:none; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,0.62)); }
.team-photo .ph { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; color: var(--text-dim); font-size:12px; line-height:1.6; }
.team-name { font-size: clamp(24px,3vw,34px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.team-role { color: var(--accent); font-family:'Space Grotesk',sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
.team-bio { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.team-bio p + p { margin-top: 14px; }
.team-second { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.team-second b { color: var(--text); font-family:'Space Grotesk',sans-serif; }

/* ══════════════════════════ CTA FINAL ══════════════════════════ */
#cta { background: var(--bg); text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 55%, rgba(0,255,136,0.05) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(34px, 6vw, 66px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1; }
.cta-title .hl { color: var(--accent); text-shadow: 0 0 60px rgba(0,255,136,0.3); }
.cta-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 44px; max-width: 560px; margin-left:auto; margin-right:auto; }
.cta-note { margin-top: 22px; font-size: 13px; color: var(--text-dim); }

/* ══════════════════════════ SERVIÇOS (página) ══════════════════════════ */
.svc-hero { padding: 150px 0 40px; position: relative; overflow: hidden; }
.svc-list { display: flex; flex-direction: column; gap: 16px; }
.svc-row {
  border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--bg-card);
  padding: 38px; display: grid; grid-template-columns: 1fr 300px; gap: 38px;
  transition: border-color .3s, background .25s; position: relative; overflow: hidden;
}
.svc-row:hover { border-color: var(--border-a); background: var(--bg-card-hover); }
.svc-index { font-family:'Space Grotesk',sans-serif; font-size: 11px; letter-spacing: 0.18em; color: var(--accent); font-weight: 700; margin-bottom: 14px; }
.svc-name { font-size: clamp(22px,3vw,30px); font-weight: 700; letter-spacing:-0.02em; margin-bottom: 14px; }
.svc-desc { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 22px; max-width: 560px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { font-size: 12px; color: var(--text-muted); border: 1px solid var(--border); border-radius: 100px; padding: 6px 13px; }
.svc-side { border-left: 1px solid var(--border); padding-left: 34px; display: flex; flex-direction: column; justify-content: center; }
.svc-forwho { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.svc-forwho-txt { font-size: 14px; color: var(--text); line-height: 1.55; margin-bottom: 22px; }
.svc-price-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.svc-price { font-family:'Space Grotesk',sans-serif; font-size: 26px; font-weight: 700; color: var(--accent); line-height: 1.2; }
.svc-price small { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* ══════════════════════════ FOOTER ══════════════════════════ */
footer { padding: 54px 0 40px; border-top: 1px solid var(--border); background: var(--bg-1); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand-col { max-width: 320px; }
.footer-brand-col .wordmark { font-size: 24px; margin-bottom: 14px; display: inline-block; }
.footer-tagline { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family:'Space Grotesk',sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--text-dim); }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: minmax(0,1fr); gap: 12px; }
  .hero-content > div, .hero-stage { min-width: 0; max-width: 100%; }
  .hero-content > div { overflow-wrap: anywhere; }
  .hero-subtitle { max-width: 100%; }
  .hero-stats { max-width: 100%; gap: 20px 26px; }
  .hero-stage { min-height: 470px; max-width: 420px; margin: 12px auto 0; width: 100%; }
  .stage-figure { max-width: 300px; }
  .chip-1 { top: 4%; left: 2%; } .chip-2 { top: 42%; right: 2%; } .chip-3 { bottom: 8%; left: 2%; }
  .mavi-grid { grid-template-columns: 1fr 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { max-width: 360px; }
  .svc-row { grid-template-columns: 1fr; gap: 26px; }
  .svc-side { border-left: 0; border-top: 1px solid var(--border); padding-left: 0; padding-top: 26px; }
}
@media (max-width: 760px) {
  section { padding: 72px 0; }
  .nav { position: fixed; inset: 0; width: 100%; max-width: 100vw;
    background: rgba(4,4,5,0.98); backdrop-filter: blur(18px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px; padding: 40px;
    opacity: 0; visibility: hidden; pointer-events: none; transform: none;
    transition: opacity .28s ease, visibility .28s ease; }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a { font-size: 20px; }
  .nav-toggle { display: block; z-index: 60; }
  .mosaic { grid-template-columns: 1fr; }
  .mavi-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container, .header-inner { padding-left: 18px; padding-right: 18px; }
  .hero-stats { gap: 24px; }
  .audience-grid { grid-template-columns: 1fr; }
  .chip { font-size: 12px; padding: 8px 12px; }
  .chip-2 { display: none; }
  .hero-stage { min-height: 400px; }
}
