/* ==========================================================================
   MedForce 2026 — sistema de design "Obsidiana Azul"
   Ritmo escuro ↔ claro. Azuis da marca (#068FFF / #3C43ED) com degradê vivo.
   Tipografia: Geist (display/corpo) + Geist Mono (rótulos e números)
   ========================================================================== */

:root {
  /* --- superfícies escuras (padrão) --- */
  --ground:      #05070E;
  --ground-2:    #090D1A;
  --ground-3:    #0D1424;
  --line:        #182236;
  --line-soft:   #111a2b;

  /* --- texto --- */
  --ink:         #EEF2F9;
  --ink-2:       #B7C2D6;
  --dim:         #8493AC;
  --faint:       #5A6780;

  /* --- azuis MedForce --- */
  --blue:        #068FFF;
  --blue-lit:    #4FB6FF;
  --blue-ice:    #9BEAFF;
  --indigo:      #3C43ED;

  /* cor de realce que troca entre tema claro e escuro */
  --accent-text: #4FB6FF;
  --ghost-border: #232F45;
  --ghost-bg:     rgba(255,255,255,.02);
  --ghost-border-hover: #3C4E6E;
  --ghost-bg-hover: rgba(79,182,255,.07);
  --grid-line: rgba(120,160,220,.055);

  /* degradê assinatura */
  --grad:      linear-gradient(104deg, #9BEAFF 0%, #34AEFF 26%, #068FFF 50%, #2C5BF5 76%, #5B4BFF 100%);
  --grad-wide: linear-gradient(104deg, #B6F1FF 0%, #46B8FF 22%, #068FFF 46%, #2F5DF6 72%, #6B57FF 100%);

  /* --- ritmo --- */
  --pad: clamp(20px, 5vw, 72px);
  --gap-sec: clamp(84px, 10vw, 152px);
  --wrap: 1240px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---- seções claras: só trocam os tokens, os componentes se adaptam ---- */
.section--light,
.section--paper {
  --ground:      #FFFFFF;
  --ground-2:    #F5F7FB;
  --ground-3:    #EBF0F8;
  --line:        #E1E8F3;
  --line-soft:   #EDF1F8;
  --ink:         #070C16;
  --ink-2:       #2F3C55;
  --dim:         #5E6D87;
  --faint:       #94A1B7;
  --accent-text: #0670CC;
  --ghost-border: #D3DCEA;
  --ghost-bg:     #FFFFFF;
  --ghost-border-hover: #9FB3D0;
  --ghost-bg-hover: #F2F6FC;
  --grid-line: rgba(20,60,120,.05);
  background: var(--ground);
  color: var(--ink);
}
.section--paper { --ground: #F5F7FB; --ground-2: #FFFFFF; }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: #05070E;
  color: #EEF2F9;
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.035em; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   estrutura
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); width: 100%; position: relative; }
.section { padding-block: var(--gap-sec); position: relative; background: var(--ground); color: var(--ink); }
.section--tight { padding-block: clamp(52px, 6vw, 78px); }

/* malha de projeto — a "forma" de fundo que carrega a ideia de estrutura */
.section--grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 76% 68% at 50% 44%, #000 38%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 76% 68% at 50% 44%, #000 38%, transparent 78%);
}

.eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent-text); display: block;
}

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.h-xl { font-size: clamp(2.6rem, 6.8vw, 5.2rem); line-height: .99; font-weight: 500; }
.h-lg { font-size: clamp(2rem, 4.3vw, 3.3rem); line-height: 1.07; }
.h-md { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; }

.lede { color: var(--dim); font-size: clamp(1.02rem, 1.32vw, 1.16rem); line-height: 1.63; max-width: 58ch; font-weight: 300; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease),
              filter .3s var(--ease), color .3s var(--ease);
}
.btn svg { flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--grad); color: #04060C; font-weight: 600;
  box-shadow: 0 12px 34px -16px rgba(6,143,255,.8);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 18px 42px -16px rgba(6,143,255,.95); }

.btn--ghost { border-color: var(--ghost-border); color: var(--ink); background: var(--ghost-bg); }
.btn--ghost:hover { border-color: var(--ghost-border-hover); background: var(--ghost-bg-hover); transform: translateY(-2px); }

.acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   navegação
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.stuck {
  background: rgba(5,7,14,.93);
  backdrop-filter: saturate(180%) blur(22px); -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom-color: #182236;
}
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav__logo img { width: 118px; height: auto; }
.nav__menu { display: flex; gap: 4px; margin-left: auto; }
.nav__menu a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; color: #B7C2D6; transition: color .25s, background .25s; }
.nav__menu a:hover { color: #EEF2F9; background: rgba(255,255,255,.06); }
.nav__cta { margin-left: 6px; }
.nav__burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: none;
  border: 1px solid #182236; border-radius: 11px; color: #EEF2F9; cursor: pointer;
}
@media (max-width: 1080px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__menu.open {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(5,7,14,.97);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid #182236; padding: 14px var(--pad) 24px;
  }
  .nav__menu.open a { padding: 13px 4px; font-size: 17px; border-radius: 0; }
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; background: #05070E;
  min-height: 92svh; display: flex; align-items: center;
  padding-block: 128px 88px; text-align: center;
}
.hero__glow {
  position: absolute; inset: -34% 4% auto 4%; height: 92%;
  background:
    radial-gradient(ellipse 56% 50% at 50% 10%, rgba(6,143,255,.52), transparent 66%),
    radial-gradient(ellipse 40% 42% at 22% 24%, rgba(127,220,255,.32), transparent 68%),
    radial-gradient(ellipse 44% 44% at 78% 26%, rgba(60,67,237,.46), transparent 68%);
  filter: blur(40px); pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(120,170,240,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120,170,240,.06) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(ellipse 70% 62% at 50% 46%, #000 22%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 46%, #000 22%, transparent 76%);
}
.hero h1 { max-width: 15ch; }
.hero h1 em {
  font-style: normal; display: block; font-weight: 300;
  background: var(--grad-wide); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { max-width: 52ch; }
.hero .acts { justify-content: center; margin-top: 4px; }

/* --------------------------------------------------------------------------
   números
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding-right: 26px; padding-left: 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b {
  display: block; font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 400;
  letter-spacing: -.045em; line-height: 1; font-variant-numeric: tabular-nums;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat b small { font-size: .42em; letter-spacing: 0; font-weight: 400; }
.stat span { display: block; margin-top: 12px; font-size: 13.5px; color: var(--dim); line-height: 1.45; max-width: 22ch; }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .stat:first-child { border-top: 0; padding-top: 0; }
}

/* --------------------------------------------------------------------------
   cabeçalho de seção
   -------------------------------------------------------------------------- */
.sec-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(40px, 5.5vw, 68px); }
.sec-head--center { align-items: center; text-align: center; }
.sec-head--center .lede { text-align: center; }
.sec-head--split { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sec-head--split > div { display: flex; flex-direction: column; gap: 16px; max-width: 62ch; }

/* --------------------------------------------------------------------------
   DIAGRAMA — cinco pilares sustentando o crescimento
   -------------------------------------------------------------------------- */
.diagram { width: 100%; margin-inline: auto; }
.diagram svg { width: 100%; height: auto; display: block; overflow: visible; }
.diagram--pillars { max-width: 1020px; }
.diagram--net { max-width: 900px; }

.pillar-body { transform-origin: bottom; animation: rise 1.1s var(--ease) both; }
.diagram--pillars.in .pillar-body { animation-play-state: running; }
@keyframes rise { from { transform: scaleY(.04); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.dg-label { font-family: "Geist", sans-serif; font-size: 15px; font-weight: 500; letter-spacing: -.02em; fill: var(--ink); }
.dg-num   { font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: .14em; }
.dg-beam-label { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: .2em; fill: var(--ink); text-transform: uppercase; }
.dg-sub   { font-family: "Geist", sans-serif; font-size: 12.5px; fill: var(--dim); }
.dg-rule  { stroke: var(--line); stroke-width: 1; }

/* nós da rede do ecossistema */
.node-label { font-family: "Geist", sans-serif; font-size: 14px; font-weight: 500; fill: var(--ink); letter-spacing: -.015em; }
.node-core  { font-family: "Geist", sans-serif; font-size: 19px; font-weight: 600; fill: #fff; letter-spacing: -.02em; }
.net-link   { stroke-width: 1.4; fill: none; opacity: .5; }
.net-dash   { stroke-dasharray: 4 9; animation: flow 3.4s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -26; } }

/* --------------------------------------------------------------------------
   as 5 forças
   -------------------------------------------------------------------------- */
.forces { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.force {
  --c1: var(--blue-lit); --c2: var(--blue);
  grid-column: span 2; position: relative; overflow: hidden;
  padding: 28px 26px 30px; border-radius: 20px;
  background: var(--ground-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 11px;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.force:nth-child(4), .force:nth-child(5) { grid-column: span 3; }
.force::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(150deg, color-mix(in srgb, var(--c1) 13%, transparent), transparent 56%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.force::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease);
}
.force:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c1) 40%, var(--line)); box-shadow: 0 18px 44px -26px color-mix(in srgb, var(--c1) 60%, transparent); }
.force:hover::before { opacity: 1; }
.force:hover::after { transform: scaleX(1); }
.force > * { position: relative; z-index: 1; }
.force__mark { display: flex; align-items: center; gap: 11px; margin-bottom: 3px; }
.force__mark svg { color: var(--c1); flex: none; }
.force__n { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .18em; color: var(--c1); font-weight: 500; }
.force h3 { font-size: clamp(1.2rem, 1.8vw, 1.46rem); font-weight: 500; letter-spacing: -.028em; }
.force .claim { color: var(--ink-2); font-size: 15px; font-weight: 500; letter-spacing: -.012em; }
.force p { color: var(--dim); font-size: 14.6px; line-height: 1.58; }
@media (max-width: 1000px) { .forces { grid-template-columns: repeat(2, 1fr); } .force, .force:nth-child(n) { grid-column: span 1; } }
@media (max-width: 620px) { .forces { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   trilho de processo (como estruturamos o crescimento)
   -------------------------------------------------------------------------- */
.rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.rail li {
  position: relative; padding: 40px 30px 34px 0;
  border-top: 1px solid var(--line);
}
.rail li::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px;
  background: var(--grad); transition: width .8s var(--ease);
}
.rail li.in::before { width: 62px; }
.rail__n { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .18em; color: var(--accent-text); }
.rail h3 { font-size: 1.12rem; font-weight: 500; letter-spacing: -.022em; line-height: 1.3; margin-top: 14px; }
.rail p { color: var(--dim); font-size: 14.4px; line-height: 1.55; margin-top: 10px; }
@media (max-width: 900px) { .rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .rail { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   grade de itens (resultados)
   -------------------------------------------------------------------------- */
.tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
}
.tile { background: var(--ground); padding: 26px 24px 28px; display: flex; align-items: flex-start; gap: 14px; transition: background .35s var(--ease); }
.tile:hover { background: var(--ground-2); }
.tile svg { flex: none; margin-top: 3px; color: var(--accent-text); }
.tile h3 { font-size: 1.02rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.3; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }

/* frase forte */
.pull { text-align: center; margin-top: clamp(56px, 7vw, 88px); display: flex; flex-direction: column; align-items: center; gap: 30px; }
.pull p { font-size: clamp(1.5rem, 3.3vw, 2.5rem); line-height: 1.17; font-weight: 300; letter-spacing: -.035em; max-width: 20ch; }
.pull__rule { width: 74px; height: 3px; border-radius: 3px; background: var(--grad); }

/* --------------------------------------------------------------------------
   time (fotos reais)
   -------------------------------------------------------------------------- */
.people { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.person { position: relative; }
.person figure { margin: 0; }
.person__ph {
  aspect-ratio: 1/1; border-radius: 16px; overflow: hidden;
  background: #0B1524; border: 1px solid var(--line);
}
.person__ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transition: transform .6s var(--ease), filter .6s var(--ease); filter: saturate(.9); }
.person:hover .person__ph img { transform: scale(1.05); filter: saturate(1.05); }
.person figcaption { margin-top: 13px; }
.person b { display: block; font-size: 14.5px; font-weight: 500; letter-spacing: -.018em; color: var(--ink); }
.person span { display: block; margin-top: 3px; font-size: 12.6px; color: var(--dim); line-height: 1.42; }
.person--lead { grid-column: span 2; }
.person--lead .person__ph { aspect-ratio: 2/1.02; }
.person--lead .person__ph img { object-position: 50% 24%; }
.person--lead b { font-size: 16.5px; }
@media (max-width: 1000px) { .people { grid-template-columns: repeat(3, 1fr); } .person--lead { grid-column: span 3; } .person--lead .person__ph { aspect-ratio: 3/1.1; } }
@media (max-width: 620px)  { .people { grid-template-columns: repeat(2, 1fr); } .person--lead { grid-column: span 2; } .person--lead .person__ph { aspect-ratio: 2/1.1; } }

/* --------------------------------------------------------------------------
   depoimentos
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.quote {
  margin: 0; padding: 30px 28px 28px; border-radius: 18px;
  background: var(--ground-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.quote:hover { border-color: var(--ghost-border-hover); transform: translateY(-3px); }
.quote__mark { width: 25px; height: 19px; color: var(--blue); opacity: .5; }
.quote blockquote { margin: 0; }
.quote p { font-size: 1.02rem; line-height: 1.58; color: var(--ink-2); font-weight: 300; letter-spacing: -.01em; }
.quote cite { font-style: normal; font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-top: auto; }

/* --------------------------------------------------------------------------
   blog
   -------------------------------------------------------------------------- */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 16px; }
.post {
  padding: 26px 24px 28px; border-radius: 18px;
  border: 1px solid var(--line); background: var(--ground-2);
  display: flex; flex-direction: column; gap: 13px; min-height: 208px;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.post:hover { border-color: var(--ghost-border-hover); transform: translateY(-3px); background: var(--ground-3); }
.post__cat { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); }
.post h3 { font-size: 1.14rem; font-weight: 500; line-height: 1.29; letter-spacing: -.024em; }
.post__more { margin-top: auto; color: var(--dim); font-size: 14px; display: inline-flex; align-items: center; gap: 7px; transition: color .3s; }
.post:hover .post__more { color: var(--accent-text); }

/* --------------------------------------------------------------------------
   CTA final
   -------------------------------------------------------------------------- */
.cta-final { position: relative; overflow: hidden; text-align: center; background: #05070E; }
.cta-final__glow {
  position: absolute; inset: 0 -8%; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 62% at 50% 70%, rgba(6,143,255,.30), transparent 66%),
    radial-gradient(ellipse 34% 48% at 74% 58%, rgba(60,67,237,.26), transparent 68%),
    radial-gradient(ellipse 30% 44% at 24% 60%, rgba(127,220,255,.15), transparent 70%);
  filter: blur(46px);
}
.cta-final .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* --------------------------------------------------------------------------
   rodapé
   -------------------------------------------------------------------------- */
.foot { border-top: 1px solid #182236; padding-block: clamp(56px, 7vw, 80px) 32px; background: #05070E; color: #EEF2F9; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.foot__logo img { width: 128px; height: auto; aspect-ratio: 267 / 89; object-fit: contain; margin-bottom: 20px; }
.foot__tag { color: #8493AC; font-size: 14.5px; line-height: 1.6; max-width: 32ch; }
.foot h4 { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: #5A6780; font-weight: 400; margin-bottom: 18px; }
.foot li { margin-bottom: 11px; }
.foot li a, .foot address a { color: #B7C2D6; font-size: 14.6px; transition: color .25s; }
.foot li a:hover, .foot address a:hover { color: #4FB6FF; }
.foot address { font-style: normal; color: #8493AC; font-size: 14.2px; line-height: 1.62; }
.foot address + address { margin-top: 16px; }
.foot address b { display: block; color: #B7C2D6; font-weight: 500; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 5px; }
.foot__partners { display: flex; align-items: center; gap: 22px; margin-top: 26px; }
.foot__partners img { height: 30px; width: auto; opacity: .5; filter: grayscale(1) brightness(1.6); transition: opacity .3s; }
.foot__partners img:hover { opacity: .85; }
.foot__bar {
  margin-top: clamp(44px, 6vw, 64px); padding-top: 26px; border-top: 1px solid #111a2b;
  display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; font-size: 13px; color: #5A6780;
}
.foot__bar a { color: #5A6780; transition: color .25s; }
.foot__bar a:hover { color: #B7C2D6; }
.foot__bar .sep { margin-left: auto; }
@media (max-width: 940px) { .foot__top { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; } .foot__bar .sep { margin-left: 0; } }

/* --------------------------------------------------------------------------
   consentimento de cookies (LGPD)
   -------------------------------------------------------------------------- */
.cookies {
  position: fixed; z-index: 200; left: 18px; bottom: 18px;
  width: min(430px, calc(100vw - 36px));
  background: rgba(9,13,26,.95);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid #182236; border-radius: 18px;
  padding: 22px 24px 20px; box-shadow: 0 26px 60px -24px rgba(0,0,0,.9);
  display: none; flex-direction: column; gap: 16px; color: #EEF2F9;
}
.cookies.show { display: flex; }
.cookies p { font-size: 13.8px; line-height: 1.55; color: #B7C2D6; }
.cookies a { color: #4FB6FF; text-decoration: underline; text-underline-offset: 3px; }
.cookies__acts { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies .btn { padding: 10px 20px; font-size: 14px; }
.cookies .btn--ghost { border-color: #2C3A54; color: #EEF2F9; background: rgba(255,255,255,.03); }
.cookies .btn--ghost:hover { border-color: #46587A; background: rgba(79,182,255,.08); }

/* ==========================================================================
   ELEMENTOS DE MARCA — a estrela do logo como padronagem e volume
   ========================================================================== */

/* --- padronagem: a estrela repetida como papel de parede da seção --- */
.starfield { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.starfield svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.starfield--soft { opacity: .5; }

/* --- estrela extrudada: camadas empilhadas em diagonal viram volume --- */
.star3d { position: relative; display: block; }
.star3d svg { width: 100%; height: auto; display: block; overflow: visible; }
.star3d__spin { transform-origin: 50% 50%; animation: star-float 13s ease-in-out infinite alternate; }
@keyframes star-float {
  from { transform: translateY(-8px) rotate(-2.5deg); }
  to   { transform: translateY(10px) rotate(2.5deg); }
}
.star3d__halo {
  position: absolute; inset: -22%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 46% 46%, rgba(6,143,255,.44), rgba(60,67,237,.22) 42%, transparent 70%);
  filter: blur(46px);
}

/* selo pequeno da estrela, para eyebrows e marcadores */
.star-chip { width: 15px; height: 18px; flex: none; color: var(--accent-text); }

/* --------------------------------------------------------------------------
   faixas alternadas imagem ↔ texto (ritmo tipo Hand GC)
   -------------------------------------------------------------------------- */
.rows { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 104px); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.row--flip .row__media { order: 2; }
.row__text { display: flex; flex-direction: column; gap: 16px; max-width: 46ch; }
.row__text .eyebrow { display: flex; align-items: center; gap: 9px; }
.row__text h3 { font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.1; letter-spacing: -.032em; }
.row__text p { color: var(--dim); font-size: 1.02rem; line-height: 1.64; }
.row__list { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.row__list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.row__list svg { flex: none; margin-top: 5px; color: var(--accent-text); }
.row__link {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-text); font-size: 15px; font-weight: 500;
}
.row__link svg { transition: transform .3s var(--ease); }
.row__link:hover svg { transform: translateX(4px); }

/* moldura de imagem — recebe foto real; até lá mostra a padronagem da marca */
.shot {
  position: relative; overflow: hidden; border-radius: 22px;
  aspect-ratio: 4/3; border: 1px solid var(--line);
  background: linear-gradient(142deg, #0B1526 0%, #060A14 58%, #0A1020 100%);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot__pattern { position: absolute; inset: 0; }
.shot__note {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(180,205,240,.5);
  display: flex; align-items: center; gap: 8px;
}
.shot__note::before { content: ""; width: 16px; height: 1px; background: currentColor; }
@media (max-width: 820px) {
  .row { grid-template-columns: 1fr; gap: 26px; }
  .row--flip .row__media { order: 0; }
  .shot { aspect-ratio: 16/10; }
}

/* --------------------------------------------------------------------------
   HERO em duas colunas: texto à esquerda, estrela em volume à direita
   -------------------------------------------------------------------------- */
.hero { text-align: left; }
.hero__wrap {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
.hero__text { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.hero__text .eyebrow { display: flex; align-items: center; gap: 10px; }
.hero h1 { max-width: 13ch; }
.hero .lede { max-width: 44ch; }
.hero .acts { justify-content: flex-start; }
.hero__star { max-width: 460px; margin-left: auto; width: 100%; }
@media (max-width: 940px) {
  .hero { text-align: center; padding-block: 116px 72px; }
  .hero__wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero__text { align-items: center; }
  .hero__text .eyebrow { justify-content: center; }
  .hero h1, .hero .lede { max-width: 22ch; }
  .hero .lede { max-width: 48ch; }
  .hero .acts { justify-content: center; }
  .hero__star { order: -1; max-width: 260px; margin-inline: auto; }
}

/* ==========================================================================
   PÁGINAS INTERNAS
   ========================================================================== */

/* --- capa compacta de página interna --- */
.phero {
  position: relative; overflow: hidden; background: #05070E;
  padding-block: clamp(132px, 15vw, 180px) clamp(56px, 7vw, 88px);
}
.phero__glow {
  position: absolute; inset: -46% 8% auto 8%; height: 110%;
  background:
    radial-gradient(ellipse 52% 46% at 32% 14%, rgba(6,143,255,.40), transparent 66%),
    radial-gradient(ellipse 42% 42% at 74% 22%, rgba(60,67,237,.36), transparent 68%);
  filter: blur(46px); pointer-events: none;
}
.phero .wrap { position: relative; display: flex; flex-direction: column; gap: 20px; }
.phero h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); line-height: 1.04; max-width: 19ch; }
.phero .lede { max-width: 56ch; }
.phero .acts { margin-top: 14px; }

/* trilha de navegação */
.crumb {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-family: "Geist Mono", monospace; font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: #5A6780;
}
.crumb a { color: #8493AC; transition: color .25s; }
.crumb a:hover { color: #4FB6FF; }
.crumb svg { opacity: .5; }

/* --- texto corrido (quem somos, jurídico) --- */
.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 22px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.16; margin-top: 22px; }
.prose h3 { font-size: 1.16rem; font-weight: 500; letter-spacing: -.022em; margin-top: 14px; }
.prose p { color: var(--dim); font-size: 1.03rem; line-height: 1.72; }
.prose strong { color: var(--ink-2); font-weight: 500; }
.prose ul { display: flex; flex-direction: column; gap: 10px; }
.prose ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--dim); font-size: 1.01rem; line-height: 1.6;
}
.prose ul li::before {
  content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-text); margin-top: 11px;
}
.prose ol { counter-reset: n; display: flex; flex-direction: column; gap: 10px; padding: 0; list-style: none; }
.prose ol li { counter-increment: n; display: flex; gap: 13px; color: var(--dim); font-size: 1.01rem; line-height: 1.6; }
.prose ol li::before {
  content: counter(n, decimal-leading-zero); flex: none;
  font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent-text);
  padding-top: 5px; letter-spacing: .06em;
}
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 12px 0; width: 100%; }
.prose__aside {
  border-left: 2px solid var(--accent-text); padding: 4px 0 4px 22px;
  color: var(--ink-2); font-size: 1.06rem; line-height: 1.6; font-weight: 300;
}

/* --- "você se identifica com alguma dessas situações?" --- */
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.pain {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px; border-radius: 15px;
  background: var(--ground-2); border: 1px solid var(--line);
  color: var(--ink-2); font-size: 15.4px; line-height: 1.52;
}
.pain svg { flex: none; margin-top: 3px; color: #E0714F; opacity: .85; }
.pains__close {
  margin-top: clamp(32px, 4vw, 46px); text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35;
  font-weight: 300; letter-spacing: -.028em; color: var(--ink);
  max-width: 34ch; margin-inline: auto;
}
.pains__close b { font-weight: 500; }

/* --- blocos "o que entregamos na prática" --- */
.deliver { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.deliver__item {
  position: relative; padding: 28px 26px 30px; border-radius: 18px;
  border: 1px solid var(--line); background: var(--ground-2);
  display: flex; flex-direction: column; gap: 13px;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.deliver__item:hover { border-color: var(--ghost-border-hover); transform: translateY(-3px); }
.deliver__n { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .18em; color: var(--accent-text); }
.deliver__item h3 { font-size: 1.16rem; font-weight: 500; letter-spacing: -.024em; line-height: 1.28; }
.deliver__item ul { display: flex; flex-direction: column; gap: 8px; }
.deliver__item li { display: flex; gap: 11px; align-items: flex-start; color: var(--dim); font-size: 14.6px; line-height: 1.5; }
.deliver__item li svg { flex: none; margin-top: 4px; color: var(--accent-text); opacity: .9; }
@media (max-width: 780px) { .deliver { grid-template-columns: 1fr; } }

/* --- públicos do ecossistema --- */
.publics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.public {
  --c1: var(--blue-lit);
  position: relative; overflow: hidden; padding: 32px 30px 34px; border-radius: 20px;
  border: 1px solid var(--line); background: var(--ground-2);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .45s var(--ease), transform .45s var(--ease);
}
.public::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--c1), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease);
}
.public:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c1) 38%, var(--line)); }
.public:hover::after { transform: scaleX(1); }
.public__mark { display: flex; align-items: center; gap: 11px; color: var(--c1); }
.public__mark span { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .18em; }
.public h3 { font-size: 1.36rem; font-weight: 500; letter-spacing: -.028em; }
.public > p { color: var(--dim); font-size: 15px; line-height: 1.6; }
.public ul { display: flex; flex-direction: column; gap: 9px; }
.public li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 14.6px; line-height: 1.5; }
.public li svg { flex: none; margin-top: 4px; color: var(--c1); }
.public__close { margin-top: 4px; color: var(--ink-2); font-size: 14.6px; font-weight: 500; font-style: italic; }
@media (max-width: 780px) { .publics { grid-template-columns: 1fr; } }

/* --- parceiros do ecossistema --- */
.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 14px; }
.partner {
  padding: 28px 26px 30px; border-radius: 18px;
  border: 1px solid var(--line); background: var(--ground-2);
  display: flex; flex-direction: column; gap: 12px;
}
.partner h3 { font-size: 1.12rem; font-weight: 500; letter-spacing: -.022em; }
.partner__kind { font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); }
.partner p { color: var(--dim); font-size: 14.5px; line-height: 1.56; }
.partner ul { display: flex; flex-direction: column; gap: 7px; }
.partner li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 14.2px; line-height: 1.48; }
.partner li svg { flex: none; margin-top: 4px; color: var(--accent-text); opacity: .85; }
.partner__note { margin-top: auto; padding-top: 12px; color: var(--ink-2); font-size: 14px; font-style: italic; }

/* --- listas em duas colunas --- */
.cols2 { columns: 2; column-gap: 46px; }
.cols2 li { break-inside: avoid; display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; color: var(--ink-2); font-size: 15.4px; line-height: 1.5; }
.cols2 li svg { flex: none; margin-top: 4px; color: var(--accent-text); }
@media (max-width: 700px) { .cols2 { columns: 1; } }

/* --- blog --- */
.blogcats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(34px, 4vw, 50px); }
.blogcat {
  padding: 9px 17px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--ground-2); color: var(--ink-2); font-size: 13.8px;
  transition: border-color .25s, background .25s, color .25s;
}
.blogcat:hover, .blogcat[aria-current="true"] { border-color: var(--accent-text); color: var(--accent-text); background: var(--ghost-bg-hover); }
.postgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.postgrid .post { min-height: 240px; }
.postgrid .post p { color: var(--dim); font-size: 14.4px; line-height: 1.55; }

/* newsletter */
.news {
  border: 1px solid var(--line); border-radius: 22px; background: var(--ground-2);
  padding: clamp(30px, 4vw, 46px); display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 46px); align-items: center;
}
.news h3 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); letter-spacing: -.03em; line-height: 1.16; }
.news p { color: var(--dim); font-size: 15px; line-height: 1.58; margin-top: 12px; }
.news form { display: flex; gap: 10px; flex-wrap: wrap; }
.news input { flex: 1 1 200px; }
@media (max-width: 800px) { .news { grid-template-columns: 1fr; } }

/* --- formulário --- */
.formwrap { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; color: var(--ink-2); font-weight: 500; letter-spacing: -.01em; }
.field label span { color: var(--faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--ground-2); color: var(--ink);
  font-family: inherit; font-size: 15px; line-height: 1.5;
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-text); background: var(--ground);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238493AC' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13.2px; color: var(--dim); line-height: 1.5; }
.form__consent input { width: 16px; height: 16px; flex: none; margin-top: 2px; accent-color: #068FFF; }
.form__consent a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.form .btn { align-self: flex-start; margin-top: 4px; }
.aside-card {
  padding: 30px 28px; border-radius: 20px; border: 1px solid var(--line);
  background: var(--ground-2); display: flex; flex-direction: column; gap: 16px;
}
.aside-card h3 { font-size: 1.1rem; font-weight: 500; letter-spacing: -.022em; }
.aside-card ul { display: flex; flex-direction: column; gap: 10px; }
.aside-card li { display: flex; gap: 11px; align-items: flex-start; color: var(--dim); font-size: 14.4px; line-height: 1.5; }
.aside-card li svg { flex: none; margin-top: 4px; color: var(--accent-text); }
.aside-card + .aside-card { margin-top: 14px; }
@media (max-width: 860px) { .formwrap { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* --- nota discreta --- */
.notecard {
  border: 1px dashed var(--line); border-radius: 16px; padding: 22px 24px;
  color: var(--faint); font-size: 13.4px; line-height: 1.6;
}

/* --- item ativo na navegação --- */
.nav__menu a[aria-current="page"] { color: #4FB6FF; }

/* ==========================================================================
   O QUE É A MEDFORCE — bloco de contraste "não é / é"
   O recurso mais claro do documento: definir por oposição.
   ========================================================================== */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vs {
  position: relative; overflow: hidden;
  padding: 34px 32px 36px; border-radius: 20px;
  border: 1px solid var(--line); background: var(--ground-2);
  display: flex; flex-direction: column; gap: 20px;
}
.vs__tag {
  font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; display: flex; align-items: center; gap: 10px;
}
.vs ul { display: flex; flex-direction: column; gap: 15px; }
.vs li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; line-height: 1.45; }
.vs li svg { flex: none; margin-top: 4px; }

.vs--nao { background: transparent; }
.vs--nao .vs__tag { color: var(--faint); }
.vs--nao li { color: var(--dim); }
.vs--nao li svg { color: var(--faint); opacity: .8; }

.vs--sim { border-color: color-mix(in srgb, var(--blue) 34%, var(--line)); }
.vs--sim::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(152deg, rgba(6,143,255,.10), transparent 58%);
}
.vs--sim > * { position: relative; z-index: 1; }
.vs--sim .vs__tag { color: var(--accent-text); }
.vs--sim li { color: var(--ink-2); font-weight: 400; }
.vs--sim li svg { color: var(--accent-text); }

@media (max-width: 760px) { .versus { grid-template-columns: 1fr; } }

/* frase de fechamento do bloco */
.definicao {
  margin-top: clamp(38px, 5vw, 58px); text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.22;
  font-weight: 300; letter-spacing: -.032em; color: var(--ink);
  max-width: 26ch; margin-inline: auto;
}
.definicao b { font-weight: 500; }


/* ==========================================================================
   PADRONAGEM MAIS SUTIL
   A estrela de fundo é textura, não motivo. Baixa opacidade + máscara que
   abre no centro, onde o texto vive.
   ========================================================================== */
.starfield {
  opacity: .6;
  -webkit-mask-image: radial-gradient(ellipse 62% 54% at 50% 50%, transparent 12%, #000 72%);
  mask-image: radial-gradient(ellipse 62% 54% at 50% 50%, transparent 12%, #000 72%);
}
.shot__pattern { opacity: .5; }

/* ==========================================================================
   DIAGRAMAS NO CELULAR
   Texto dentro de SVG encolhe junto com o viewBox e fica ilegível em tela
   pequena. Abaixo de 760px os dois diagramas trocam por uma versão em HTML,
   onde o tipo obedece ao tamanho da fonte e não à escala do desenho.
   ========================================================================== */
@media (min-width: 761px) {
  .so-mob { display: none !important; }
}
@media (max-width: 760px) {
  .so-desk { display: none !important; }
}

/* --- cinco forças, versão vertical --- */
.pilares-mob { display: flex; flex-direction: column; gap: 2px; }
.pilares-mob__topo {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px; margin-bottom: 10px;
  border-bottom: 2px solid transparent;
  border-image: var(--grad) 1;
}
.pilares-mob__topo span {
  font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink);
}
.pilares-mob__topo svg { flex: none; color: var(--accent-text); }
.pilar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--line);
}
.pilar:last-child { border-bottom: 0; }
.pilar__barra { flex: none; width: 6px; align-self: stretch; border-radius: 3px; background: var(--c); }
.pilar__n {
  flex: none; font-family: "Geist Mono", monospace; font-size: 12px;
  letter-spacing: .14em; color: var(--c); padding-top: 4px; font-weight: 600;
}
.pilar__nome { font-size: 1.05rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.25; }

/* --- ecossistema, versão empilhada --- */
.rede-mob { display: flex; flex-direction: column; align-items: center; gap: 0; }
.rede-mob__nucleo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 26px 34px; border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--blue) 40%, var(--line));
  background: var(--ground-2);
}
.rede-mob__nucleo svg { width: 30px; height: 64px; }
.rede-mob__nucleo span {
  font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: .22em; color: var(--dim);
}
.rede-mob__fio { width: 1px; height: 26px; background: linear-gradient(180deg, var(--blue), transparent); }
.rede-mob__nos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
.rede-mob__nos div {
  padding: 15px 14px; border-radius: 14px; text-align: center;
  border: 1px solid var(--line); background: var(--ground-2);
  font-size: 14.5px; font-weight: 500; line-height: 1.3; color: var(--ink);
}
.rede-mob__nos div:last-child { grid-column: span 2; }

/* ==========================================================================
   AJUSTES GERAIS DE CELULAR
   ========================================================================== */
@media (max-width: 620px) {
  .h-xl { font-size: clamp(2.3rem, 11vw, 3rem); letter-spacing: -.032em; }
  .h-lg { font-size: clamp(1.75rem, 8vw, 2.3rem); letter-spacing: -.028em; }
  .lede { font-size: 1rem; }

  /* números: um por linha, com respiro */
  .stat b { font-size: 2.4rem; }
  .stat span { font-size: 14px; max-width: none; }

  /* cards e blocos ganham ar */
  .force { padding: 24px 22px 26px; }
  .force h3 { font-size: 1.24rem; }
  .deliver__item, .public, .partner { padding: 24px 22px 26px; }
  .public h3 { font-size: 1.22rem; }
  .quote { padding: 26px 24px 24px; }
  .tile { padding: 22px 20px 24px; }

  /* frase forte não pode virar bloco de texto */
  .pull p { font-size: 1.5rem; max-width: 16ch; }
  .definicao { font-size: 1.35rem; max-width: 20ch; }
  .pains__close { font-size: 1.2rem; }

  /* trilho de etapas: primeira linha do gradiente encurta */
  .rail li { padding: 30px 0 26px; }
  .rail li.in::before { width: 44px; }

  /* time: dois por linha, o líder ocupa a largura */
  .people { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .person--lead { grid-column: span 2; }
  .person--lead .person__ph { aspect-ratio: 16/9; }
  .person b { font-size: 13.5px; }
  .person span { font-size: 11.8px; }

  /* barra de navegação mais compacta */
  .nav .wrap { height: 60px; }
  .nav__logo img { width: 100px; }
  html { scroll-padding-top: 68px; }

  /* consentimento ocupa a largura */
  .cookies { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 18px 20px 16px; }
}

/* ========================================================================== 
   REFINAMENTO MOBILE 2026
   Preserva a linguagem Obsidiana Azul, reduz a interferência da interface e
   prioriza leitura, áreas de toque e continuidade narrativa entre 320–760 px.
   ========================================================================== */
@media (max-width: 760px) {
  :root {
    --pad: clamp(18px, 5.4vw, 24px);
    --gap-sec: clamp(62px, 16vw, 86px);
  }

  html { scroll-padding-top: 72px; }
  body { font-size: 16px; line-height: 1.56; }
  body.nav-open { overflow: hidden; }

  .section--tight { padding-block: 44px; }
  .section--grid::before { background-size: 54px 54px; }
  .sec-head { gap: 14px; margin-bottom: 34px; }
  .sec-head--split { align-items: flex-start; gap: 24px; }
  .eyebrow { font-size: 10px; letter-spacing: .19em; line-height: 1.55; }
  .h-lg { font-size: clamp(1.9rem, 8.4vw, 2.4rem); line-height: 1.05; }
  .h-md { font-size: 1.48rem; }
  .lede { font-size: .98rem; line-height: 1.58; }

  .btn {
    min-height: 48px; padding: 12px 20px;
    justify-content: center; text-align: center;
    font-size: 14.5px; line-height: 1.2;
  }
  .acts { width: 100%; gap: 10px; }
  .acts .btn { flex: 1 1 100%; width: 100%; }

  .nav .wrap { height: 64px; }
  .nav__logo img { width: 106px; }
  .nav__burger { width: 44px; height: 44px; border-radius: 12px; }
  .nav__burger[aria-expanded="true"] { background: rgba(79,182,255,.09); border-color: #30435F; }
  .nav__menu.open {
    top: 64px; padding: 10px var(--pad) 18px;
    max-height: calc(100svh - 64px); overflow-y: auto;
    box-shadow: 0 28px 50px -34px rgba(0,0,0,.95);
  }
  .nav__menu.open a {
    min-height: 48px; padding: 12px 2px;
    display: flex; align-items: center;
    border-bottom: 1px solid #111A2B;
    font-size: 16px;
  }
  .nav__menu.open a:last-child { border-bottom: 0; }

  .hero {
    min-height: auto; padding-block: 86px 54px;
    align-items: flex-start;
  }
  .hero__wrap { gap: 20px; }
  .hero__text { gap: 18px; width: 100%; }
  .hero__star { max-width: clamp(148px, 43vw, 190px); }
  .hero h1 { max-width: 11.5ch; font-size: clamp(2.45rem, 11.8vw, 3.35rem); line-height: .98; }
  .hero .lede { max-width: 34ch; font-size: .97rem; line-height: 1.56; }
  .hero__text .eyebrow { max-width: 31ch; }
  .hero__glow { inset: -20% -16% auto; height: 74%; filter: blur(34px); }
  .hero__grid { background-size: 54px 54px; }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    min-width: 0; padding: 22px 14px;
    border: 0; border-bottom: 1px solid var(--line);
  }
  .stat:nth-child(odd) { padding-left: 0; padding-right: 18px; border-right: 1px solid var(--line); }
  .stat:nth-child(even) { padding-left: 18px; padding-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat b { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .stat span { margin-top: 9px; font-size: 12.8px; line-height: 1.4; }

  .pains { grid-template-columns: 1fr; gap: 9px; }
  .pain { padding: 17px 16px; gap: 12px; border-radius: 14px; font-size: 14.5px; }

  .versus { gap: 10px; }
  .vs { padding: 24px 20px 26px; border-radius: 17px; gap: 16px; }
  .vs ul { gap: 12px; }
  .vs li { gap: 11px; font-size: 14.8px; line-height: 1.46; }

  .pilar { gap: 12px; padding: 15px 0; }
  .pilar__nome { font-size: 1rem; }

  .deliver { gap: 10px; }
  .deliver__item,
  .deliver__item[style] { grid-column: 1 / -1 !important; }
  .deliver__item, .public, .partner { padding: 21px 18px 23px; border-radius: 16px; }
  .deliver__n { font-size: 10px; letter-spacing: .14em; line-height: 1.5; }
  .deliver__item h3 { font-size: 1.12rem; }
  .deliver__item li { font-size: 14.2px; }

  .rail li { padding: 26px 0 24px; }
  .rail h3 { font-size: 1.08rem; margin-top: 11px; }
  .rail p { font-size: 14.2px; }

  .checks { gap: 0; }
  .checks li { min-height: 48px; padding-block: 12px; }

  .tiles { border-radius: 16px; }
  .tile { min-height: 68px; padding: 20px 17px; align-items: center; }
  .tile svg { margin-top: 0; }

  .people { gap: 18px 10px; }
  .person__ph { border-radius: 13px; }
  .person figcaption { margin-top: 9px; }
  .person b { line-height: 1.25; }

  .quotes { grid-template-columns: 1fr; gap: 10px; }
  .quote { padding: 22px 20px; border-radius: 16px; gap: 16px; }
  .quote p { font-size: .98rem; }

  .rede-mob__nucleo { padding: 22px 30px; }
  .rede-mob__nos { gap: 7px; }
  .rede-mob__nos div { padding: 14px 10px; font-size: 13.8px; }

  .phero { padding-block: 108px 52px; }
  .phero .wrap { gap: 16px; }
  .phero h1 { font-size: clamp(2rem, 9.4vw, 2.55rem); line-height: 1.03; }
  .crumb { font-size: 9.5px; letter-spacing: .13em; }

  .blogcats {
    flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain;
    margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
    padding-bottom: 6px; scrollbar-width: none;
  }
  .blogcats::-webkit-scrollbar { display: none; }
  .blogcat { flex: 0 0 auto; min-height: 44px; display: inline-flex; align-items: center; }
  .postgrid { grid-template-columns: 1fr; gap: 10px; }
  .postgrid .post { min-height: 0; }
  .post { padding: 22px 20px 23px; min-height: 0; border-radius: 16px; }
  .post__more { margin-top: 10px; }

  .news { padding: 24px 20px; border-radius: 17px; }
  .news form { flex-direction: column; }
  .news input { flex-basis: auto; min-height: 48px; font-size: 16px; }
  .news .btn { width: 100%; }

  .formwrap { gap: 38px; }
  .form { gap: 16px; }
  .field input, .field select, .field textarea {
    min-height: 50px; padding: 13px 14px; border-radius: 11px; font-size: 16px;
  }
  .field textarea { min-height: 126px; }
  .form__consent { font-size: 12.8px; }
  .form .btn { width: 100%; align-self: stretch; }
  .aside-card { padding: 22px 20px; border-radius: 17px; }

  .prose { gap: 18px; }
  .prose h2 { margin-top: 16px; font-size: 1.55rem; }
  .prose h3 { margin-top: 10px; }
  .prose p, .prose ul li, .prose ol li { font-size: .98rem; line-height: 1.68; }
  .prose__aside { padding-left: 17px; font-size: 1rem; }

  .foot { padding-block: 54px 24px; }
  .foot__top { gap: 34px; }
  .foot__logo img { width: 118px; height: auto; }
  .foot h4 { margin-bottom: 14px; }
  .foot li { margin-bottom: 9px; }
  .foot__bar { margin-top: 40px; padding-top: 20px; gap: 10px 18px; }

  .cookies {
    left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom));
    width: auto; padding: 14px 15px 13px; border-radius: 16px; gap: 11px;
  }
  .cookies p { font-size: 12.6px; line-height: 1.45; }
  .cookies__acts { flex-wrap: nowrap; gap: 8px; }
  .cookies .btn { min-height: 42px; width: auto; padding: 9px 14px; font-size: 13px; white-space: nowrap; }
}

@media (max-width: 360px) {
  :root { --pad: 16px; }
  .hero { padding-top: 80px; }
  .hero__star { max-width: 138px; }
  .hero h1 { font-size: 2.25rem; }
  .hero__text .eyebrow { max-width: 27ch; }
  .stat b { font-size: 1.78rem; }
  .stat span { font-size: 12.2px; }
  .cookies { left: 8px; right: 8px; padding: 12px 13px; }
  .cookies p { font-size: 12.1px; }
  .cookies .btn { padding-inline: 11px; font-size: 12.4px; }
}

/* ========================================================================== 
   SAFARI iOS — viewport real, notch, barras dinâmicas e cache renovado
   ========================================================================== */
html, body { width: 100%; max-width: 100%; }
body { position: relative; }
.wrap { min-width: 0; }
.nav__logo, .nav__menu, .hero__text, .hero__star,
.sec-head, .formwrap > *, .news > *, .foot__top > * { min-width: 0; }

@supports (padding: max(0px)) {
  .wrap {
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right));
  }
}

@media (max-width: 760px) {
  .nav {
    padding-top: env(safe-area-inset-top, 0px);
    background: linear-gradient(180deg, rgba(5,7,14,.72), rgba(5,7,14,0));
  }
  .nav.stuck { background: rgba(5,7,14,.94); }
  .nav__menu.open { top: calc(64px + env(safe-area-inset-top, 0px)); }
  .hero { padding-top: calc(86px + env(safe-area-inset-top, 0px)); }
  .phero { padding-top: calc(108px + env(safe-area-inset-top, 0px)); }
  .hero .reveal { opacity: 1; transform: none; }

  .hero__wrap, .hero__text, .hero .acts,
  .stats, .pains, .versus, .deliver, .rail,
  .tiles, .people, .quotes, .publics, .partners,
  .postgrid, .news, .formwrap, .foot__top { max-width: 100%; }

  .hero h1, .hero .lede, .phero h1, .phero .lede,
  .force h3, .deliver__item h3, .public h3,
  .partner h3, .post h3, .prose h2, .prose h3,
  .foot p, .foot a, .foot address {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blogcats {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .blogcat { scroll-snap-align: start; }

  .cookies {
    left: max(10px, env(safe-area-inset-left, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 84px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@supports not (height: 100dvh) {
  @media (max-width: 760px) {
    .cookies { max-height: calc(100vh - 84px); }
  }
}

@media (max-width: 390px) and (max-height: 700px) {
  .hero { padding-top: calc(76px + env(safe-area-inset-top, 0px)); }
  .hero__wrap { gap: 12px; }
  .hero__star { display: none; }
  .hero__text { gap: 14px; }
  .hero h1 { font-size: clamp(2.1rem, 11vw, 2.55rem); }
  .hero .lede { font-size: .91rem; line-height: 1.48; }

  .phero { padding-top: calc(92px + env(safe-area-inset-top, 0px)); padding-bottom: 42px; }

  .cookies { padding: 11px 12px 10px; gap: 8px; border-radius: 14px; }
  .cookies p { font-size: 11.7px; line-height: 1.35; }
  .cookies .btn { min-height: 38px; padding: 8px 12px; font-size: 12.4px; }
}

/* ---------- artigo do blog ---------- */
.article__meta { font-family: "Geist Mono", monospace; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.article { max-width: 44rem; margin-inline: auto; }
.article > * + * { margin-top: 1.15em; }
.article h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.14; letter-spacing: -.02em;
  margin-top: 2.1em; margin-bottom: .1em;
}
.article h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); font-weight: 500; margin-top: 1.7em; }
.article p, .article li { font-size: clamp(1.02rem, 1.35vw, 1.12rem); line-height: 1.72; color: var(--ink-2); font-weight: 300; }
.article strong { color: var(--ink); font-weight: 500; }
.article ul, .article ol { padding-left: 1.15em; display: grid; gap: .6em; }
.article ul li { list-style: none; position: relative; padding-left: .2em; }
.article ul li::before {
  content: ""; position: absolute; left: -.95em; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: #E0714F;
}
.article ol li { list-style: decimal; }
.article blockquote {
  margin: 2em 0; padding: 22px 26px; border-left: 2px solid var(--blue);
  background: var(--ground-2); border-radius: 0 14px 14px 0;
}
.article blockquote p { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink); font-weight: 300; }
.article__table { overflow-x: auto; margin: 1.9em 0; border: 1px solid var(--line); border-radius: 14px; }
.article table { width: 100%; border-collapse: collapse; min-width: 520px; }
.article th, .article td {
  text-align: left; padding: 13px 16px; font-size: 14.4px; line-height: 1.45;
  border-bottom: 1px solid var(--line); color: var(--ink-2); font-weight: 300;
}
.article th {
  font-family: "Geist Mono", monospace; font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-text); font-weight: 500;
}
.article tr:last-child td { border-bottom: 0; }
.article__key {
  margin: 2em 0; padding: 24px 26px; border: 1px solid var(--line);
  border-radius: 16px; background: var(--ground-2);
}
.article__key h3 { margin-top: 0; }
