  :root {
    --ocean: #0B2A3F;       /* institucional / texto escuro */
    --teal: #1D6E7E;        /* secundária */
    --cyan: #7FCFDB;        /* destaque */
    --terra: #C86A3B;       /* apoio humano */
    --bg: #F4F8FA;          /* fundo dominante */
    --bg-elevated: #FFFFFF; /* elementos elevados */
    --surface: #EAF1F5;     /* nuance mais escura do fundo */
    --line: #D6E3EA;        /* hairlines */
    --text: #0B2A3F;        /* texto principal */
    --muted: #4D6878;       /* texto secundário */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

  body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, .display {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-wrap: balance;
  }

  ::selection { background: var(--cyan); color: var(--ocean); }

  img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, var(--surface) 0%, var(--line) 100%);
    min-height: 120px;
  }

  a { color: inherit; text-decoration: none; }

  /* ---------- Layout helpers ---------- */
  .wrap { width: min(1200px, 90vw); margin: 0 auto; }

  section { padding-block: 64px; }
  @media (min-width: 768px) { section { padding-block: 96px; } }
  @media (min-width: 1024px) { section { padding-block: 120px; } }

  .eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--cyan);
  }

  h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
  .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 58ch; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 100px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }
  .btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
  .btn-primary {
    background: var(--ocean);
    color: #fff;
    box-shadow: 0 6px 24px -10px rgba(11,42,63,0.6);
  }
  .btn-primary:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -12px rgba(29,110,126,0.55);
  }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-ghost {
    background: transparent;
    color: var(--ocean);
    border-color: var(--line);
  }
  .btn-ghost:hover { border-color: var(--ocean); transform: translateY(-2px); }

  /* ---------- Nav ---------- */
  header.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  }
  header.nav.scrolled {
    background: rgba(244,248,250,0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
  }
  /* nav sobre o hero escuro (topo, antes de rolar) */
  header.nav:not(.scrolled) .logo { color: #fff; }
  header.nav:not(.scrolled) .logo .mark { background: rgba(255,255,255,0.14); }
  header.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
  header.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
  header.nav:not(.scrolled) .nav-links a::after { background: var(--cyan); }
  header.nav:not(.scrolled) .burger span { background: #fff; }
  header.nav:not(.scrolled) .nav-cta { background: #fff; color: var(--ocean); box-shadow: 0 6px 24px -10px rgba(0,0,0,0.5); }
  header.nav:not(.scrolled) .nav-cta:hover { background: var(--cyan); color: var(--ocean); }

  /* seletor de idiomas */
  .nav-right { display: none; align-items: center; gap: 16px; }
  @media (min-width: 980px) { .nav-right { display: flex; } }
  .lang { position: relative; }
  .lang-btn { display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 1px solid var(--line); color: var(--muted); padding: 8px 12px; border-radius: 100px; font-family: 'IBM Plex Sans', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
  .lang-btn:hover { border-color: var(--teal); }
  .lang-btn svg { width: 15px; height: 15px; }
  .lang-btn .chev { width: 13px; height: 13px; }
  .lang-menu { position: absolute; right: 0; top: calc(100% + 10px); background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 20px 44px -22px rgba(11,42,63,0.4); padding: 6px; min-width: 170px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s; z-index: 60; }
  .lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .lang-menu button { width: 100%; display: flex; align-items: center; gap: 10px; background: none; border: none; padding: 10px 12px; border-radius: 8px; cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; font-size: 0.9rem; color: var(--ocean); text-align: left; transition: background 0.2s var(--ease); }
  .lang-menu button:hover { background: var(--surface); }
  .lang-menu button.active { color: var(--teal); font-weight: 600; }
  .lang-menu .flag { font-size: 1.05rem; }
  header.nav:not(.scrolled) .lang-btn { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.32); }
  header.nav:not(.scrolled) .lang-btn:hover { border-color: #fff; }
  /* idiomas no menu mobile */
  .mobile-lang { display: flex; gap: 10px; margin-top: 36px; }
  .mobile-lang button { flex: 1; padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: rgba(255,255,255,0.8); font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s var(--ease); }
  .mobile-lang button.active { background: var(--cyan); color: var(--ocean); border-color: var(--cyan); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    color: var(--ocean);
  }
  .logo .mark {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 9px;
    background: var(--ocean);
    color: var(--cyan);
  }
  .logo .mark svg { width: 18px; height: 18px; }
  .logo-img { height: 38px; min-height: 0; width: auto; display: block; background: none; }
  .nav-links { display: none; gap: 36px; align-items: center; }
  @media (min-width: 980px) { .nav-links { display: flex; } }
  .nav-links a {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: color 0.3s var(--ease);
  }
  .nav-links a::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1.5px; background: var(--teal);
    transition: width 0.35s var(--ease);
  }
  .nav-links a:hover { color: var(--ocean); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { display: none; }
  @media (min-width: 980px) { .nav-cta { display: inline-flex; } }

  .burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    cursor: pointer; background: none; border: none;
  }
  @media (min-width: 980px) { .burger { display: none; } }
  .burger span {
    width: 22px; height: 2px; background: var(--ocean);
    border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
  }

  /* Mobile overlay */
  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--ocean);
    z-index: 999;
    display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 0 10vw; gap: 8px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 9vw, 3.2rem);
    font-weight: 500;
    color: #fff;
    padding: 8px 0;
  }
  .mobile-menu a:hover { color: var(--cyan); }
  .mobile-menu .btn-primary {
    margin-top: 32px;
    display: flex;
    width: 100%;
    justify-content: center;
    background: var(--cyan);
    color: var(--ocean);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 17px 28px;
    border-radius: 100px;
    box-shadow: 0 12px 34px -12px rgba(127,207,219,0.5);
  }
  .mobile-menu .btn-primary:hover { color: var(--ocean); }

  /* ---------- Hero (full-bleed banner) ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 150px 0 160px;
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-ribbon { position: absolute; top: -4%; right: -6%; width: min(56vw, 720px); height: 108%; z-index: 1; pointer-events: none; }
  @media (max-width: 900px) { .hero-ribbon { right: -22%; top: auto; bottom: -6%; width: 115%; height: 64%; opacity: 0.8; } }
  .hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; display: block; background: var(--ocean); }
  .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(100deg, rgba(7,28,42,0.97) 0%, rgba(8,32,48,0.9) 38%, rgba(11,42,63,0.55) 74%, rgba(11,42,63,0.32) 100%),
      linear-gradient(0deg, rgba(7,26,40,0.9) 0%, rgba(7,26,40,0) 38%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 730px; }
  .hero .eyebrow { color: var(--cyan); }
  .hero .eyebrow::before { background: var(--cyan); }
  .hero .hero-pulse { color: var(--cyan); margin-bottom: 16px; width: 150px; }
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700; color: #fff;
    margin: 18px 0 24px; line-height: 1.02;
    text-wrap: balance;
  }
  .hero h1 .hl { color: var(--cyan); }
  .hero .lead { color: rgba(255,255,255,0.86); margin-bottom: 36px; max-width: 52ch; }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
  .btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.10); transform: translateY(-2px); }

  .hero-trustbar {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.16);
    background: rgba(7,26,40,0.4); backdrop-filter: blur(8px);
  }
  .hero-trustbar .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px 40px; padding: 26px 0; }
  .hero-trustbar .ti { display: flex; flex-direction: column; gap: 4px; max-width: 260px; }
  .hero-trustbar .ti .n { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; line-height: 1; }
  .hero-trustbar .ti .n .u { color: var(--cyan); }
  .hero-trustbar .ti .l { font-size: 0.8rem; color: rgba(255,255,255,0.62); max-width: 24ch; }
  @media (max-width: 760px) {
    .hero { display: block; padding: 108px 0 0; min-height: auto; }
    .hero-bg img, .hero-bg video { object-position: 56% 26%; }
    .hero-bg::after {
      background: linear-gradient(180deg, rgba(9,32,48,0.97) 0%, rgba(9,32,48,0.92) 40%, rgba(9,32,48,0.6) 72%, rgba(9,32,48,0.34) 100%);
    }
    .hero .lead { margin-bottom: 26px; font-size: 1rem; max-width: 42ch; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trustbar { position: static; margin-top: 34px; background: rgba(7,26,40,0.55); }
    .hero-trustbar .wrap { flex-direction: row; flex-wrap: wrap; gap: 18px 24px; padding: 22px 0; }
    .hero-trustbar .ti { flex: 1 1 40%; }
  }

  /* ---------- Problema ---------- */
  .problema { background: var(--ocean); color: #fff; }
  .problema .eyebrow { color: var(--cyan); }
  .problema .eyebrow::before { background: var(--cyan); }
  .problema h2 { color: #fff; max-width: 18ch; }
  .problema-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: end; }
  @media (min-width: 900px) { .problema-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }
  .problema p { color: rgba(255,255,255,0.78); margin-top: 22px; max-width: 52ch; }
  .problema p strong { color: var(--cyan); font-weight: 600; }
  .pain-list { display: grid; gap: 2px; border-top: 1px solid rgba(255,255,255,0.14); }
  .pain-list .row {
    display: flex; align-items: baseline; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    transition: padding-left 0.4s var(--ease);
  }
  .pain-list .row:hover { padding-left: 10px; }
  .pain-list .n { font-family: 'Bricolage Grotesque'; color: var(--cyan); font-weight: 700; font-size: 0.9rem; min-width: 30px; }
  .pain-list .t { color: #fff; font-weight: 500; }
  .pain-list .t small { display: block; color: rgba(255,255,255,0.6); font-weight: 400; font-size: 0.88rem; margin-top: 4px; }

  /* ---------- Atua antes (cinemático + mapa corporal) — tema claro ---------- */
  .atua { background: #FFFFFF; color: var(--text); position: relative; }
  .atua-pin { min-height: 100vh; display: flex; align-items: center; padding: 80px 0; }
  .atua-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
  @media (min-width: 980px) { .atua-inner { grid-template-columns: 1.05fr 0.95fr; gap: 72px; } }
  .atua h2 { color: var(--ocean); font-size: clamp(1.9rem, 3.6vw, 3.1rem); max-width: 15ch; margin: 18px 0 22px; }
  .atua-caption { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 40ch; line-height: 1.5; min-height: 4.2em; transition: opacity 0.3s var(--ease); }
  .atua-caption b { color: var(--teal); font-weight: 600; }

  /* listas/conclusão mobile (escondidas no desktop) */
  .atua-mlist, .atua-mconc { display: none; }

  /* mapa corporal — silhueta OFICIAL (Silhueta.svg) recortada + brilhos */
  .bodymap { position: relative; width: 100%; max-width: 230px; margin: 0 auto; aspect-ratio: 288 / 680; }
  .sil-crop { position: absolute; inset: 0; overflow: hidden; background: var(--ocean); }
  .sil-crop img { position: absolute; top: -37.1%; left: -134%; width: 375%; max-width: none; display: block; mix-blend-mode: lighten; }
  .glow {
    position: absolute; width: 58px; height: 58px;
    transform: translate(-50%, -50%);
    border-radius: 50%; opacity: 0;
    filter: blur(5px); pointer-events: none; z-index: 3;
    transition: opacity 0.55s var(--ease), background 0.55s var(--ease);
    mix-blend-mode: screen;
  }
  .glow.lit { opacity: 1; background: radial-gradient(circle, rgba(255,150,90,1) 0%, rgba(232,112,74,0.55) 42%, rgba(232,112,74,0) 72%); }
  .glow.calm { opacity: 1; background: radial-gradient(circle, rgba(150,225,235,1) 0%, rgba(127,207,219,0.55) 42%, rgba(127,207,219,0) 72%); }

  /* timeline */
  .tl { margin-top: 8px; }
  .tl-stages { display: flex; gap: 6px; margin-bottom: 16px; }
  .tl-stage { flex: 1; text-align: center; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); opacity: 0.55; transition: color 0.4s var(--ease), opacity 0.4s var(--ease); }
  .tl-stage.active { color: var(--terra); opacity: 1; }
  .atua.intervened .tl-stage { color: var(--muted); opacity: 0.55; }
  .tl-track { position: relative; height: 4px; background: var(--line); border-radius: 4px; }
  .tl-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, #C86A3B, #e0563f); border-radius: 4px; transition: background 0.6s var(--ease); }
  .atua.intervened .tl-fill { background: linear-gradient(90deg, var(--teal), var(--cyan)); }
  .tl-marker { position: absolute; top: 50%; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--ocean); transform: translate(-50%, -50%); box-shadow: 0 0 0 4px rgba(11,42,63,0.12); }
  .tl-intervene { position: absolute; top: 18px; left: 8%; transform: translateX(-50%); opacity: 0; transition: opacity 0.5s var(--ease); }
  .tl-intervene::before { content: "▲"; display: block; color: var(--teal); font-size: 0.7rem; }
  .tl-intervene span { font-size: 0.66rem; color: var(--teal); white-space: nowrap; font-weight: 600; }
  .atua.intervened .tl-intervene { opacity: 1; }
  .tl-cost { margin-top: 30px; }
  .tl-cost .lab { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
  .tl-cost .val { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--ocean); line-height: 1; font-variant-numeric: tabular-nums; transition: color 0.5s var(--ease); }
  .atua.intervened .tl-cost .val { color: var(--teal); }

  /* fallback mobile: sem pin, narrativa vertical */
  @media (max-width: 979px) {
    .atua-pin { min-height: 0; padding: 0; }
    .tl { display: none; }
    .bodymap { max-width: 180px; }
    .atua-mlist { display: block; list-style: none; counter-reset: s; margin: 8px 0 0; }
    .atua-mlist li { counter-increment: s; position: relative; padding: 14px 0 14px 38px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
    .atua-mlist li::before { content: counter(s); position: absolute; left: 0; top: 14px; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--teal); color: var(--teal); display: grid; place-items: center; font-size: 0.72rem; font-family: 'Bricolage Grotesque'; font-weight: 700; }
    .atua-mlist li b { color: var(--ocean); font-weight: 600; }
    .atua-mconc { display: block; margin-top: 24px; padding: 20px; border-radius: 14px; background: rgba(29,110,126,0.08); border: 1px solid rgba(29,110,126,0.25); color: var(--ocean); font-size: 1rem; }
    .atua-mconc b { color: var(--teal); }
  }

  /* ---------- Credibilidade ---------- */
  .cred { text-align: center; }
  .stats {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    text-align: left;
  }
  @media (min-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }
  .stat {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .stat:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(11,42,63,0.4); border-color: var(--cyan); }
  .stat .num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--ocean); line-height: 1; font-variant-numeric: tabular-nums; }
  .stat .num .suf, .stat .num .pre { color: var(--teal); }
  .stat .desc { color: var(--muted); margin-top: 12px; font-size: 0.92rem; }

  /* ---------- Solução ---------- */
  .solucao { background: var(--surface); }
  .sol-head { max-width: 60ch; margin-bottom: 56px; }
  .sol-head h2 { margin: 20px 0; }
  .benefits {
    display: grid; grid-template-columns: 1fr; gap: 1px;
    background: var(--line); border: 1px solid var(--line);
    border-radius: 22px; overflow: hidden;
  }
  @media (min-width: 700px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 700px) { .benefits.hub4 { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .benefits.hub4 { grid-template-columns: repeat(4, 1fr); } }
  .benefit {
    position: relative; background: var(--bg-elevated);
    padding: 42px 34px 46px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: background 0.5s var(--ease);
  }
  .benefits.hub4 .benefit .eyebrow { margin-top: auto; padding-top: 22px; white-space: nowrap; }
  .benefit .idx {
    display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
    font-size: 0.8rem; letter-spacing: 0.12em; color: var(--cyan);
    margin-bottom: 30px; transition: color 0.5s var(--ease);
  }
  .benefit .ico { color: var(--teal); margin-bottom: 18px; display: block; transition: color 0.5s var(--ease), transform 0.5s var(--ease); }
  .benefit .ico svg { width: 28px; height: 28px; }
  .benefit h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--ocean); transition: color 0.5s var(--ease); }
  .benefit p { color: var(--muted); font-size: 0.95rem; transition: color 0.5s var(--ease); }
  .benefit::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--teal), var(--cyan)); transition: width 0.55s var(--ease); }
  .benefit:hover { background: var(--ocean); }
  .benefit:hover .idx { color: var(--cyan); }
  .benefit:hover .ico { color: var(--cyan); transform: translateY(-3px); }
  .benefit:hover h3 { color: #fff; }
  .benefit:hover p { color: rgba(255,255,255,0.82); }
  .benefit:hover .eyebrow, .benefit:active .eyebrow { color: var(--cyan) !important; }
  .benefit:hover .eyebrow::before, .benefit:active .eyebrow::before { background: var(--cyan); }
  .benefit:hover::after, .benefit:active::after { width: 100%; }
  /* Toque: o mesmo efeito ao selecionar no mobile */
  .benefit:active { background: var(--ocean); }
  .benefit:active .idx { color: var(--cyan); }
  .benefit:active .ico { color: var(--cyan); }
  .benefit:active h3 { color: #fff; }
  .benefit:active p { color: rgba(255,255,255,0.82); }

  /* ---------- Funcionamento ---------- */
  .como-head { max-width: 56ch; margin-bottom: 64px; }
  .como-head h2 { margin: 20px 0; }
  .steps { display: grid; grid-template-columns: 1fr; gap: 0; }
  @media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
  .step { position: relative; padding: 0 0 40px; }
  @media (min-width: 900px) { .step { padding: 0 28px 0 0; } }
  .step .idx {
    font-family: 'Bricolage Grotesque'; font-weight: 800;
    font-size: 0.85rem; color: var(--terra);
    letter-spacing: 0.1em;
  }
  .step .line {
    height: 2px; background: var(--line);
    margin: 16px 0 24px; position: relative; overflow: hidden;
  }
  .step .line i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--teal), var(--cyan)); width: 0; transition: width 1s var(--ease); }
  .step.lit .line i { width: 100%; }
  .step .ico { width: 26px; height: 26px; color: var(--ocean); margin-bottom: 16px; }
  .step h3 { font-size: 1.2rem; margin-bottom: 10px; }
  .step p { color: var(--muted); font-size: 0.92rem; }

  /* ---------- Plataforma ---------- */
  .plat { background: var(--ocean); color: #fff; overflow: hidden; }
  .plat .eyebrow { color: var(--cyan); }
  .plat .eyebrow::before { background: var(--cyan); }
  .plat-block {
    display: grid; grid-template-columns: 1fr; gap: 48px;
    align-items: center;
  }
  @media (min-width: 980px) { .plat-block { grid-template-columns: 1fr 1fr; gap: 72px; } }
  .plat-block-top { align-items: start; }
  @media (min-width: 980px) { .plat-block-phone { grid-template-columns: 1fr auto; } }
  .plat-block + .plat-block { margin-top: 120px; }
  .plat h2 { color: #fff; margin: 20px 0; }
  .plat h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
  .plat p { color: rgba(255,255,255,0.78); margin-bottom: 28px; max-width: 48ch; }
  .feat-list { list-style: none; display: grid; gap: 14px; }
  .feat-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--ocean); font-size: 0.96rem; }
  .feat-list li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
  .plat .feat-list li { color: rgba(255,255,255,0.92); }
  .plat .feat-list li svg { color: var(--cyan); }

  /* dashboard mockup */
  .mock {
    background: #0F3650;
    border: 1px solid rgba(127,207,219,0.25);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 40px 90px -40px rgba(0,0,0,0.6);
  }
  .mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
  .mock-top .ttl { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1rem; }
  .mock-top .tabs { display: flex; gap: 8px; }
  .mock-top .tabs i { width: 28px; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.15); }
  .mock-top .tabs i:first-child { background: var(--cyan); }
  .mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
  .mock-kpi { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 14px; }
  .mock-kpi .l { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
  .mock-kpi .b { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.5rem; margin-top: 6px; }
  .mock-kpi .b.up { color: var(--cyan); }
  .mock-kpi .b.warn { color: var(--terra); }
  .mock-chart { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 18px; }
  .mock-chart .cl { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
  .bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; }
  .bars .col { flex: 1; background: linear-gradient(180deg, var(--cyan), var(--teal)); border-radius: 5px 5px 0 0; opacity: 0.85; transition: height 0.8s var(--ease); }

  /* iPhone realista (prata) com app MoviCare */
  .app-shot { display: block; width: 100%; max-width: 265px; height: auto; margin: 0 auto; }
  @media (min-width: 980px) { .app-shot { max-width: 215px; margin: 0 auto 0 0; } }
  /* MacBook (painel do RH) */
  .mac-shot { display: block; width: 100%; max-width: 560px; height: auto; margin: 0 auto; transform: scale(1.15); }
  @media (min-width: 980px) { .mac-shot { transform-origin: right center; } }
  .iphone {
    width: 252px; margin: 0 auto;
    border-radius: 50px;
    padding: 5px;
    background: linear-gradient(145deg, #f6f7f9 0%, #c3c6cd 22%, #ebedf0 48%, #b7bac1 74%, #f6f7f9 100%);
    box-shadow: 0 55px 100px -45px rgba(0,0,0,0.7), inset 0 0 3px rgba(255,255,255,0.9);
  }
  .iphone-frame { background: #050608; border-radius: 46px; padding: 4px; }
  .iphone-screen {
    position: relative;
    background: var(--bg);
    border-radius: 42px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    padding: 14px 13px 18px;
  }
  .iphone .island {
    position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
    width: 82px; height: 23px; background: #000; border-radius: 13px; z-index: 6;
  }
  .iphone .status {
    display: flex; justify-content: space-between; align-items: center;
    padding: 3px 10px 0; margin-bottom: 16px;
    font-family: 'IBM Plex Sans'; font-size: 0.62rem; font-weight: 600; color: var(--ocean);
  }
  .iphone .status .ind { display: flex; gap: 4px; align-items: center; }
  .iphone .status .ind svg { width: 15px; height: 11px; color: var(--ocean); }
  .iphone .mc-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
  .iphone .mc-appicon {
    width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
    background: linear-gradient(150deg, #0B2A3F 0%, #1D6E7E 100%);
    display: grid; place-items: center;
    box-shadow: 0 5px 12px -3px rgba(11,42,63,0.55);
  }
  .iphone .mc-appicon svg { width: 23px; height: 23px; color: var(--cyan); }
  .iphone .mc-name { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 0.98rem; color: var(--ocean); line-height: 1; letter-spacing: -0.02em; }
  .iphone .mc-sub { font-size: 0.66rem; color: var(--muted); margin-top: 3px; }
  .iphone-screen .p-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 14px; padding: 13px; margin-bottom: 10px; }
  .iphone-screen .p-card .pt { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
  .iphone-screen .p-card .pv { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 0.95rem; margin-top: 5px; color: var(--ocean); }
  .iphone-screen .p-row { display: flex; gap: 9px; }
  .iphone-screen .p-row .p-card { flex: 1; text-align: center; }
  .iphone-screen .ring { width: 88px; height: 88px; border-radius: 50%; margin: 2px auto 10px; background: conic-gradient(var(--teal) 0 76%, var(--surface) 76% 100%); display: grid; place-items: center; }
  .iphone-screen .ring i { width: 66px; height: 66px; border-radius: 50%; background: var(--bg-elevated); display: grid; place-items: center; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.05rem; color: var(--teal); font-style: normal; }
  .iphone-screen .p-btn { background: var(--ocean); color: #fff; text-align: center; padding: 13px; border-radius: 13px; font-weight: 600; font-size: 0.8rem; }
  .iphone .home-ind { width: 96px; height: 4px; border-radius: 3px; background: var(--ocean); opacity: 0.35; margin: 14px auto 0; }

  /* ---------- Resultados ---------- */
  .res-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
  @media (min-width: 980px) { .res-layout { grid-template-columns: 0.95fr 1.05fr; gap: 80px; } }
  .res-head { max-width: 46ch; }
  .res-head h2 { margin: 20px 0; }
  .res-list { list-style: none; }
  .res-list li {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: -0.01em;
    color: var(--ocean);
    transition: padding-left 0.4s var(--ease), color 0.4s var(--ease);
  }
  .res-list li:first-child { border-top: 1px solid var(--line); }
  .res-list li:hover { padding-left: 10px; color: var(--teal); }
  .res-list li svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

  /* ---------- Segmentos ---------- */
  .seg { background: var(--surface); }
  .seg-head { max-width: 56ch; margin-bottom: 50px; }
  .seg-head h2 { margin: 20px 0; }
  .seg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  @media (min-width: 700px) { .seg-grid { grid-template-columns: repeat(4, 1fr); } }
  .seg-item {
    position: relative; overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.5s var(--ease);
  }
  .seg-item::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--teal), var(--cyan)); transition: width 0.5s var(--ease); }
  .seg-item:hover { transform: translateY(-4px); border-color: var(--ocean); background: var(--ocean); }
  .seg-item:hover::after { width: 100%; }
  .seg-item svg { width: 24px; height: 24px; color: var(--teal); transition: color 0.5s var(--ease); }
  .seg-item:hover svg { color: var(--cyan); }
  .seg-item span { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 1.05rem; color: var(--ocean); transition: color 0.5s var(--ease); }
  .seg-item:hover span { color: #fff; }

  /* ---------- CTA final + formulário ---------- */
  .cta {
    background: var(--ocean); color: #fff;
    border-radius: 28px; padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px);
    position: relative; overflow: hidden;
  }
  .cta::before {
    content: ""; position: absolute;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(127,207,219,0.2), transparent 70%);
    top: -200px; right: -150px;
  }
  .cta-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; position: relative; z-index: 2; }
  @media (min-width: 920px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
  .cta .eyebrow { color: var(--cyan); }
  .cta .eyebrow::before { background: var(--cyan); }
  .cta h2 { color: #fff; margin: 16px 0 20px; font-size: clamp(2rem, 4vw, 3.1rem); max-width: 15ch; }
  .cta-copy p { color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 46ch; }
  .cta-points { list-style: none; display: grid; gap: 13px; }
  .cta-points li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
  .cta-points li svg { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }

  .cta-form { background: #fff; border-radius: 20px; padding: clamp(24px, 3vw, 36px); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.55); }
  .cta-cardbox { text-align: center; padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px); }
  .cta-cardbox .ck-circle { width: 56px; height: 56px; border-radius: 15px; background: rgba(29,110,126,0.1); display: grid; place-items: center; margin: 0 auto 20px; }
  .cta-cardbox .ck-circle svg { width: 27px; height: 27px; color: var(--teal); }
  .cta-cardbox .fhead { margin-bottom: 10px; }
  .cta-cardsub { color: var(--muted); font-size: 0.96rem; margin: 0 auto 26px; max-width: 34ch; }
  .cta-form .fhead { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ocean); margin-bottom: 22px; }
  .field { margin-bottom: 15px; }
  .field label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 7px; }
  .field input, .field select {
    width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px;
    font-family: 'IBM Plex Sans', sans-serif; font-size: 0.95rem; color: var(--ocean); background: var(--bg);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  }
  .field input::placeholder { color: #9fb2bd; }
  .field input:focus, .field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(29,110,126,0.12); background: #fff; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
  .cta-form .btn { display: flex; width: 100%; justify-content: center; text-align: center; line-height: 1.25; margin-top: 8px; }
  .cta-form .legal { font-size: 0.72rem; color: var(--muted); margin-top: 20px; text-align: center; line-height: 1.4; }
  .form-success { display: none; text-align: center; padding: 26px 6px; }
  .cta-form.sent .form-fields { display: none; }
  .cta-form.sent .form-success { display: block; }
  .form-success .ck { width: 56px; height: 56px; border-radius: 50%; background: rgba(29,110,126,0.12); display: grid; place-items: center; margin: 0 auto 16px; }
  .form-success .ck svg { width: 28px; height: 28px; color: var(--teal); }
  .form-success h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--ocean); margin-bottom: 8px; }
  .form-success p { color: var(--muted); font-size: 0.92rem; max-width: 32ch; margin: 0 auto; }
  .cta-section { padding-bottom: 0; }

  /* ---------- Footer ---------- */
  footer {
    padding: 80px 0 40px;
  }
  .foot-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
  }
  @media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; } }
  .foot-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 34ch; }
  .foot-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ocean); margin-bottom: 18px; }
  .foot-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 6px 0; transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
  .foot-col a:hover { color: var(--teal); padding-left: 4px; }
  .foot-bottom {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: space-between; align-items: center;
    padding-top: 28px; color: var(--muted); font-size: 0.84rem;
  }

  /* ===== Identidade: grão, duotone, motivo de pulso ===== */
  .grain {
    position: fixed; inset: 0; z-index: 9998; pointer-events: none;
    opacity: 0.06; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 140px 140px;
  }
  .svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

  /* Duotone branded na foto do hero */
  .hero-visual .photo { position: relative; }
  .hero-visual .photo img { filter: saturate(1.05) contrast(1.03); }
  .hero-visual .photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(11,42,63,0.16) 0%, rgba(11,42,63,0) 50%, rgba(127,207,219,0.10) 100%);
    pointer-events: none;
  }
  .hero-visual .photo::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    opacity: 0.10; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
    background-size: 140px 140px;
  }

  /* Linha de pulso (ECG) — motivo recorrente */
  .hero-pulse { display: block; width: 132px; height: 26px; margin-bottom: 14px; color: var(--teal); overflow: visible; }
  .hero-pulse path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  .pulse-divider { padding: 4px 5vw; }
  @media (min-width: 1024px) { .pulse-divider { padding: 16px 5vw; } }
  .pulse-divider .wrap { display: flex; align-items: center; }
  .pulse-divider svg { width: 100%; height: 34px; display: block; overflow: visible; }
  .pulse-divider path { fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .pulse-divider path.base { stroke: var(--line); }
  .pulse-divider path.beat { stroke: var(--teal); }

  /* ECG watermark em seções escuras */
  .ecg-watermark { position: absolute; left: 0; right: 0; pointer-events: none; color: var(--cyan); opacity: 0.10; overflow: visible; }
  .ecg-watermark path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ---------- Depoimento ---------- */
  .quote { background: var(--ocean); color: #fff; position: relative; overflow: hidden; }
  .quote .wrap { max-width: 920px; text-align: center; position: relative; z-index: 2; }
  .quote .qm { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 5rem; color: var(--cyan); line-height: 0.4; display: block; height: 40px; }
  .quote blockquote { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 500; font-size: clamp(1.35rem, 3vw, 2.3rem); line-height: 1.32; letter-spacing: -0.02em; margin: 28px auto 34px; max-width: 24ch; color: #fff; }
  .quote blockquote b { color: var(--cyan); font-weight: 600; }
  .quote .who { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
  .quote .who img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(127,207,219,0.4); }
  .quote .who .nm { font-weight: 600; color: #fff; }
  .quote .who .rl { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
  .quote .ecg-watermark { z-index: 1; }

  /* ---------- FAQ ---------- */
  .faq-head { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
  .faq-head h2 { margin: 20px 0 0; }
  .faq-list { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 26px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center;
    font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--ocean); transition: color 0.3s var(--ease);
  }
  .faq-q:hover { color: var(--teal); }
  .faq-q .ic { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
  .faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--teal); border-radius: 2px; transition: transform 0.4s var(--ease); }
  .faq-q .ic::before { top: 10px; left: 0; right: 0; height: 2px; }
  .faq-q .ic::after { left: 10px; top: 0; bottom: 0; width: 2px; }
  .faq-item.open .faq-q .ic::after { transform: scaleY(0); }
  .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
  .faq-a p { color: var(--muted); padding-bottom: 28px; max-width: 72ch; font-size: 1rem; }

  /* ---------- Reativo vs Preventivo ---------- */
  .versus { background: var(--surface); }
  .versus-head { text-align: center; max-width: 58ch; margin: 0 auto 56px; }
  .versus-head h2 { margin-top: 20px; }
  /* tabela comparativa */
  .cmp { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden; box-shadow: 0 36px 80px -50px rgba(11,42,63,0.4); }
  .cmp-panel { padding: 40px clamp(24px, 3vw, 44px); }
  .cmp-panel-old { background: var(--surface); }
  .cmp-panel-new { background: var(--bg-elevated); position: relative; }
  .cmp-panel-new::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--teal), var(--cyan)); }
  .cmp-panel-head { display: flex; align-items: center; gap: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 26px; }
  .cmp-panel-old .cmp-panel-head { color: var(--muted); }
  .cmp-panel-new .cmp-panel-head { color: var(--teal); }
  .cmp-panel-ic { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cmp-panel-ic svg { width: 17px; height: 17px; stroke-width: 2.1; }
  .cmp-panel-old .cmp-panel-ic { background: linear-gradient(150deg, #D8845C, #B85A2E); color: #fff; box-shadow: 0 5px 12px -4px rgba(184,90,46,0.55), inset 0 1px 1px rgba(255,255,255,0.3); }
  .cmp-panel-new .cmp-panel-ic { background: linear-gradient(150deg, var(--cyan), var(--teal)); color: #fff; box-shadow: 0 5px 14px -3px rgba(29,110,126,0.55), inset 0 1px 1px rgba(255,255,255,0.35); }
  .cmp-list { display: grid; }
  .cmp-list li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
  .cmp-list li:first-child { border-top: none; padding-top: 0; }
  .cmp-list b { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
  .cmp-panel-new .cmp-list b { color: var(--teal); }
  .cmp-list span { font-size: 0.94rem; line-height: 1.45; }
  .cmp-panel-old .cmp-list span { color: var(--muted); }
  .cmp-panel-new .cmp-list span { color: var(--ocean); font-weight: 500; }
  @media (max-width: 760px) {
    .cmp { grid-template-columns: 1fr; }
    .cmp-panel { padding: 32px 24px; }
  }
  .vs-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
  @media (min-width: 820px) { .vs-grid { grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; } }
  .vs-col { border-radius: 22px; padding: 38px 32px; }
  .vs-old { background: var(--bg-elevated); border: 1px solid var(--line); }
  .vs-new { background: var(--ocean); color: #fff; box-shadow: 0 44px 90px -44px rgba(11,42,63,0.55); position: relative; overflow: hidden; }
  .vs-new::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(127,207,219,0.18), transparent 70%); top: -160px; right: -120px; }
  .vs-tag { position: relative; z-index: 2; display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 7px 14px; border-radius: 100px; margin-bottom: 26px; }
  .vs-old .vs-tag { background: var(--surface); color: var(--muted); }
  .vs-new .vs-tag { background: rgba(127,207,219,0.18); color: var(--cyan); }
  .vs-col ul { list-style: none; display: grid; gap: 17px; position: relative; z-index: 2; }
  .vs-col li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; line-height: 1.45; }
  .vs-old li { color: var(--muted); }
  .vs-new li { color: rgba(255,255,255,0.92); }
  .vs-ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
  .vs-ic svg { width: 13px; height: 13px; }
  .vs-old .vs-ic { background: #F0E6E1; color: #C86A3B; }
  .vs-new .vs-ic { background: rgba(127,207,219,0.2); color: var(--cyan); }

  /* ---------- Para cada área ---------- */
  .areas { background: var(--bg); }
  .areas-head { max-width: 58ch; margin: 0 auto 60px; text-align: center; }
  .areas-head h2 { margin-top: 20px; }
  .area-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1040px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (min-width: 1040px) { .area-grid-3 { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 640px) and (max-width: 1039px) { .area-grid-3 { grid-template-columns: repeat(3, 1fr); } }
  .area-card {
    position: relative; background: var(--bg-elevated); border: 1px solid var(--line);
    border-radius: 18px; padding: 34px 28px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  }
  .area-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--teal), var(--cyan)); transform: scaleY(0); transform-origin: top; transition: transform 0.5s var(--ease); }
  .area-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: 0 30px 60px -34px rgba(11,42,63,0.4); }
  .area-card:hover::after { transform: scaleY(1); }
  .area-card .ic { color: var(--teal); margin-bottom: 18px; display: block; }
  .area-card .ic svg { width: 26px; height: 26px; }
  .area-card .who { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 8px; }
  .area-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--ocean); margin-bottom: 14px; line-height: 1.22; }
  .area-card ul { list-style: none; display: grid; gap: 10px; }
  .area-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); line-height: 1.4; }
  .area-card li svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

  /* ---------- O problema (custo invisível) ---------- */
  .problema2 { background: var(--bg); }
  .prob-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
  .prob-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--ocean); margin: 18px 0 18px; }
  .prob-head h2 .em { color: var(--teal); }
  .prob-head .lead { margin: 0 auto; }

  /* faixa de KPIs escura */
  .prob-kpis { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ocean); border-radius: 24px; padding: 44px clamp(16px, 3vw, 36px); overflow: hidden; }
  .prob-kpis::before { content: ""; position: absolute; top: -80px; left: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(127,207,219,0.22), transparent 70%); pointer-events: none; }
  .prob-kpis::after { content: ""; position: absolute; bottom: -90px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(200,106,59,0.22), transparent 70%); pointer-events: none; }
  .kpi { position: relative; padding: 0 22px; text-align: center; }
  .kpi:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 6px; bottom: 6px; width: 1px; background: rgba(255,255,255,0.14); }
  .kpi-num { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.6rem); line-height: 1; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
  .kpi-label { display: block; font-size: 0.92rem; font-weight: 700; color: var(--cyan); margin-bottom: 10px; }
  .kpi-desc { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.62); line-height: 1.55; }
  @media (max-width: 860px) {
    .prob-kpis { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .kpi:nth-child(2n)::after { display: none; }
    .kpi:not(:nth-last-child(-n+2)) { padding-bottom: 30px; }
    .kpi:not(:nth-last-child(-n+2))::before { content: ""; position: absolute; left: 10%; right: 10%; bottom: 0; height: 1px; background: rgba(255,255,255,0.14); }
  }
  @media (max-width: 560px) {
    .prob-kpis { grid-template-columns: 1fr; }
    .kpi:not(:last-child)::after, .kpi:not(:last-child)::before { left: 0; right: 0; }
  }
  .prob-source { max-width: 640px; margin: 22px auto 0; text-align: center; }

  .prob-source { font-size: 0.74rem; color: var(--muted); opacity: 0.85; line-height: 1.4; }

  /* "onde o dinheiro vai" — número-manchete + ledger, sem card */
  .cost-split { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; max-width: 920px; margin: 52px auto 0; padding-top: 48px; border-top: 1px solid var(--line); }
  .cost-hero-eyebrow { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
  .cost-hero-num { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(3.2rem, 6vw, 4.6rem); line-height: 0.95; color: var(--terra); letter-spacing: -0.03em; }
  .cost-hero-text { margin-top: 18px; font-size: 0.98rem; line-height: 1.6; color: var(--muted); max-width: 30ch; }
  .cost-hero-text b { color: var(--ocean); }
  .cost-ledger { display: grid; }
  .cl-item { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .cl-item:first-child { padding-top: 0; }
  .cl-dot { width: 7px; height: 7px; margin-bottom: 2px; border-radius: 2px; flex-shrink: 0; }
  .cl-label { font-size: 0.95rem; color: var(--ocean); white-space: nowrap; }
  .cl-leader { flex: 1; min-width: 20px; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
  .cl-val { font-variant-numeric: tabular-nums; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--muted); flex-shrink: 0; }
  .cl-item.cl-total { border-bottom: none; border-top: 2px solid var(--ocean); margin-top: 2px; padding-top: 16px; }
  .cl-item.cl-total .cl-label, .cl-item.cl-total .cl-val { font-weight: 800; color: var(--ocean); }
  @media (max-width: 720px) {
    .cost-split { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ---------- Metodologia (prova clínica) ---------- */
  .method { background: var(--surface); }
  .method-head { text-align: center; max-width: 56ch; margin: 0 auto 56px; }
  .method-head h2 { margin: 18px 0 0; }
  .method-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 640px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1040px) { .method-grid { grid-template-columns: repeat(4, 1fr); } }
  .method-card { position: relative; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 18px; padding: 32px 26px; overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease); }
  .method-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--teal), var(--cyan)); transform: scaleY(0); transform-origin: top; transition: transform 0.5s var(--ease); }
  .method-card:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 28px 56px -34px rgba(11,42,63,0.4); }
  .method-card:hover::after { transform: scaleY(1); }
  .method-card .mc-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.78rem; color: var(--cyan); letter-spacing: 0.1em; }
  .method-card .mc-ic { color: var(--teal); display: block; margin: 14px 0 16px; }
  .method-card .mc-ic svg { width: 30px; height: 30px; }
  .method-card h3 { font-size: 1.05rem; color: var(--ocean); margin-bottom: 9px; line-height: 1.25; }
  .method-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.45; }
  .method-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 40px; font-size: 0.92rem; color: var(--muted); text-align: center; flex-wrap: wrap; }
  .method-note svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
  .method-note b { color: var(--ocean); font-weight: 600; }

  /* ---------- Mapa de risco (silhueta) ---------- */
  .riskmap { background: #FFFFFF; }
  .riskmap-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
  @media (min-width: 980px) { .riskmap-grid { grid-template-columns: 1fr 0.8fr; gap: 56px; } }
  .riskmap-copy h2 { margin: 18px 0 18px; color: var(--ocean); }
  .riskmap-copy .lead { margin-bottom: 28px; }
  .riskmap-zones { list-style: none; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 10px; max-width: 460px; }
  .riskmap-zones li { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.9rem; letter-spacing: -0.01em; color: var(--ocean); background: #FFFFFF; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 11px; }
  .riskmap-zones li .rz-ic { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--line); background: transparent; flex-shrink: 0; transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
  .riskmap-zones li .rz-label { flex: 1; }
  .riskmap-zones li .rz-ch { display: none; }
  .riskmap-zones li.active .rz-ic { background: var(--cyan); border-color: var(--cyan); transform: scale(1.1); box-shadow: 0 0 0 4px rgba(127,207,219,0.28); }
  .riskmap-fig { display: flex; justify-content: center; }

  .reveal-cover { will-change: transform; }

  /* ===================================================================== */
  /* ============== COMPONENTES MULTI-PÁGINA (site) ====================== */
  /* ===================================================================== */

  /* ---------- Subhero (topo das páginas internas) ---------- */
  .subhero { position: relative; background: var(--ocean); color: #fff; overflow: hidden; padding: 168px 0 96px; }
  @media (min-width: 980px) { .subhero { min-height: 764px; display: flex; align-items: center; } }
  .subhero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
    background:
      radial-gradient(900px 420px at 88% -10%, rgba(127,207,219,0.18), transparent 60%),
      radial-gradient(700px 360px at -5% 110%, rgba(29,110,126,0.28), transparent 60%);
  }
  .subhero .wrap { position: relative; z-index: 2; }
  .subhero .eyebrow { color: var(--cyan); }
  .subhero .eyebrow::before { background: var(--cyan); }
  .subhero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.02em; color: #fff; margin: 20px 0 22px; max-width: 20ch; }
  .subhero h1 .hl { color: var(--cyan); }
  .subhero p.lead { color: rgba(255,255,255,0.84); max-width: 62ch; }
  .subhero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
  @media (min-width: 980px) { .subhero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; } }
  .subhero .hero-pulse { color: var(--cyan); width: 150px; margin-bottom: 14px; }
  .subhero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }


  /* ---------- Resultados — do sinal ao resultado (lista simples, sem card) ---------- */
  .rp-list { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 8px; }
  @media (min-width: 700px) { .rp-list { grid-template-columns: repeat(3, 1fr); gap: 44px; } }
  .rp-item { border-top: 2px solid var(--teal); padding-top: 18px; }
  .rp-title { display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 10px; }
  .rp-item p { color: var(--muted); font-size: 0.91rem; line-height: 1.6; margin: 0; }

  /* ---------- Figuras (imagens curadas) ---------- */
  .fig { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 44px 100px -56px rgba(11,42,63,0.62); background: var(--surface); }
  .fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .fig.wide { aspect-ratio: 16/10; }
  .fig.tall { aspect-ratio: 3/4; }
  .fig.square { aspect-ratio: 1/1; }
  .fig.b16 { aspect-ratio: 16/11; }
  .fig::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(11,42,63,0.06); border-radius: 22px; pointer-events: none; }
  .fig-cap { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(7,26,40,0.78); backdrop-filter: blur(6px); color: #fff; font-size: 0.78rem; font-weight: 500; padding: 9px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.14); }
  .fig-cap svg { width: 15px; height: 15px; color: var(--cyan); }
  .subhero-fig .fig { box-shadow: 0 50px 120px -50px rgba(0,0,0,0.7); }
  .subhero-ribbon { position: absolute; top: -2%; right: -4%; width: min(46vw, 540px); height: 104%; z-index: 1; pointer-events: none; }
  .subhero .wrap { position: relative; z-index: 2; }
  @media (max-width: 900px) { .subhero-ribbon { display: none; } }

  /* ---------- Media split (texto + imagem alternados) ---------- */
  .media { display: flex; flex-direction: column; gap: 40px; }
  .media-fig { position: relative; }
  @media (min-width: 980px) {
    .media { flex-direction: row; gap: 64px; align-items: stretch; }
    .media-txt, .media-fig { flex: 1; min-width: 0; }
    .media.rev .media-txt { order: 2; } .media.rev .media-fig { order: 1; }
    .media-fig .fig.b16 { position: absolute; inset: 0; aspect-ratio: unset; }
  }
  .media + .media { margin-top: 110px; }
  .media-txt h2 { color: var(--ocean); margin: 16px 0 18px; }
  .media-txt > p { color: var(--muted); font-size: 1.02rem; line-height: 1.65; margin-bottom: 22px; max-width: 52ch; }

  /* ---------- Segmentos deep-dive (com imagem) ---------- */
  .seg-deep { display: grid; gap: 26px; }
  .sd-item { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--bg-elevated); box-shadow: 0 30px 70px -54px rgba(11,42,63,0.4); }
  @media (min-width: 820px) { .sd-item { grid-template-columns: 0.85fr 1.15fr; min-height: 380px; } .sd-item.rev { grid-template-columns: 1.15fr 0.85fr; } .sd-item.rev .sd-fig { order: 2; } }
  .sd-fig { position: relative; overflow: hidden; aspect-ratio: 16/10; }
  @media (min-width: 820px) { .sd-fig { aspect-ratio: auto; min-height: 0; } .sd-fig img { position: absolute; inset: 0; } }
  .sd-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sd-body { padding: 36px 38px; }
  @media (min-width: 820px) { .sd-body { display: flex; flex-direction: column; justify-content: center; } }
  .sd-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
  .sd-tag svg { width: 17px; height: 17px; }
  .sd-body h3 { font-size: 1.45rem; color: var(--ocean); margin: 12px 0 10px; }
  .sd-body p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; margin-bottom: 18px; }
  .sd-risklabel { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 11px; }
  .sd-body ul { list-style: none; display: grid; gap: 9px; }
  .sd-body li { display: flex; gap: 11px; align-items: flex-start; color: var(--ocean); font-size: 0.92rem; }
  .sd-body li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

  /* ---------- Faixa CTA interna ---------- */
  .cta-band { position: relative; overflow: hidden; background: var(--ocean); color: #fff; border-radius: 30px; padding: clamp(40px, 6vw, 72px); text-align: center; }
  .cta-band::before { content: ""; position: absolute; inset: 0; opacity: 0.6; background: radial-gradient(700px 320px at 80% -20%, rgba(127,207,219,0.2), transparent 60%); }
  .cta-band > * { position: relative; z-index: 2; }
  .cta-band .eyebrow { color: var(--cyan); justify-content: center; }
  .cta-band .eyebrow::before { background: var(--cyan); }
  .cta-band h2 { color: #fff; margin: 18px auto 16px; max-width: 22ch; }
  .cta-band p { color: rgba(255,255,255,0.82); max-width: 56ch; margin: 0 auto 32px; }
  .cta-band .btn-primary { background: var(--cyan); color: var(--ocean); }

  /* ---------- Página de contato ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
  @media (min-width: 980px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; } }
  .contact-info h2 { color: var(--ocean); margin: 16px 0 16px; }
  .contact-info > p { color: var(--muted); line-height: 1.65; margin-bottom: 32px; }
  .info-list { display: grid; gap: 20px; }
  .info-item { display: flex; gap: 16px; align-items: flex-start; }
  .info-item .ii-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--teal); }
  .info-item .ii-ic svg { width: 21px; height: 21px; }
  .info-item .ii-t { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; color: var(--ocean); font-size: 0.96rem; margin-bottom: 3px; }
  .info-item .ii-v { color: var(--muted); font-size: 0.92rem; }
  .info-points { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; gap: 13px; }
  .info-points li { display: flex; gap: 11px; align-items: flex-start; color: var(--ocean); font-size: 0.93rem; }
  .info-points li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

  /* ---------- Cabeçalho de seção centralizado reutilizável ---------- */
  .sec-head { text-align: center; max-width: 60ch; margin: 0 auto 60px; }
  .sec-head .eyebrow { justify-content: center; }
  .sec-head h2 { color: var(--ocean); margin: 18px auto 16px; }
  .sec-head .lead { margin: 0 auto; }
  .alt-bg { background: var(--bg-elevated); }

  /* ===================================================================== */
  /* ===== PADRÕES INSPIRADOS EM REFERÊNCIA (cards foto, flow, colagem) === */
  /* ===================================================================== */

  /* ---------- Cards com foto de pessoas ---------- */
  .photocards { display: grid; grid-template-columns: 1fr; gap: 30px; }
  @media (min-width: 720px) { .photocards { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
  .pcard { display: flex; flex-direction: column; }
  .pcard-img { position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; background: var(--surface); box-shadow: 0 34px 80px -54px rgba(11,42,63,0.55); }
  .pcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
  .pcard:hover .pcard-img img { transform: scale(1.05); }
  .pcard-img .pcard-tag { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; background: rgba(7,26,40,0.78); backdrop-filter: blur(6px); color: #fff; font-size: 0.74rem; font-weight: 500; padding: 8px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.14); }
  .pcard-img .pcard-tag svg { width: 14px; height: 14px; color: var(--cyan); }
  .pcard h3 { font-size: 1.2rem; color: var(--ocean); margin: 22px 0 9px; }
  .pcard p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

  /* ---------- Passos numerados + imagem (flow) ---------- */
  .flow { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
  @media (min-width: 980px) { .flow { grid-template-columns: 1fr 1fr; gap: 66px; } .flow.rev .flow-steps { order: 2; } }
  .flow-steps { display: grid; }
  .flow-step { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); transition: padding-left 0.4s var(--ease); }
  .flow-step:last-child { border-bottom: 1px solid var(--line); }
  .flow-step:hover { padding-left: 6px; }
  .flow-step .fs-num { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--teal); color: var(--teal); display: grid; place-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; transition: background 0.4s var(--ease), color 0.4s var(--ease); }
  .flow-step:hover .fs-num { background: var(--teal); color: #fff; }
  .flow-step h3 { font-size: 1.14rem; color: var(--ocean); margin-bottom: 6px; }
  .flow-step p { color: var(--muted); font-size: 0.95rem; line-height: 1.58; }
  .flow-fig .fig { box-shadow: 0 44px 100px -56px rgba(11,42,63,0.62); }
  .flow-fig .fig.tall { aspect-ratio: 3/2; }

  /* Teaser da home: grade compacta, diferente da lista de "Como funciona" */
  .teaser-steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
  @media (min-width: 640px) { .teaser-steps { grid-template-columns: 1fr 1fr; } }
  .teaser-step { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: #fff; border-radius: 14px; box-shadow: 0 18px 40px -30px rgba(11,42,63,0.35); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .teaser-step:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -26px rgba(11,42,63,0.4); }
  .teaser-step .ts-num { width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
  .teaser-step h3 { font-size: 1rem; color: var(--ocean); margin: 0; }

  /* ---------- Colagem (foto + app + chat) ---------- */
  .collage { display: grid; grid-template-columns: 1fr; gap: 16px; }
  @media (min-width: 720px) { .collage { grid-template-columns: 1.15fr 0.85fr; grid-auto-rows: 1fr; } .collage .cl-main { grid-row: span 2; } }
  .cl-main { position: relative; border-radius: 22px; overflow: hidden; min-height: 240px; background: var(--surface); box-shadow: 0 34px 80px -54px rgba(11,42,63,0.5); }
  .cl-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hs-card { border-radius: 22px; padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 12px; box-shadow: 0 30px 70px -56px rgba(11,42,63,0.4); }
  .hs-card-dark { background: var(--ocean); color: rgba(255,255,255,0.92); }
  .hs-card-dark svg { width: 24px; height: 24px; color: var(--cyan); }
  .hs-card-dark span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 1rem; line-height: 1.42; }
  .hs-card-stat { background: var(--surface); border: 1px solid var(--line); }
  .hs-card-stat .hs-stat { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--teal); line-height: 1; }
  .hs-card-stat .hs-stat .u { color: var(--cyan); }
  .hs-card-stat .hs-stat-l { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
  .flow-cta { text-align: center; margin-top: 52px; }
  .editorial-photo { width: 100%; max-width: 1140px; margin: 48px auto 0; aspect-ratio: 16 / 8.5; overflow: hidden; position: relative; border-radius: 22px; box-shadow: 0 44px 100px -56px rgba(11,42,63,0.5); }
  .editorial-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 768px) { .editorial-photo { margin-top: 32px; aspect-ratio: 4 / 3; } }
  .cl-chat { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: 22px; padding: 20px; display: flex; flex-direction: column; gap: 12px; justify-content: center; box-shadow: 0 30px 70px -56px rgba(11,42,63,0.4); }
  .chat-row { display: flex; gap: 10px; align-items: flex-start; }
  .chat-row.me { flex-direction: row-reverse; }
  .chat-av { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--surface); display: grid; place-items: center; color: var(--teal); }
  .chat-av svg { width: 17px; height: 17px; }
  .chat-row.me .chat-av { background: var(--ocean); color: var(--cyan); }
  .chat-bubble { font-size: 0.84rem; line-height: 1.45; padding: 10px 13px; border-radius: 14px; max-width: 80%; }
  .chat-row.them .chat-bubble { background: var(--surface); color: var(--ocean); border-bottom-left-radius: 4px; }
  .chat-row.me .chat-bubble { background: var(--teal); color: #fff; border-bottom-right-radius: 4px; }
  .chat-name { font-size: 0.7rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
  .cl-mini { position: relative; border-radius: 22px; overflow: hidden; min-height: 200px; background: var(--ocean); display: grid; place-items: center; padding: 18px; }
  .cl-mini .mini-screen { width: 100%; max-width: 220px; background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5); }
  .mini-screen .ms-q { font-size: 0.78rem; font-weight: 600; color: var(--ocean); margin-bottom: 10px; }
  .mini-screen .ms-opt { font-size: 0.74rem; color: var(--muted); border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; margin-bottom: 6px; }
  .mini-screen .ms-opt.on { background: rgba(29,110,126,0.1); color: var(--teal); border-color: var(--teal); font-weight: 600; }

  /* ---------- Mapa de risco interativo ---------- */
  .riskmap-zones li { cursor: pointer; transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
  .riskmap-zones li:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(11,42,63,0.4); }
  .riskmap-zones li:hover .rz-ic { border-color: var(--teal); }
  .riskmap-zones li.active { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 18px 36px -22px rgba(29,110,126,0.55); }
  .riskmap-zones li.active .rz-label { color: #fff; }
  .riskmap-zones li.active:hover { transform: translateY(-2px); }
  .riskmap-desc { margin-top: 18px; padding: 22px 24px 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; position: relative; overflow: hidden; }
  .riskmap-desc.is-empty { display: none; }
  .riskmap-desc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--teal), var(--cyan)); }
  .riskmap-desc .riskmap-desc-eyebrow { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal); margin-bottom: 9px; }
  .riskmap-desc h4 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ocean); margin-bottom: 8px; }
  .riskmap-desc p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
  .bodymap .glow.sel { outline: 3px solid var(--cyan); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(127,207,219,0.3); }

  /* ---------- Mapa de risco com pessoa real + pontos clicáveis ---------- */
  .bodymap-person { position: relative; width: 100%; max-width: 470px; margin: 0 auto; }
  .bodymap-person .person { width: 100%; height: auto; display: block; background: transparent; }
  .bodymap-person .dot {
    position: absolute; transform: translate(-50%, -50%);
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--teal); border: 2.5px solid #fff;
    box-shadow: 0 3px 12px rgba(11,42,63,0.5);
    display: grid; place-items: center; cursor: pointer; z-index: 3;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .bodymap-person .dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; transition: background 0.3s var(--ease); }
  .bodymap-person .dot:hover { transform: translate(-50%, -50%) scale(1.18); box-shadow: 0 4px 16px rgba(11,42,63,0.55); }
  .bodymap-person .dot.active { background: var(--ocean); border-color: #fff; transform: translate(-50%, -50%) scale(1.32); box-shadow: 0 0 0 6px rgba(127,207,219,0.4), 0 3px 12px rgba(11,42,63,0.5); }
  .bodymap-person .dot.active::after { background: var(--cyan); }

  /* ---------- Barra de dados segmentada (estilo dado/pesquisa) ---------- */
  .databar { margin-top: 56px; }
  .db-labels { display: flex; width: 100%; gap: 0; }
  .db-lab { position: relative; padding-right: 14px; min-width: 0; }
  .db-lab span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); line-height: 1.25; padding-bottom: 28px; }
  .db-lab i { position: absolute; left: 0; bottom: 0; width: 1px; height: 22px; background: var(--line); }
  .db-track { display: flex; width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -50px rgba(11,42,63,0.5); }
  .db-seg { position: relative; min-width: 0; height: 168px; display: flex; flex-direction: column; justify-content: center; padding: 0 20px; transform-origin: left center; }
  .db-seg .db-val { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(1.1rem, 2.2vw, 1.85rem); line-height: 1; color: #fff; white-space: nowrap; }
  .db-seg .db-name { display: none; font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 6px; }
  .db-seg.s1 { background: var(--ocean); }
  .db-seg.s2 { background: var(--teal); }
  .db-seg.s3 { background: var(--cyan); }
  .db-seg.s3 .db-val { color: var(--ocean); }
  .db-seg.s3 .db-name { color: rgba(11,42,63,0.7); }
  .db-bracket { height: 16px; border: 1px solid var(--line); border-top: none; border-radius: 0 0 8px 8px; margin: 0 2px; }
  .db-total { text-align: center; margin-top: 30px; }
  .db-big { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; color: var(--ocean); letter-spacing: -0.02em; }
  .db-big .u { color: var(--teal); }
  .db-sub { display: block; max-width: 48ch; margin: 12px auto 0; color: var(--muted); font-size: 1rem; }
  .db-callout { display: flex; align-items: center; gap: 30px; max-width: 660px; margin: 32px auto 0; padding: 30px 34px; background: var(--ocean); border-radius: 20px; box-shadow: 0 34px 80px -44px rgba(11,42,63,0.6); }
  .db-callout-fig { display: flex; flex-direction: column; flex-shrink: 0; }
  .db-callout-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3rem); line-height: 0.95; letter-spacing: -0.02em; color: var(--terra); }
  .db-callout-num .u { font-size: 0.42em; font-weight: 600; letter-spacing: 0; color: rgba(255,255,255,0.65); margin-left: 3px; }
  .db-callout-tag { margin-top: 10px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.55); }
  .db-callout-text { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.9); border-left: 1px solid rgba(255,255,255,0.16); padding-left: 30px; }
  @media (max-width: 600px) { .db-callout { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 24px; } .db-callout-text { border-left: none; border-top: 1px solid rgba(255,255,255,0.16); padding-left: 0; padding-top: 18px; } }
  .db-source { text-align: center; margin-top: 22px; font-size: 0.78rem; color: var(--muted); opacity: 0.85; }
  @media (max-width: 760px) {
    .db-labels { display: none; }
    .db-track { flex-direction: column; border-radius: 14px; }
    .db-seg { height: auto; min-height: 64px; padding: 16px 18px; flex-direction: row; align-items: center; justify-content: space-between; }
    .db-seg .db-name { display: block; order: -1; margin-top: 0; font-weight: 500; max-width: 60%; }
  }

  /* ---------- CTA sticky (mobile) ---------- */
  .mc-sticky-cta {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 900;
    display: none; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 24px; border-radius: 100px;
    background: var(--cyan); color: var(--ocean);
    font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 1rem;
    box-shadow: 0 16px 40px -10px rgba(11,42,63,0.55);
    transform: translateY(150%); transition: transform 0.5s var(--ease);
    text-decoration: none;
  }
  .mc-sticky-cta svg { width: 18px; height: 18px; }
  .mc-sticky-cta.show { transform: translateY(0); }
  @media (max-width: 760px) { .mc-sticky-cta { display: flex; } }

  /* ---------- Microinterações de toque ---------- */
  .btn, .benefit, .pcard, .sd-item, .area-card, .seg-item, .method-card, .riskmap-zones li, .faq-q {
    -webkit-tap-highlight-color: transparent;
  }
  @media (hover: none) {
    .btn:active, .benefit:active, .pcard:active, .sd-item:active,
    .area-card:active, .seg-item:active, .method-card:active,
    .riskmap-zones li:active, .faq-q:active, .mc-sticky-cta:active {
      transform: scale(0.975);
      transition: transform 0.12s var(--ease);
    }
    .pcard:active .pcard-img img { transform: scale(1.04); }
  }

  /* ---------- Faixa de declaração full-bleed ---------- */
  .statement { position: relative; overflow: hidden; background: var(--ocean); color: #fff; text-align: center; }
  .statement .wrap { position: relative; z-index: 2; }
  .statement .eyebrow { justify-content: center; color: var(--cyan); }
  .statement .eyebrow::before { background: var(--cyan); }
  .statement h2 { color: #fff; max-width: 18ch; margin: 20px auto 0; font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
  .statement h2 .hl { color: var(--cyan); }
  .statement .ecg-watermark { top: 50%; transform: translateY(-50%); height: 130px; opacity: 0.18; z-index: 1; }

  /* ---------- Hub em carrossel (mobile) ---------- */
  @media (max-width: 760px) {
    .benefits.hub4 {
      display: flex;
      grid-template-columns: none;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 14px;
      background: transparent;
      border: none;
      border-radius: 0;
      margin: 0 -5vw;
      padding: 4px 5vw 10px;
      scroll-padding-left: 5vw;
      scrollbar-width: none;
    }
    .benefits.hub4::-webkit-scrollbar { display: none; }
    .benefits.hub4 .benefit {
      flex: 0 0 80%;
      scroll-snap-align: start;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 30px 26px 32px;
    }
  }

  .reveal-cover { will-change: transform; }
  @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
