/* Instituto Navi — Components */

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 32px;
}
.nav__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: background .2s ease;
}
.nav__mark:hover { background: var(--primary); color: #fff; }

/* Brand (logo SVG + nome + clínica) */
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__logo {
  width: 44px;
  height: auto;
  display: block;
  color: var(--primary);
  flex-shrink: 0;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 540px) {
  .nav__logo { width: 36px; }
  .nav__brand-name { font-size: 14px; }
  .nav__brand-sub { font-size: 10px; letter-spacing: 0.14em; }
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta { height: 44px; padding: 0 22px; font-size: 12px; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__ig {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--primary);
  border: 1px solid var(--line-strong, rgba(14,40,56,.18));
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  flex-shrink: 0;
}
.nav__ig:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__inner { justify-content: space-between; }
}
@media (max-width: 768px) {
  .nav__inner { height: 64px; gap: 12px; }
  .nav__cta { height: 38px; padding: 0 14px; font-size: 11px; }
  .nav__brand-name { font-size: 16px; }
  .nav__brand-sub { font-size: 9.5px; letter-spacing: 0.18em; }
  .nav__actions { gap: 8px; }
}

/* ── HERO ── */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  height: 720px;
  display: flex;
  align-items: stretch;
}
.hero .container { width: 100%; max-width: none; padding: 0; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: inherit;
  width: 100%;
}
.hero__content {
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  padding: 64px clamp(24px, 4vw, 64px) 96px max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 100%;
}
.hero__content h1 { max-width: 22ch; }
.hero__content .hero__lead { max-width: 50ch; }
.hero__content .hero__cta { max-width: 540px; }
.hero__visual { display: flex; align-items: stretch; align-self: stretch; }
.hero h1 { font-size: clamp(32px, 3.8vw, 48px); line-height: 1.08; letter-spacing: -0.02em; }
.hero h1 em {
  font-style: normal; color: var(--primary);
  font-weight: 500;
}
.hero__lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.55;
  text-wrap: balance;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: nowrap; margin-top: 12px; }
.hero__cta .btn { padding: 0 28px; font-size: 13px; }
.hero__trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; }
.trust-stat strong {
  font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--primary);
  letter-spacing: -0.01em; line-height: 1.1;
}
.trust-stat span {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.trust-stat__div { width: 1px; height: 40px; background: var(--line-strong); }

.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(135deg,
    rgba(168,116,68,.05) 0 18px,
    rgba(168,116,68,.10) 18px 36px);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 0.22em; font-weight: 700;
  text-transform: uppercase;
  text-align: center; padding: 24px;
  gap: 10px;
}
.hero__photo-placeholder .ph-sub {
  font-size: 10px; opacity: .55; text-transform: none; letter-spacing: 0.02em;
  font-weight: 500;
}

.hero__badge {
  position: absolute;
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 0;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero__badge--tl { top: 20px; left: 20px; }
.hero__badge--br { bottom: 20px; right: 20px; }
.hero__badge-icon {
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--primary-light);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero__badge-strong {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.1;
}
.hero__badge-sub {
  font-family: var(--font-body);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__photo { max-width: 480px; margin: 0 auto; width: 100%; min-height: 320px; }
}
@media (max-width: 768px) {
  .hero { padding: 0; min-height: 0; height: auto; }
  .hero__inner { gap: 8px; }
  .hero__content {
    gap: 16px;
    padding: 24px var(--gutter) 16px var(--gutter);
    align-items: center;
    text-align: center;
  }
  .hero__content h1,
  .hero__content .hero__lead,
  .hero__content .hero__cta { max-width: 100%; }
  .hero h1 { font-size: 26px; line-height: 1.15; text-wrap: balance; }
  .hero__lead { font-size: 15px; text-wrap: balance; }
  .hero__cta {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    width: 100%;
  }
  .hero__cta .btn { width: 100%; }
  /* foto no celular: mesmo zoom do desktop */
  .hero__photo {
    min-height: 0 !important;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
  }
  .hero__img {
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1.18);
    transform-origin: center 30%;
  }
}

/* ── QUADROS (01 Para quem) ── */
.quadros { padding: var(--section-pad) 0; }
.quadros__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
.quadros__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 320px;
  height: 100%;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.quadros__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 12px 22px;
  margin-top: 20px;
  align-self: flex-start;
  border: 1.5px solid var(--primary);
  transition: background .25s ease, color .25s ease, gap .25s ease;
}
.quadros__more svg { transition: transform .25s ease; }
.quadros__card:hover .quadros__more {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  gap: 14px;
}
.quadros__card:hover .quadros__more svg { transform: translateX(4px); }
.quadros__card:hover {
  background: #fff;
  border-color: var(--primary);
}

.quadros__icon {
  width: 52px; height: 52px;
  border-radius: 0;
  background: #FFFFFF;
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 6px;
  transition: background .25s ease, color .25s ease;
}
.quadros__icon svg { width: 26px; height: 26px; }
.quadros__card:hover .quadros__icon {
  background: var(--primary);
  color: #fff;
}

.quadros__card h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  min-height: calc(17px * 1.25 * 3); /* 3 linhas pra equalizar */
}
.quadros__card p {
  color: var(--muted);
  font-size: 14.5px; line-height: 1.55;
}
.quadros__cta {
  margin-top: 48px;
  display: flex; justify-content: center;
}

@media (max-width: 1024px) {
  .quadros__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .quadros__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .quadros__grid { grid-template-columns: 1fr; }
}

/* ── DOMICILIAR (02 Por que domiciliar — dark) ── */
.domiciliar {
  padding: var(--section-pad) 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.domiciliar::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(45,74,92,.32), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(123,140,149,.18), transparent 60%);
  pointer-events: none;
}
.domiciliar__inner { position: relative; z-index: 1; }
.domiciliar .s-head h2 { color: #fff; }
.domiciliar .s-head h2 em { color: #fff; }
.domiciliar .s-head p { color: rgba(255,255,255,.78); }

.domiciliar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.domiciliar__card {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s ease, border-color .3s ease;
  overflow: hidden;
}
.domiciliar__card:hover {
  background: rgba(184,208,217,.06);
}
.domiciliar__card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.domiciliar__icon {
  width: 44px; height: 44px;
  border-radius: 0;
  background: rgba(184,208,217,.10);
  color: var(--accent-light);
  display: grid; place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.domiciliar__card:hover .domiciliar__icon {
  background: var(--accent-light);
  color: var(--ink);
  transform: scale(1.05);
}
.domiciliar__card:hover .domiciliar__num { opacity: 1; }
.domiciliar__num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0;
  line-height: 1;
  opacity: .6;
  transition: opacity .3s ease;
}
.domiciliar__card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.domiciliar__card p {
  color: rgba(255,255,255,.72);
  font-size: 15px; line-height: 1.6;
}

@media (max-width: 600px) {
  .domiciliar__grid { grid-template-columns: 1fr; }
  .domiciliar__card { padding: 28px 24px; }
}

/* ── Page Frame (overlay fixo viewport — bilhon style) ── */
.page-frame {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 80;
}
.page-frame__line { position: absolute; }
.page-frame__line--top,
.page-frame__line--bottom {
  left: 28px; right: 28px;
  height: 0;
  border-top: 1px dashed rgba(14,40,56,.12);
  mix-blend-mode: multiply;
}
.page-frame__line--top    { top: 18px; }
.page-frame__line--bottom { bottom: 18px; }
.page-frame__line--left,
.page-frame__line--right {
  top: 28px; bottom: 28px;
  width: 0;
  border-left: 1px dashed rgba(14,40,56,.12);
  mix-blend-mode: multiply;
}
.page-frame__line--left  { left: 18px; }
.page-frame__line--right { right: 18px; }
.page-frame__cross {
  position: absolute;
  width: 14px; height: 14px;
}
.page-frame__cross::before,
.page-frame__cross::after {
  content: '';
  position: absolute;
  background: rgba(14,40,56,.35);
  mix-blend-mode: multiply;
}
.page-frame__cross::before {
  left: 0; top: 50%; width: 14px; height: 1px; transform: translateY(-50%);
}
.page-frame__cross::after {
  top: 0; left: 50%; width: 1px; height: 14px; transform: translateX(-50%);
}
.page-frame__cross--tl { top: 11px; left: 11px; }
.page-frame__cross--tr { top: 11px; right: 11px; }
.page-frame__cross--bl { bottom: 11px; left: 11px; }
.page-frame__cross--br { bottom: 11px; right: 11px; }

@media (max-width: 768px) {
  .page-frame__line--top    { top: 10px; }
  .page-frame__line--bottom { bottom: 10px; }
  .page-frame__line--left   { left: 10px; }
  .page-frame__line--right  { right: 10px; }
  .page-frame__line--top, .page-frame__line--bottom { left: 18px; right: 18px; }
  .page-frame__line--left, .page-frame__line--right { top: 18px; bottom: 18px; }
  .page-frame__cross--tl { top: 5px; left: 5px; }
  .page-frame__cross--tr { top: 5px; right: 5px; }
  .page-frame__cross--bl { bottom: 5px; left: 5px; }
  .page-frame__cross--br { bottom: 5px; right: 5px; }
}

/* ──────────────────────────────────────────────────────────
   LINE SYSTEM (bilhon-style)
   1. Rails verticais fixas pelos lados do site
   2. Bordas horizontais entre seções
   3. L-markers nos 4 cantos de cada seção principal
   ────────────────────────────────────────────────────────── */

/* 1. Rails verticais fixas (sempre visíveis pelos lados) */
body { position: relative; }
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0; bottom: 0;
  width: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: difference;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1) .15s;
}
body.rails-on::before,
body.rails-on::after { transform: scaleY(1); }
body::before { left: 24px; }
body::after  { right: 24px; }

@media (max-width: 768px) {
  body::before { left: 12px; }
  body::after  { right: 12px; }
}

/* 2. Bordas horizontais entre seções principais */
.hero,
.quadros,
.domiciliar,
.equipe,
.programas,
.process,
.about,
.clinic,
.faq,
.compare,
.jornada,
.depo,
.stats,
.cobertura {
  position: relative;
  border-top: 1px solid rgba(14,40,56,.10);
}
.domiciliar, .process, .clinic { border-top-color: rgba(255,255,255,.15); }
.faq { border-bottom: 1px solid rgba(14,40,56,.10); }

/* 3. L-markers nos 4 cantos de cada seção (animáveis) */
.hero::before,
.quadros::before,
.domiciliar::before,
.equipe::before,
.programas::before,
.process::before,
.about::before,
.clinic::before,
.faq::before,
.compare::before,
.jornada::before,
.depo::before,
.stats::before,
.cobertura::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image:
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size:
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0;
  background-repeat: no-repeat;
  background-position:
    19px 0, 24px -5px,
    calc(100% - 19px) 0, calc(100% - 24px) -5px,
    19px 100%, 24px calc(100% + 5px),
    calc(100% - 19px) 100%, calc(100% - 24px) calc(100% + 5px);
  color: rgba(14,40,56,.45);
  transition: background-size 1s cubic-bezier(.2,.8,.2,1);
}
.hero.is-drawn::before,
.quadros.is-drawn::before,
.domiciliar.is-drawn::before,
.equipe.is-drawn::before,
.programas.is-drawn::before,
.process.is-drawn::before,
.about.is-drawn::before,
.clinic.is-drawn::before,
.faq.is-drawn::before,
.compare.is-drawn::before,
.jornada.is-drawn::before,
.depo.is-drawn::before,
.stats.is-drawn::before,
.cobertura.is-drawn::before {
  background-size:
    14px 1px, 1px 14px,
    14px 1px, 1px 14px,
    14px 1px, 1px 14px,
    14px 1px, 1px 14px;
}

/* Variantes em seções escuras */
.domiciliar,
.process,
.clinic { border-top-color: rgba(255,255,255,.15); }
.domiciliar::before,
.process::before,
.clinic::before { color: rgba(255,255,255,.4); }

/* Mobile — markers menores */
@media (max-width: 768px) {
  .hero::before, .quadros::before, .domiciliar::before, .equipe::before,
  .programas::before, .process::before, .about::before, .clinic::before, .faq::before {
    background-size:
      10px 1px, 1px 10px,
      10px 1px, 1px 10px,
      10px 1px, 1px 10px,
      10px 1px, 1px 10px;
    background-position:
      7px 0, 12px -3px,
      calc(100% - 7px) 0, calc(100% - 12px) -3px,
      7px 100%, 12px calc(100% + 3px),
      calc(100% - 7px) 100%, calc(100% - 12px) calc(100% + 3px);
  }
}

/* ──────────────────────────────────────────────────────────
   L-markers nos cards e botões (bilhon edge-lines)
   ────────────────────────────────────────────────────────── */

/* Cards (Quadros, Programa, Equipe item, Domiciliar, FAQ item, About photo) */
.quadros__card,
.programa,
.equipe__item,
.domiciliar__card,
.about__photo {
  position: relative;
}
.quadros__card::after,
.programa::after,
.equipe__item::after,
.domiciliar__card::after,
.about__photo::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(14,40,56,.14);
  pointer-events: none;
  z-index: 3;
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path .9s cubic-bezier(.2,.8,.2,1) .15s;
}
.quadros__card.is-drawn::after,
.programa.is-drawn::after,
.equipe__item.is-drawn::after,
.domiciliar__card.is-drawn::after,
.about__photo.is-drawn::after {
  clip-path: inset(0 0 0 0);
}

/* L-markers nos cantos dos cards (estilo bilhon) — animáveis */
.quadros__card::before,
.programa::before,
.equipe__item::before,
.domiciliar__card::before,
.about__photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  pointer-events: none;
  z-index: 4;
  background-image:
    linear-gradient(to right,  rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to bottom, rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to left,   rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to bottom, rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to right,  rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to top,    rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to left,   rgba(14,40,56,.6), rgba(14,40,56,.6)),
    linear-gradient(to top,    rgba(14,40,56,.6), rgba(14,40,56,.6));
  background-position:
    top left, top left,
    top right, top right,
    bottom left, bottom left,
    bottom right, bottom right;
  background-repeat: no-repeat;
  background-size:
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0;
  transition: background-size .85s cubic-bezier(.2,.8,.2,1);
}
.quadros__card.is-drawn::before,
.programa.is-drawn::before,
.equipe__item.is-drawn::before,
.domiciliar__card.is-drawn::before,
.about__photo.is-drawn::before {
  background-size:
    14px 1px, 1px 14px,
    14px 1px, 1px 14px,
    14px 1px, 1px 14px,
    14px 1px, 1px 14px;
}

/* Cards escuros — L em branco */
.programa--featured::after,
.domiciliar__card::after { border-color: rgba(255,255,255,.16); }
.programa--featured::before,
.domiciliar__card::before {
  background-image:
    linear-gradient(to right,  rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to left,   rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to bottom, rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to right,  rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to top,    rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to left,   rgba(255,255,255,.6), rgba(255,255,255,.6)),
    linear-gradient(to top,    rgba(255,255,255,.6), rgba(255,255,255,.6));
}
@media (prefers-reduced-motion: reduce) {
  .quadros__card::before,
  .programa::before,
  .equipe__item::before,
  .domiciliar__card::before,
  .about__photo::before {
    background-size:
      14px 1px, 1px 14px,
      14px 1px, 1px 14px,
      14px 1px, 1px 14px,
      14px 1px, 1px 14px;
    transition: none;
  }
}

/* Botões (edge marks envolta tipo bilhon) */
.btn {
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  pointer-events: none;
  background-image:
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-size:
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0,
    0 1px, 1px 0;
  background-repeat: no-repeat;
  background-position:
    0 0, 0 0,
    100% 0, 100% 0,
    0 100%, 0 100%,
    100% 100%, 100% 100%;
  color: currentColor;
  opacity: .55;
  transition: background-size .6s cubic-bezier(.2,.8,.2,1);
}
.btn.is-drawn::after,
.is-drawn .btn::after {
  background-size:
    8px 1px, 1px 8px,
    8px 1px, 1px 8px,
    8px 1px, 1px 8px,
    8px 1px, 1px 8px;
}

/* ── Blueprint frame (linhas tracejadas + cruzes nos cantos) ── */
.bp-frame {
  position: relative;
  padding: 28px;
  --bp-color: rgba(255,255,255,.28);
  --bp-cross-color: rgba(255,255,255,.6);
}
.bp-frame--light {
  --bp-color: rgba(14,40,56,.28);
  --bp-cross-color: rgba(14,40,56,.55);
}
.bp-line {
  position: absolute;
  pointer-events: none;
}
.bp-line--top,
.bp-line--bottom {
  left: 28px; right: 28px;
  height: 0;
  border-top: 1px dashed var(--bp-color);
}
.bp-line--top    { top: 14px; }
.bp-line--bottom { bottom: 14px; }
.bp-line--left,
.bp-line--right {
  top: 28px; bottom: 28px;
  width: 0;
  border-left: 1px dashed var(--bp-color);
}
.bp-line--left  { left: 14px; }
.bp-line--right { right: 14px; }

.bp-cross {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  z-index: 2;
}
.bp-cross::before,
.bp-cross::after {
  content: '';
  position: absolute;
  background: var(--bp-cross-color);
}
.bp-cross::before {
  left: 0; top: 50%;
  width: 14px; height: 1px;
  transform: translateY(-50%);
}
.bp-cross::after {
  top: 0; left: 50%;
  width: 1px; height: 14px;
  transform: translateX(-50%);
}
.bp-cross--tl { top: 7px;  left: 7px; }
.bp-cross--tr { top: 7px;  right: 7px; }
.bp-cross--bl { bottom: 7px; left: 7px; }
.bp-cross--br { bottom: 7px; right: 7px; }

/* ── EQUIPE (03) ── */
.equipe { padding: var(--section-pad) 0; }
.equipe__list {
  border-top: 1px solid var(--line);
  max-width: 980px; margin: 0 auto;
}
.equipe__row {
  display: grid;
  grid-template-columns: 80px 1fr 1.3fr 40px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease;
}
.equipe__row:hover { padding-left: 8px; }
.equipe__num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--primary);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.equipe__role {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.equipe__desc {
  color: var(--ink-2);
  font-size: 15px; line-height: 1.55;
  max-width: 56ch;
}
.equipe__arrow {
  display: grid; place-items: center;
  color: var(--muted);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.equipe__row:hover .equipe__arrow { opacity: 1; transform: translateX(4px); color: var(--primary); }

@media (max-width: 880px) {
  .equipe__row {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .equipe__row:hover { padding-left: 0; }
  .equipe__desc { grid-column: 1 / -1; padding-left: 76px; margin-top: -8px; }
  .equipe__arrow { display: none; }
}
@media (max-width: 480px) {
  .equipe__desc { grid-column: 1 / -1; padding-left: 0; }
}

/* ── PROGRAMAS (04) ── */
.programas { padding: var(--section-pad) 0; background: var(--bg-soft); }
.programas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.programa {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: flex; flex-direction: column; gap: 32px;
}
.programa--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.programa__head {
  display: flex; align-items: center; justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}
.programa__head h3 { flex: 0 1 auto; }
.programa h3 {
  font-family: var(--font-body);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.programa--featured h3 { color: #fff; }
.programa__tag {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
}
.programa__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.programa--featured .programa__list { border-top-color: rgba(255,255,255,.14); }
.programa__list li {
  display: flex; gap: 12px; align-items: center;
  font-size: 16px; color: var(--ink-2);
}
.programa--featured .programa__list li { color: rgba(255,255,255,.86); }
.programa__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.programa--featured .programa__list li::before { background: var(--accent-light); }
/* Termos do programa (investimento sob consulta + duração) */
.programa__terms {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(14,40,56,.18);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.programa--featured .programa__terms {
  border-top-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
}
.programa__terms > span:first-child {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.programa--featured .programa__terms > span:first-child { color: #fff; }

/* Badge "Mais completo" */
.programa__badge {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  background: rgba(255,255,255,.14);
  color: #fff;
  white-space: nowrap;
}
.programa__meta {
  font-size: 13.5px; color: var(--muted);
  margin-top: -12px;
}
.programa--featured .programa__meta { color: rgba(255,255,255,.6); }
.programa .btn { align-self: flex-start; }
.programa--featured .btn--primary { background: #fff; color: var(--ink); }
.programa--featured .btn--primary:hover { background: var(--primary-light); color: var(--ink); }

.programas__note {
  grid-column: 1 / -1;
  margin-top: 56px;
  font-size: 14px; color: var(--muted);
  max-width: 80ch;
  text-align: center;
  margin-left: auto; margin-right: auto;
  font-style: normal;
}

@media (max-width: 880px) {
  .programas__grid { grid-template-columns: 1fr; }
  .programa { padding: 36px 28px; }
}

/* ── FUNDADORES — Intro + About (Jennifer style) ── */
.founders-intro {
  padding: var(--section-pad) 0 48px;
  background: #fff;
}
.founders-intro .s-head { margin-bottom: 0; }
.founders-intro .s-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.about { padding: 48px 0; background: #fff; }
.about + .about { padding-bottom: var(--section-pad); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: stretch;
}
.about--reverse .about__inner {
  grid-template-columns: 1.15fr 1fr;
}
.about--reverse .about__visual { order: 2; }
.about__visual { display: flex; }
.about__photo {
  position: relative;
  width: calc(100% - 24px);
  margin: 12px;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid rgba(26,22,18,.14);
  outline: 1px solid rgba(168,116,68,.28);
  outline-offset: 12px;
  aspect-ratio: 4/5;
  min-height: 0;
}
.about__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  background: var(--bg-soft);
}
.about__photo-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    rgba(45,74,92,.06) 0 14px,
    rgba(45,74,92,.10) 14px 28px);
  display: flex; align-items: flex-end; padding: 18px;
}
.about__photo-placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--primary-dark);
  background: rgba(255,255,255,.92);
  padding: 6px 10px;
  border-radius: 0;
}
.about__content {
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
}
.about__content h2 {
  font-family: var(--font-display);
  margin: 4px 0 0;
}
.about__role {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #899BA3);
  margin-top: -8px;
  text-wrap: balance;
  display: inline-block;
}
.about__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 56ch;
}
.about__creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.about__creds > div { display: flex; flex-direction: column; gap: 4px; }
.about__creds strong {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about__creds span {
  font-size: 13px;
  color: var(--muted);
}
.about__cta { align-self: flex-start; margin-top: 12px; }

@media (max-width: 1024px) {
  .about__inner,
  .about--reverse .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about--reverse .about__visual { order: 0; }
  .about__photo { min-height: 380px; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .about__creds { grid-template-columns: 1fr; gap: 14px; }
}

/* ── COMO FUNCIONA — PROCESS (Jennifer dark) ── */
.process { padding: var(--section-pad) 0; }
.process__list {
  list-style: none;
  max-width: 920px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.12);
}
.process__step {
  display: grid;
  grid-template-columns: 96px 1fr 40px;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: padding .25s ease;
}
.process__step:hover { padding-left: 8px; }
.process__num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 500;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.process__content h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.process__content p {
  color: rgba(255,255,255,.7);
  font-size: 15px; line-height: 1.55;
  max-width: 60ch;
}
.process__ico {
  display: grid; place-items: center;
  color: rgba(255,255,255,.8);
  transition: color .25s ease, transform .25s ease;
}
.process__step:hover .process__ico { color: #fff; transform: translateX(4px); }
.section-cta { display: flex; justify-content: center; margin-top: 48px; }

@media (max-width: 760px) {
  .process__step { grid-template-columns: 64px 1fr; gap: 18px; padding: 24px 0; }
  .process__step:hover { padding-left: 0; }
  .process__num { font-size: 32px; }
  .process__ico { display: none; }
}

/* ── AUTORIDADE — CLINIC (split bg + photo) ── */
.clinic {
  padding: 0;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(45,74,92,.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(123,140,149,.16), transparent 60%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.clinic__inner { position: relative; z-index: 1; }
.clinic__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.clinic__text {
  padding: 80px 56px;
  display: flex; flex-direction: column; gap: 20px;
  justify-content: center;
  max-width: 720px;
}
.clinic__text h2 {
  color: #fff;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.clinic__text h2 em {
  font-style: normal;
  color: var(--accent-light);
  font-weight: 500;
}
.clinic__text p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 56ch;
}
.clinic__pilares {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.clinic__pilares li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.clinic__pilares-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--accent-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.clinic__pilares li > div { display: flex; flex-direction: column; gap: 3px; }
.clinic__pilares strong {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.clinic__pilares span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}
.clinic__cta {
  align-self: flex-start;
  margin-top: 12px;
  background: #fff;
  color: var(--ink);
}
.clinic__cta:hover { background: var(--accent-light); color: var(--ink); transform: translateY(-1px); }
.clinic__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
}
.clinic__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 56px;
}
.clinic__img--placeholder {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg,
      rgba(45,74,92,.06) 0 18px,
      rgba(45,74,92,.10) 18px 36px);
}
.clinic__img--placeholder span {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--primary-dark);
  background: rgba(255,255,255,.92);
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid var(--line);
}

/* Instituições e registros */
.clinic__registros {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.035);
  border-top: 1px dashed rgba(255,255,255,.16);
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.clinic__registros-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px 32px;
}
.clinic__registro {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.clinic__registro strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.clinic__registro span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.55);
}

@media (max-width: 1024px) {
  .clinic__inner { grid-template-columns: 1fr; }
  .clinic__text { padding: 64px 24px; max-width: 100%; }
  .clinic__media { min-height: 360px; }
  .clinic__registros { padding: 32px 24px; }
}
@media (max-width: 880px) {
  /* Registros centralizados, divididos por linha tracejada em vez de borda lateral */
  .clinic__registros-list { grid-template-columns: 1fr; gap: 0; }
  .clinic__registro {
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px dashed rgba(255,255,255,.16);
    align-items: center;
    text-align: center;
    gap: 5px;
  }
  .clinic__registro:last-child { border-bottom: 0; }
  .clinic__registro strong { font-size: 16px; }
}
@media (max-width: 520px) {
  .clinic__creds { grid-template-columns: 1fr; gap: 20px; }
}

/* ── FAQ (08) ── */
/* ── ATENDIMENTO v3 — Cards diferenciados (dark + cream) ── */
/* ── COMPARATIVO v2 — empilhado vertical ── */
.cmp2 {
  display: flex; flex-direction: column;
  gap: 20px;
  max-width: 1040px; margin: 0 auto;
}
.cmp2__block {
  border: 1px solid var(--line-strong);
  padding: 36px 40px 32px;
  background: #fff;
  transition: border-color .25s ease;
}
.cmp2__block--b {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cmp2__head {
  display: flex; flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-strong);
}
.cmp2__block--b .cmp2__head { border-bottom-color: rgba(255,255,255,.12); }
.cmp2__tag {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.cmp2__tag--b { color: var(--accent-light); }
.cmp2__block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cmp2__block--b h3 { color: #fff; }
.cmp2__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.cmp2__item {
  display: flex; gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.cmp2__block--b .cmp2__item { border-bottom-color: rgba(255,255,255,.1); }
.cmp2__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.cmp2__icon--minus {
  background: rgba(110,102,96,.12);
  color: var(--muted);
}
.cmp2__icon--check {
  background: var(--primary);
  color: #fff;
}
.cmp2__text {
  display: flex; flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cmp2__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.cmp2__block--b .cmp2__label { color: var(--accent-light); }
.cmp2__value {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
}
.cmp2__block--b .cmp2__value { color: rgba(255,255,255,.88); }

@media (max-width: 760px) {
  .cmp2__list { grid-template-columns: 1fr; }
  .cmp2__block { padding: 28px 24px; }
}

/* ── FOOTER v2 — Grid 3 colunas com logo gigante ── */
.foot2 {
  background: #fff;
  color: var(--ink);
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.foot2 > .container { position: relative; z-index: 2; }
.foot2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(0,0,0,.07);
}
.foot2__col {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(0,0,0,.07);
}
.foot2__col:last-child { border-right: 0; }
.foot2__col--last { padding-right: 36px; }
.foot2__h {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.foot2__addr {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0;
}
.foot2__btn {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  height: 44px; padding: 0 22px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 8px;
  transition: background .2s ease, transform .2s ease;
}
.foot2__btn:hover { background: var(--primary); transform: translateY(-1px); }
.foot2__btn svg { transition: transform .2s ease; }
.foot2__btn:hover svg { transform: translate(3px, -3px); }
.foot2__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}
.foot2__phil {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}
.foot2__social {
  display: flex; gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}
.foot2__sicon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ink-2);
  border: 1px solid rgba(0,0,0,.07);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.foot2__sicon:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.foot2__sicon--accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.foot2__sicon--accent:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.foot2__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 12px 0 6px;
}
.foot2__num sup {
  font-size: .45em;
  color: var(--primary);
  vertical-align: top;
}
.foot2__sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 22ch;
}
.foot2__hours {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 500;
}

.foot2__nav {
  display: flex; justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  margin-top: 0;
  border-left: 1px solid rgba(0,0,0,.07);
  border-right: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
}
.foot2__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.foot2__nav a:hover { color: var(--primary); }

.foot2__brand {
  position: absolute;
  left: 0; right: 0; bottom: -3vw;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 24vw, 360px);
  line-height: .8;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: .045;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.foot2__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding: 28px 0 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}
.foot2__links { display: flex; gap: 22px; }
.foot2__links a {
  color: var(--muted);
  font-size: 12px;
  transition: color .2s ease;
}
.foot2__links a:hover { color: var(--primary); }

@media (max-width: 880px) {
  .foot2__grid { grid-template-columns: 1fr; }
  .foot2__col {
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
  }
  .foot2__col:last-child { border-bottom: 0; }
  .foot2__col--last { padding-right: 28px; }
  .foot2__nav { gap: 14px 24px; padding: 28px; }
}

/* ── COMO FUNCIONA · CARDS GLASS ── */
.cf-cards {
  background: var(--primary); /* verde-petróleo */
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cf-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.08) 0%, transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.05) 0%, transparent 45%);
  pointer-events: none;
}
.cf-cards > .container { position: relative; z-index: 1; }
.cf-cards__head { margin-bottom: 56px; }
.cf-cards__head h2 { color: #fff; }
.cf-cards__head h2 em { color: #fff; font-weight: 500; }
.cf-cards__head p { color: rgba(255,255,255,.72); font-size: 16px; max-width: 44ch; text-wrap: balance; }
.cf-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.cf-card {
  position: relative;
  padding: 32px 24px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 340px;
  height: 100%;
}
.cf-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  background: #fff;
}
.cf-card__num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: rgba(17,118,110,.10);
  letter-spacing: -0.04em;
}
.cf-card__ico {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  background: rgba(17,118,110,.10);
  color: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
}
.cf-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink) !important;
  opacity: 1 !important;
  margin: 4px 0 0;
  padding-right: 50px;
  min-height: calc(20px * 1.2 * 3);
}
.cf-card__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted) !important;
  opacity: 1 !important;
  margin: 0;
  flex: 1;
}
/* garante que o em da headline (verde-petróleo) seja branco */
.cf-cards .cf-cards__head h2 em,
.cf-cards h2 em { color: #fff !important; }
.cf-cards .section-cta { text-align: center; }
@media (max-width: 1024px) {
  .cf-cards__grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
}

/* ── DEPOIMENTOS v2 — split + 2 carrosséis verticais infinitos ── */
.depo2 {
  padding: 0;
  background: var(--bg-soft);
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.depo2__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: stretch;
  width: 100%;
  min-height: 760px;
}
.depo2__left {
  display: flex; flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: center;
  padding-right: 12px;
}
.depo2__left h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
  margin: 4px 0 6px;
  text-wrap: balance;
}
.depo2__left h2 em {
  color: var(--primary);
  font-weight: 500;
}
.depo2__left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38ch;
  text-wrap: pretty;
}
.depo2__cta {
  margin-top: 12px;
  height: 52px;
  padding: 0 28px;
}

.depo2__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.depo2__col {
  overflow: hidden;
  position: relative;
  height: 760px;
  max-height: 100%;
  scrollbar-width: none;
}
.depo2__col::-webkit-scrollbar { display: none; }
.depo2__col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.depo2__card { min-height: 360px; }

.depo2__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}
.depo2__mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: .6;
  color: var(--primary);
  font-weight: 700;
  height: 22px;
}
.depo2__quote {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  font-weight: 500;
}
.depo2__foot {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed rgba(0,0,0,.08);
}
.depo2__author {
  display: flex; flex-direction: column;
  gap: 3px;
}
.depo2__author strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.depo2__author span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.depo2__tag {
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(168,116,68,.14);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .depo2 { min-height: 0; }
  .depo2__inner { grid-template-columns: 1fr; gap: 20px; min-height: 0; padding: 40px 0 32px; }
  .depo2__left { position: static; padding: 0 var(--gutter); gap: 14px; align-items: center; text-align: center; }
  .depo2__left h2 { text-align: center; text-wrap: balance; }
  .depo2__left p { text-align: center; margin: 0; }
  .depo2__left .depo2__cta { margin-top: 6px; }
  .depo2__right { min-height: 0; }
  .depo2__col { height: 720px; min-height: 0; }
}
/* Mobile global: text-wrap balance pros heads das seções e bio do .about */
@media (max-width: 768px) {
  .s-head h2, .s-head h2 em { text-wrap: balance; }
  .s-head p { text-wrap: pretty; }
  .atend2 .s-head h2, .atend2 .s-head h2 em { text-wrap: balance; }
  .atend2 .s-head p { text-wrap: pretty; }
  .about__lead { text-wrap: pretty; }
}

@media (max-width: 540px) {
  /* No mobile: 1 carrossel horizontal único, 1 card por vez deslizando */
  .depo2__right {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 var(--gutter) 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .depo2__right::-webkit-scrollbar { display: none; }
  /* libera os cards das 2 colunas pra ficarem em linha no flex */
  .depo2__col,
  .depo2__col-track { display: contents; }
  .depo2__col-track > .depo2__card {
    width: 85vw;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: center;
    min-height: auto;
    height: auto;
  }
  /* cada coluna repete cards 2x pro auto-scroll do desktop — esconder duplicatas no mobile */
  .depo2__col-track > .depo2__card:nth-child(n+4) { display: none; }
}

/* ── ATENDIMENTO — cards escuros com grid interna 2x2 ── */
.atend2 { background: #fff; padding: var(--section-pad) 0; }
.atend2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.atend2__card {
  background: var(--ink);
  color: #fff;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 1px solid var(--ink);
  position: relative;
  transition: border-color .25s ease, transform .25s ease;
}
.atend2__card:hover { border-color: var(--primary); transform: translateY(-2px); }
.atend2__heading {
  display: flex; flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.atend2__loc {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
}
.atend2__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
}
.atend2__title span {
  display: block;
  font-weight: 500;
  color: var(--accent-light);
  margin-top: 4px;
}
.atend2__grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.1);
  list-style: none;
  margin: 0; padding: 0;
}
.atend2__grid-inner li {
  padding: 22px 20px;
  display: flex; flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  min-height: 110px;
}
.atend2__grid-inner li:nth-child(2n) { border-right: 0; }
.atend2__grid-inner li:nth-last-child(-n+2) { border-bottom: 0; }
.atend2__label {
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-light);
}
.atend2__value {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.atend2__cta {
  align-self: flex-start;
  height: 52px; padding: 0 26px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  gap: 10px;
  transition: background .2s ease, transform .2s ease;
}
.atend2__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.atend2__cta svg { transition: transform .2s ease; }
.atend2__cta:hover svg { transform: translate(3px, -3px); }

@media (max-width: 880px) {
  .atend2__grid { grid-template-columns: 1fr; gap: 18px; }
  .atend2__card { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .atend2__grid-inner { grid-template-columns: 1fr; }
  .atend2__grid-inner li { border-right: 0; min-height: auto; }
  .atend2__grid-inner li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .atend2__grid-inner li:last-child { border-bottom: 0; }
}

.faq { background: var(--bg-soft); }
.faq__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.faq__head { display: flex; flex-direction: column; gap: 24px; align-self: start; position: sticky; top: 110px; }
.faq__head h2 em { font-style: normal; color: var(--primary); font-weight: 500; }
.faq__head p { color: var(--muted); font-size: 16px; }
.faq__cta { align-self: flex-start; margin-top: 8px; }

.faq__list { list-style: none; }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__item:first-child { border-top: 1px solid var(--line-strong); }
.faq__details { width: 100%; }
.faq__details summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 28px 0;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq__details summary::-webkit-details-marker { display: none; }
.faq__plus {
  flex-shrink: 0; width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line-strong);
  position: relative;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .25s ease;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq__plus::before { width: 14px; height: 1.5px; }
.faq__plus::after { width: 1.5px; height: 14px; transition: transform .25s ease; }
.faq__details[open] .faq__plus { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq__details[open] .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__details:hover .faq__plus { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq__answer {
  padding: 0 60px 22px 0;
  color: var(--muted);
  font-size: 13.5px; line-height: 1.6;
  max-width: 68ch;
}

@media (max-width: 880px) {
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
}

/* ── FOOTER (super simples) ── */
.foot {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.foot__bottom {
  display: flex; justify-content: center; align-items: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(14,40,56,.25);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-float::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float:hover {
  background: #1a4159;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(14,40,56,.32);
}
@media (max-width: 768px) {
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--primary);
  z-index: 200;
  transition: width .1s linear;
}

/* ── SECTION DOTS (lateral, igual Jennifer/Encanta) ── */
.section-dots {
  display: none; /* pin lateral escondido */
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  flex-direction: column;
  gap: 8px;
  padding: 14px 10px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease, border-color .3s ease;
}
.section-dots--on-dark {
  background: rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.section-dots--on-dark .section-dots-dot {
  background: rgba(255,255,255,.55);
}
.section-dots--on-dark .section-dots-item:hover .section-dots-dot {
  background: var(--accent-light);
}
.section-dots--on-dark .section-dots-item.is-active .section-dots-dot {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.15);
}
.section-dots-item {
  position: relative;
  width: 16px; height: 16px;
  display: grid; place-items: center;
  cursor: pointer;
}
.section-dots-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background .2s ease, transform .2s ease;
}
.section-dots-item:hover .section-dots-dot { background: var(--accent); }
.section-dots-item.is-active .section-dots-dot {
  background: var(--primary);
  transform: scale(1.4);
}
.section-dots-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.section-dots-item:hover .section-dots-label { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 1024px) { .section-dots { display: none; } }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
  z-index: 998;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}
.cookie-banner p { color: var(--ink-2); font-size: 13px; line-height: 1.5; }
.cookie-banner-btn {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease;
}
.cookie-banner-btn:hover { background: var(--primary-dark); }
@media (max-width: 520px) {
  .cookie-banner { left: 16px; right: 16px; bottom: 90px; max-width: none; flex-direction: column; align-items: stretch; }
}

/* ── REVEAL on scroll (override em bloco abaixo) ── */

/* ── COMPARATIVO ── */
.compare { padding: var(--section-pad) 0; }
.compare__head-row {
  max-width: 1080px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 40px;
  align-items: end;
  text-align: left;
}
.compare__head-row h2 { text-align: left; max-width: 16ch; }
.compare__head-row p { text-align: left; max-width: 42ch; margin-bottom: 4px; }
.compare__head-cta {
  justify-self: end;
  white-space: nowrap;
  padding: 0 22px;
  height: 52px;
  font-size: 12px;
  margin-bottom: 4px;
}
@media (max-width: 980px) {
  .compare__head-row {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }
  .compare__head-row h2,
  .compare__head-row p { text-align: center; max-width: 100%; }
  .compare__head-cta { justify-self: center; }
}
.compare__table {
  margin: 56px auto 0;
  max-width: 1080px;
  border: 1px solid rgba(14,40,56,.16);
  background: #fff;
}
.compare__head {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(14,40,56,.16);
}
.compare__head-cell { padding: 0 24px; }
.compare__head-cell--label { padding: 0 24px; }
.compare__head-cell h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 8px;
  line-height: 1.2;
}
.compare__head-cell--b h3 { color: var(--primary); }
.compare__tag {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px dashed rgba(14,40,56,.25);
}
.compare__tag--b {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.compare__row {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(14,40,56,.14);
  transition: background .25s ease;
}
.compare__row:last-child { border-bottom: 0; }
.compare__row:hover { background: rgba(14,40,56,.025); }
.compare__cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.compare__cell--label {
  padding: 0 24px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare__cell--a { color: var(--muted); }
.compare__cell--b {
  font-weight: 500;
  position: relative;
}
.compare__cell--b::before {
  content: '';
  position: absolute;
  left: 0; top: -20px; bottom: -20px;
  width: 1px;
  background: rgba(14,40,56,.16);
}
.compare__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.compare__mark--minus {
  color: rgba(14,40,56,.4);
  font-weight: 700;
}
.compare__mark--check {
  color: var(--primary);
  background: rgba(14,40,56,.06);
  border-radius: 50%;
}
.compare__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 880px) {
  /* Mobile: mostra só label + Instituto Navi (esconde Modelo Tradicional), sem scroll lateral */
  .compare__table { overflow: visible; }
  .compare__head,
  .compare__row {
    grid-template-columns: 1fr 1.4fr;
  }
  .compare__head-cell--a,
  .compare__cell--a { display: none; }
  .compare__head { padding: 20px 0; }
  .compare__row { padding: 16px 0; }
  .compare__cell { padding: 0 16px; font-size: 14px; }
  .compare__head-cell { padding: 0 16px; }
  .compare__head-cell--label { padding: 0 16px; }
  /* esconde a linha vertical divisória entre colunas A e B no mobile */
  .compare__cell--b::before { display: none; }
}

/* ── CUSTOM CURSOR (desativado) ── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-100px, -100px);
  will-change: transform;
  mix-blend-mode: difference;
  transition: opacity .2s ease, width .25s ease, height .25s ease, background .25s ease;
}
.cursor--dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: #fff;
  border-radius: 50%;
}
.cursor--ring {
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}
.cursor--ring.is-hover {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.85);
}
@media (pointer: coarse) { .cursor { display: none; } }

/* ── MAGNETIC BTN ── */
.btn--primary, .btn--white, .nav__cta {
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s ease, color .2s ease;
}

/* ── SPOTLIGHT (seções escuras seguem o mouse) ── */
.has-spotlight { position: relative; overflow: hidden; }
.has-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 480px at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.05) 0%,
    rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.has-spotlight:hover::after { opacity: 1; }
.has-spotlight > * { position: relative; z-index: 1; }
/* Spotlight em seções claras — usa cor da marca */
.domiciliar.has-spotlight::after,
.clinic.has-spotlight::after,
.process.has-spotlight::after {
  background: radial-gradient(circle 520px at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,0) 60%);
}

/* ── REVEAL com stagger ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ── WORD REVEAL (H1/H2) ── */
.has-word-reveal .word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.has-word-reveal .word-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform .9s cubic-bezier(.2,.85,.25,1),
    opacity .9s cubic-bezier(.2,.85,.25,1);
  transition-delay: var(--w-delay, 0ms);
  will-change: transform, opacity;
}
.has-word-reveal.is-revealed .word-reveal__inner {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .has-word-reveal .word-reveal__inner {
    transform: none; opacity: 1; transition: none;
  }
}

/* ── PARALLAX ── */
.parallax-target {
  will-change: transform;
  transition: transform .08s linear;
}
.hero__photo, .about__photo, .clinic__media { overflow: hidden; }

/* ── JORNADA (Timeline com scroll pin) ── */
.jornada {
  padding: 0;
  height: 400vh;
  position: relative;
  background: var(--bg-soft);
}
.jornada__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jornada__pin .container { width: 100%; }
.jornada__track {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.jornada__line {
  position: absolute;
  top: 24px;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(168,116,68,.30) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
  pointer-events: none;
}
.jornada__line-fill {
  position: absolute;
  top: 24px;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  transition: width .15s linear;
}
.jornada__avatar {
  position: absolute;
  top: 24px;
  left: 0;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(168,116,68,.25), 0 0 0 4px var(--bg-soft);
  transition: left .25s cubic-bezier(.2,.8,.2,1), top .25s cubic-bezier(.2,.8,.2,1);
}
.jornada__avatar svg { display: block; }
.jornada__step {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 70px;
}
.jornada__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26,22,18,.2);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 5;
  color: rgba(26,22,18,.45);
  transition:
    color .35s ease,
    border-color .35s ease,
    background .35s ease,
    transform .35s cubic-bezier(.2,.8,.2,1);
}
.jornada__ico { display: grid; place-items: center; line-height: 0; }
.jornada__step.is-active .jornada__marker {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
  transform: scale(1.06);
}
.jornada__step.is-active .jornada__num-big { color: var(--primary); }
.jornada__num-big { transition: color .35s ease; }
.jornada__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: -0.02em;
}
.jornada__num-big {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
}
.jornada__num-unit {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.jornada__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-top: 4px;
}
.jornada__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42ch;
}
@media (max-width: 880px) {
  .jornada { height: auto; }
  .jornada__pin {
    position: relative;
    top: auto;
    height: auto;
    padding: var(--section-pad) 0;
  }
  .jornada__track { grid-template-columns: 1fr; gap: 40px; }
  .jornada__line {
    top: 0; bottom: 0;
    left: 23px; right: auto;
    width: 1px; height: auto;
    background: repeating-linear-gradient(
      to bottom,
      rgba(14,40,56,.22) 0 6px,
      transparent 6px 12px
    );
  }
  .jornada__line-fill {
    top: 0; left: 23px;
    width: 1px; height: 0;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 70%, transparent 100%);
  }
  .jornada__avatar { top: 0; left: 23px; }
  .jornada__marker { left: 0; top: 0; }
  .jornada__step { padding-left: 68px; padding-top: 0; min-height: 60px; }
}

/* ── TILT 3D ── */
.tilt {
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── STATS ── */
.stats { padding: 72px 0; background: #fff; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px dashed rgba(14,40,56,.16);
}
.stats__item {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px dashed rgba(14,40,56,.12);
  position: relative;
}
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stats__suffix {
  font-size: 0.6em;
  font-weight: 500;
  color: var(--primary);
  opacity: .7;
}
.stats__label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 22ch;
}
@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: 0; border-bottom: 1px dashed rgba(14,40,56,.12); }
  .stats__item:nth-child(2n) { border-right: 0; }
  .stats__item:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ── COBERTURA SP ── */
.cobertura { padding: var(--section-pad) 0; }
.cobertura .s-head h2 {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.cobertura__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.cobertura__map {
  position: relative;
  aspect-ratio: 1089 / 735;
  background: #fff;
  border: 1px solid rgba(14,40,56,.12);
  padding: 0;
  overflow: hidden;
}
.cobertura__map-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.cobertura__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Globo 3D (Three.js via globe.gl) */
.cobertura__globe-3d-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(58,107,125,.16) 0%, rgba(14,40,56,0) 70%),
    linear-gradient(180deg, #061824 0%, #020a12 100%);
  border: 1px dashed rgba(255,255,255,.12);
  overflow: hidden;
  border-radius: 0;
}
.cobertura__globe-3d {
  width: 100%;
  height: 100%;
  cursor: grab;
}
.cobertura__globe-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(2,10,18,.7);
  border: 1px solid rgba(54,244,164,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cobertura__globe-label-coord {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(54,244,164,.85);
}
.cobertura__globe-label-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.cobertura__globe-3d-wrap::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(54,244,164,.12);
  pointer-events: none;
  z-index: 1;
}

/* L-markers (cantos do quadrado) */
.cobertura__square-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  pointer-events: none;
}
.cobertura__square-corner::before,
.cobertura__square-corner::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.5);
}
.cobertura__square-corner::before { width: 14px; height: 1px; }
.cobertura__square-corner::after  { width: 1px;  height: 14px; }
.cobertura__square-corner--tl { top: 8px;    left: 8px; }
.cobertura__square-corner--tl::before { top: 0; left: 0; }
.cobertura__square-corner--tl::after  { top: 0; left: 0; }
.cobertura__square-corner--tr { top: 8px;    right: 8px; }
.cobertura__square-corner--tr::before { top: 0; right: 0; }
.cobertura__square-corner--tr::after  { top: 0; right: 0; }
.cobertura__square-corner--bl { bottom: 8px; left: 8px; }
.cobertura__square-corner--bl::before { bottom: 0; left: 0; }
.cobertura__square-corner--bl::after  { bottom: 0; left: 0; }
.cobertura__square-corner--br { bottom: 8px; right: 8px; }
.cobertura__square-corner--br::before { bottom: 0; right: 0; }
.cobertura__square-corner--br::after  { bottom: 0; right: 0; }

/* Zona de cobertura (RMSP) sobre o mapa do estado */
.cobertura__zone {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}
.cobertura__zone-shape {
  display: block;
  width: 9%;
  aspect-ratio: 1.4 / 1;
  border: 1.5px dashed var(--primary);
  border-radius: 50%;
  background: rgba(14,40,56,.08);
  animation: zone-pulse 2.8s ease-in-out infinite;
}
@keyframes zone-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .85; }
}
.cobertura__zone-label {
  position: absolute;
  top: calc(50% + 5%);
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  background: rgba(255,255,255,.95);
  padding: 4px 10px;
  border: 1px solid var(--primary);
  margin-top: 6px;
}

/* Capital */
.cobertura__capital {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 3;
}
.cobertura__capital-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2px #fff;
  grid-area: 1 / 1;
  z-index: 2;
}
.cobertura__capital-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  grid-area: 1 / 1;
  animation: cob-pulse 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes cob-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 0; transform: scale(2.6); }
}

/* Conector visual entre zona e inset */
.cobertura__connector {
  position: absolute;
  left: 78%;
  top: 64%;
  width: 16%;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 50%,
    transparent calc(50% - 0.5px),
    rgba(14,40,56,.25) 50%,
    rgba(14,40,56,.25) calc(50% + 0.5px),
    transparent calc(50% + 1px)
  );
  opacity: 0;
}

/* Inset com zoom da Grande SP */
.cobertura__inset {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 42%;
  aspect-ratio: 220 / 184;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(14,40,56,.18);
  box-shadow: 0 4px 18px rgba(14,40,56,.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
}
.cobertura__inset-head {
  padding: 8px 12px;
  border-bottom: 1px dashed rgba(14,40,56,.16);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cobertura__inset-tag {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink);
}
.cobertura__inset-hint {
  font-family: ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .7;
}
.cobertura__inset-map {
  position: relative;
  flex: 1;
  width: 100%;
}
.cobertura__inset-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Pins interativos */
.cobertura__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 2;
}
.cobertura__pin-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2px #fff;
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cobertura__pin-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  opacity: .5;
  animation: cob-pulse 2.4s ease-in-out infinite;
}
.cobertura__pin--capital .cobertura__pin-dot { width: 10px; height: 10px; }
.cobertura__pin-tip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  padding: 5px 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.cobertura__pin-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--ink);
}
.cobertura__pin:hover .cobertura__pin-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cobertura__pin:hover .cobertura__pin-dot {
  width: 10px;
  height: 10px;
  background: #1a4159;
}

@media (max-width: 880px) {
  .cobertura__inset { width: 56%; bottom: 8px; right: 8px; }
  .cobertura__inset-tag { font-size: 8px; }
  .cobertura__inset-hint { display: none; }
}
.cobertura__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cobertura__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(14,40,56,.12);
}
.cobertura__dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.cobertura__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: .25;
}
.cobertura__item > div { display: flex; flex-direction: column; gap: 2px; }
.cobertura__item strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cobertura__item span {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 880px) {
  .cobertura__inner { grid-template-columns: 1fr; gap: 32px; }
  .cobertura__list { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cobertura__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .cobertura__item > div { align-items: center; }
  .cobertura__item strong { font-size: 15px; }
  .cobertura__item span { font-size: 11px; }
  .cobertura .s-head--split {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    justify-items: center;
  }
  .cobertura .s-head--split h2,
  .cobertura .s-head--split p { text-align: center; max-width: 100%; }
  .cobertura .s-head h2 { font-size: clamp(26px, 6vw, 38px); }
  .cobertura__globe-3d-wrap {
    display: none;
  }
}

/* ── DEPOIMENTOS (Carrossel) ── */
.depo { padding: var(--section-pad) 0; }
.depo__head { margin-bottom: 48px; }
.depo__head-side {
  display: flex;
  align-items: center;
  gap: 32px;
}
.depo__head-side p { flex: 1; margin: 0; }
.depo__nav { display: flex; gap: 8px; }
.depo__arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(14,40,56,.18);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.depo__arrow:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.depo__arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
}
.depo__viewport {
  overflow: hidden;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 10px;
}
.depo__track {
  display: flex;
  gap: 32px;
  transition: transform .55s cubic-bezier(.2,.85,.25,1);
  will-change: transform;
}
.depo__track .depo__card {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
}
.depo__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.depo__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14,40,56,.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.depo__dot.is-active {
  background: var(--primary);
  transform: scale(1.4);
}
.depo__card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14,40,56,.1);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.depo__card:hover {
  transform: translateY(-2px);
  border-color: rgba(14,40,56,.2);
}
.depo__mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  line-height: 0.7;
  color: var(--primary);
  letter-spacing: -0.04em;
  height: 28px;
  opacity: .25;
}
.depo__quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.depo__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px dashed rgba(14,40,56,.16);
}
.depo__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}
.depo__author-meta { display: flex; flex-direction: column; gap: 2px; }
.depo__author-meta strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.depo__author-meta span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
}
.depo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.depo__chip {
  display: inline-block;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px dashed rgba(14,40,56,.18);
  padding: 5px 10px;
}
.depo__chip--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 1024px) {
  .depo__track .depo__card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 720px) {
  .depo__track .depo__card { flex: 0 0 100%; }
  .depo__card { padding: 28px 24px 26px; }
  .depo__head-side { flex-direction: column; align-items: flex-start; gap: 20px; }
  .depo__nav { align-self: flex-start; }
}

/* ── QUADRO MODAL (Side Drawer) ── */
.qmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14,40,56,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .35s ease;
  cursor: pointer;
}
.qmodal.is-open { opacity: 1; }
.qmodal__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(40px);
  transition: transform .55s cubic-bezier(.2,.85,.25,1);
  cursor: default;
  border-left: 1px solid rgba(14,40,56,.1);
}
.qmodal.is-open .qmodal__panel { transform: translateX(0); }
.qmodal.is-closing { opacity: 0; transition: opacity .3s ease; }
.qmodal.is-closing .qmodal__panel {
  transform: translateX(40px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.qmodal__header {
  padding: 32px 44px 28px;
  border-bottom: 1px dashed rgba(14,40,56,.18);
  flex-shrink: 0;
}
.qmodal__tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.qmodal__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 12px 6px 6px;
  border: 1px dashed rgba(14,40,56,.2);
}
.qmodal__tag-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  color: var(--primary);
}
.qmodal__tag-icon svg { width: 16px; height: 16px; }
.qmodal__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(14,40,56,.15);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.qmodal__close:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(90deg);
}
.qmodal__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
}
.qmodal__sub {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.qmodal__body {
  flex: 1;
  overflow-y: auto;
  padding: 32px 44px;
}
.qmodal__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 36px;
}
.qmodal__section { margin-bottom: 32px; }
.qmodal__section:last-child { margin-bottom: 0; }
.qmodal__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.qmodal__label-num {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(14,40,56,.18);
  color: var(--primary);
  font-size: 10px;
}
.qmodal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qmodal__list-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(14,40,56,.08);
}
.qmodal__list-item:last-child { border-bottom: 0; }
.qmodal__list-marker {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  margin-top: 2px;
}
.qmodal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qmodal__chip {
  display: inline-block;
  font-size: 13px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid rgba(14,40,56,.12);
  padding: 8px 14px;
}

.qmodal__footer {
  padding: 20px 44px 32px;
  border-top: 1px dashed rgba(14,40,56,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-shrink: 0;
  background: #fff;
}
.qmodal__footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.4;
}
.qmodal__footer-text span {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.qmodal__footer-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.qmodal__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .qmodal__panel { max-width: 100%; }
  .qmodal__header { padding: 24px 22px 22px; }
  .qmodal__body { padding: 24px 22px; }
  .qmodal__footer { padding: 16px 22px 22px; flex-direction: column; align-items: stretch; }
  .qmodal__cta-btn { justify-content: center; width: 100%; }
  .qmodal__title { font-size: 32px; }
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--primary);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity .55s cubic-bezier(.2,.85,.25,1), transform .55s cubic-bezier(.2,.85,.25,1);
}

/* Rails verticais (esquerda/direita) */
.page-loader__rail {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.15);
  transform: scaleY(0);
  transform-origin: top;
  animation: pl-rail .9s cubic-bezier(.2,.8,.2,1) forwards .2s;
}
.page-loader__rail--l { left: 24px; }
.page-loader__rail--r { right: 24px; transform-origin: bottom; animation-delay: .3s; }
@keyframes pl-rail { to { transform: scaleY(1); } }

/* Linhas horizontais (topo/base) */
.page-loader__bar {
  position: absolute;
  left: 24px; right: 24px;
  height: 1px;
  background: rgba(255,255,255,.15);
  transform: scaleX(0);
  animation: pl-bar 1s cubic-bezier(.2,.8,.2,1) forwards .55s;
}
.page-loader__bar--t { top: 24px; transform-origin: left; }
.page-loader__bar--b { bottom: 24px; transform-origin: right; animation-delay: .65s; }
@keyframes pl-bar { to { transform: scaleX(1); } }

/* L-markers nos 4 cantos */
.page-loader__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0;
  animation: pl-corner .35s ease forwards 1.1s;
}
.page-loader__corner::before,
.page-loader__corner::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.6);
}
.page-loader__corner::before { width: 14px; height: 1px; }
.page-loader__corner::after  { width: 1px;  height: 14px; }
.page-loader__corner--tl { top: 17px;    left: 17px; }
.page-loader__corner--tl::before { top: 0; left: 0; }
.page-loader__corner--tl::after  { top: 0; left: 0; }
.page-loader__corner--tr { top: 17px;    right: 17px; }
.page-loader__corner--tr::before { top: 0; right: 0; }
.page-loader__corner--tr::after  { top: 0; right: 0; }
.page-loader__corner--bl { bottom: 17px; left: 17px; }
.page-loader__corner--bl::before { bottom: 0; left: 0; }
.page-loader__corner--bl::after  { bottom: 0; left: 0; }
.page-loader__corner--br { bottom: 17px; right: 17px; }
.page-loader__corner--br::before { bottom: 0; right: 0; }
.page-loader__corner--br::after  { bottom: 0; right: 0; }
@keyframes pl-corner { to { opacity: 1; } }
.page-loader.is-hide {
  opacity: 0;
  transform: translateY(-2%);
  pointer-events: none;
}
.page-loader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}
.page-loader__svg {
  display: block;
  margin: 0 auto;
  overflow: visible;
  width: min(480px, 60vw);
  height: auto;
}
.page-loader__logo {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1.2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    nav-draw 1.4s cubic-bezier(.45,.05,.25,1) forwards,
    nav-fill .35s ease forwards 1.25s;
}
@keyframes nav-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes nav-fill {
  to { fill: #fff; stroke-width: 0; }
}
.page-loader__line {
  width: 260px;
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 0 auto;
  position: relative;
  transform: scaleX(0);
  transform-origin: center;
  animation: nav-line .7s cubic-bezier(.2,.8,.2,1) forwards .9s;
}
.page-loader__line span {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  animation: nav-line-fill .8s cubic-bezier(.2,.8,.2,1) forwards 1.05s;
}
@keyframes nav-line { to { transform: scaleX(1); } }
@keyframes nav-line-fill { to { transform: scaleX(1); } }
.page-loader__sub {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,.6);
  text-align: center;
  opacity: 0;
  animation: nav-sub .5s ease forwards 1.25s;
}
@media (max-width: 768px) {
  .page-loader__sub { font-size: 8px; letter-spacing: 0.18em; }
}
@keyframes nav-sub { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .page-loader { transition: opacity .2s ease; }
  .page-loader__logo { animation: none; fill: #fff; stroke-width: 0; }
  .page-loader__line, .page-loader__line span { animation: none; transform: scaleX(1); }
  .page-loader__sub { animation: none; opacity: 1; }
}

/* ── KEYBOARD SHORTCUTS ── */
.kbd-hint {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(14,40,56,.16);
  cursor: pointer;
  z-index: 990;
  opacity: .55;
  transition: opacity .25s ease, transform .25s ease;
}
.kbd-hint:hover { opacity: 1; transform: scale(1.06); }
.kbd-hint kbd {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
}
.kbd-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(14,40,56,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 24px;
  cursor: pointer;
  animation: kbd-fade .25s ease;
}
@keyframes kbd-fade { from { opacity: 0; } to { opacity: 1; } }
.kbd-panel {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid rgba(14,40,56,.12);
  padding: 28px 28px 22px;
  cursor: default;
  animation: kbd-pop .35s cubic-bezier(.2,.85,.25,1);
}
@keyframes kbd-pop {
  from { transform: translateY(12px) scale(.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.kbd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(14,40,56,.18);
  margin-bottom: 18px;
}
.kbd-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.kbd-close {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid rgba(14,40,56,.15);
  cursor: pointer;
  color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.kbd-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.kbd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kbd-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px dashed rgba(14,40,56,.06);
}
.kbd-item:last-child { border-bottom: 0; }
.kbd-item--meta span { color: var(--muted); font-size: 13px; }
.kbd-key {
  display: grid;
  place-items: center;
  width: 38px;
  height: 28px;
  background: var(--bg-soft);
  border: 1px solid rgba(14,40,56,.14);
  border-bottom-width: 2px;
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .kbd-hint { display: none; }
}

/* ── VIEW TRANSITIONS API ── */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .45s;
  animation-timing-function: cubic-bezier(.2,.85,.25,1);
}
::view-transition-old(root) {
  animation-name: vt-fade-out;
}
::view-transition-new(root) {
  animation-name: vt-fade-in;
}
@keyframes vt-fade-out {
  to { opacity: 0; }
}
@keyframes vt-fade-in {
  from { opacity: 0; }
}

/* Scroll anchor offset */
[id] { scroll-margin-top: 100px; }

/* Smooth scroll fallback */
html { scroll-behavior: smooth; }

/* ── NEURO VISUALIZER (cérebro 3D Three.js) — desabilitado, descomentar para reativar ──
.neuro {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 20%, rgba(58,107,125,.12) 0%, rgba(6,24,36,0) 60%),
    linear-gradient(180deg, #061824 0%, #020a12 100%);
  color: rgba(255,255,255,.92);
  position: relative;
  overflow: hidden;
}
.neuro::before,
.neuro::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.15) 0, rgba(255,255,255,.15) 4px, transparent 4px, transparent 10px);
}
.neuro::before { top: 0; }
.neuro::after { bottom: 0; }
.neuro .s-head h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.neuro .s-head h2 em { color: var(--accent-light, #899BA3); font-style: normal; }
.neuro .s-head p { color: rgba(255,255,255,.72); }

.neuro__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

/* Viz wrap (square com L-markers nos cantos) */
.neuro__viz-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(58,107,125,.18) 0%, rgba(2,10,18,0) 70%),
    linear-gradient(180deg, rgba(6,24,36,.6) 0%, rgba(2,10,18,.6) 100%);
  border: 1px dashed rgba(255,255,255,.12);
}
.neuro__viz {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
}
.neuro__viz canvas { display: block; }
.neuro__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  pointer-events: none;
}
.neuro__corner::before,
.neuro__corner::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,.5);
}
.neuro__corner::before { width: 14px; height: 1px; }
.neuro__corner::after  { width: 1px;  height: 14px; }
.neuro__corner--tl { top: 10px;    left: 10px; }
.neuro__corner--tl::before { top: 0; left: 0; }
.neuro__corner--tl::after  { top: 0; left: 0; }
.neuro__corner--tr { top: 10px;    right: 10px; }
.neuro__corner--tr::before { top: 0; right: 0; }
.neuro__corner--tr::after  { top: 0; right: 0; }
.neuro__corner--bl { bottom: 10px; left: 10px; }
.neuro__corner--bl::before { bottom: 0; left: 0; }
.neuro__corner--bl::after  { bottom: 0; left: 0; }
.neuro__corner--br { bottom: 10px; right: 10px; }
.neuro__corner--br::before { bottom: 0; right: 0; }
.neuro__corner--br::after  { bottom: 0; right: 0; }

.neuro__viz-label {
  position: absolute;
  bottom: 22px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,.5);
  z-index: 3;
  pointer-events: none;
}

/* Tabs */
.neuro__panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.neuro__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.10);
}
.neuro__tabs > li { border-bottom: 1px solid rgba(255,255,255,.10); }
.neuro__tab {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 16px 4px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  transition: color .25s ease, padding-left .25s ease;
  font-family: inherit;
}
.neuro__tab:hover { color: rgba(255,255,255,.85); padding-left: 8px; }
.neuro__tab.is-active { color: #fff; padding-left: 8px; }
.neuro__tab-num {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.4);
}
.neuro__tab.is-active .neuro__tab-num { color: var(--accent-light, #899BA3); }
.neuro__tab-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.neuro__tab-short {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
}
.neuro__tab.is-active .neuro__tab-short { color: rgba(255,255,255,.7); }
.neuro__info {
  padding: 20px 0 0;
  border-top: 1px dashed rgba(255,255,255,.12);
}
.neuro__info p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  margin: 0;
}

@media (max-width: 880px) {
  .neuro__inner { grid-template-columns: 1fr; gap: 40px; }
  .neuro__viz-wrap { max-width: 420px; }
  .neuro__tab { grid-template-columns: 36px 1fr; }
  .neuro__tab-short { grid-column: 2; padding-top: 2px; }
}
─── fim do bloco neuro ─── */

/* ── TEAM HORIZONTAL · estrutura clonada da Jornada para garantir o pin ── */
.team-h {
  padding: 0;
  height: 1200vh;
  position: relative;
}
.team-h__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 24px;
}
.team-h__pin > .container { width: 100%; max-width: 1320px; }
.team-h__head {
  margin-bottom: 40px;
  gap: 56px;
  grid-template-columns: 1.5fr 1fr;
  max-width: 100%;
  align-items: start;
}
.team-h__head h2 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.team-h__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.team-h__head-right p { margin: 0; font-size: 16px; line-height: 1.55; text-wrap: balance; max-width: 46ch; }
.team-h__head-cta { align-self: flex-start; }

.team-h__track-wrap {
  position: relative;
  overflow: hidden;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.team-h__track {
  display: flex;
  gap: 32px;
  padding: 12px var(--gutter);
  width: max-content;
}
.team-h__card {
  flex-shrink: 0;
  width: clamp(420px, 38vw, 580px);
  min-height: 320px;
  background: #fff;
  border: 1px solid rgba(14,40,56,.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .35s ease, background .35s ease;
}
.team-h__card.is-active {
  border-color: var(--primary, #0E2838);
  background: #fafbfc;
}
.team-h__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(14,40,56,.18);
}
.team-h__card-num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--primary, #0E2838);
}
.team-h__card-total { color: rgba(14,40,56,.45); }
.team-h__card-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14,40,56,.45);
}
.team-h__card-role {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--primary, #0E2838);
  margin: 0;
}
.team-h__card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(14,40,56,.65);
  margin: 0;
}

@media (max-width: 880px) {
  /* Mobile: layout normal empilhado, SEM scroll-pin */
  .team-h {
    height: auto !important;
    padding: var(--section-pad) 0 !important;
  }
  .team-h__pin {
    position: static !important;
    top: auto !important;
    height: auto !important;
    display: block !important;
    padding: 0 !important;
  }
  .team-h__pin > .container { padding: 0 var(--gutter); }
  .team-h__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
    text-align: center;
    justify-items: center;
  }
  .team-h__head h2 {
    font-size: clamp(24px, 5.6vw, 34px);
    text-align: center;
  }
  .team-h__head-right {
    gap: 14px;
    align-items: center;
  }
  .team-h__head-right p { font-size: 14px; text-align: center; }
  .team-h__head-cta { align-self: center; }
  .team-h__track-wrap {
    overflow: visible;
    margin: 0;
  }
  .team-h__track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    width: 100% !important;
    transform: none !important;
  }
  .team-h__card {
    width: 100%;
    min-height: 0;
    padding: 24px;
  }
  .team-h__card-role { font-size: clamp(20px, 5vw, 26px); }
}

/* DEPRECATED: estilos antigos de .equipe--hscroll (mantidos como fallback) */
.equipe--hscroll {
  padding: 0;
  height: 1500vh;
  position: relative;
}
.equipe__head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.equipe__head-right p { margin: 0; }
.equipe__head-cta {
  align-self: flex-start;
}
.equipe--hscroll::before,
.equipe--hscroll::after { display: none; }
.equipe--hscroll .equipe__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  outline: 3px dashed red;  /* DEBUG: pra confirmar se trava */
  background: rgba(255,0,0,0.04);  /* DEBUG */
}
.equipe--hscroll .equipe__pin > .container { width: 100%; }
.equipe--hscroll .equipe__head {
  margin-bottom: 36px;
  max-width: 100%;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
}
.equipe--hscroll .equipe__head h2 {
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.equipe--hscroll .equipe__head p {
  font-size: 15px;
  line-height: 1.55;
}
.equipe--hscroll .equipe__track-wrap {
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.equipe--hscroll .equipe__track {
  display: flex;
  gap: 32px;
  padding: 0 var(--gutter);
  will-change: transform;
  width: max-content;
  flex-shrink: 0;
}
.equipe--hscroll .equipe__card {
  flex-shrink: 0;
  width: clamp(420px, 38vw, 580px);
  min-height: 420px;
  background: var(--bg-card, #fff);
  border: 1px solid rgba(14,40,56,.10);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.equipe--hscroll .equipe__card.is-active {
  border-color: var(--primary, #0E2838);
  background: #fafbfc;
}
.equipe__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(14,40,56,.18);
}
.equipe__card-num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--primary, #0E2838);
}
.equipe__card-total {
  color: rgba(14,40,56,.45);
}
.equipe__card-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(14,40,56,.45);
}
.equipe__card-role {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--primary, #0E2838);
  margin: 0;
}
.equipe__card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted, rgba(14,40,56,.65));
  margin: 0;
}
.equipe__card-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity .35s ease;
}
.equipe__card-corner::before,
.equipe__card-corner::after {
  content: '';
  position: absolute;
  background: var(--primary, #0E2838);
}
.equipe__card-corner::before { width: 10px; height: 1px; }
.equipe__card-corner::after  { width: 1px;  height: 10px; }
.equipe__card-corner--tl { top: -1px;    left: -1px; }
.equipe__card-corner--tl::before { top: 0; left: 0; }
.equipe__card-corner--tl::after  { top: 0; left: 0; }
.equipe__card-corner--tr { top: -1px;    right: -1px; }
.equipe__card-corner--tr::before { top: 0; right: 0; }
.equipe__card-corner--tr::after  { top: 0; right: 0; }
.equipe__card-corner--bl { bottom: -1px; left: -1px; }
.equipe__card-corner--bl::before { bottom: 0; left: 0; }
.equipe__card-corner--bl::after  { bottom: 0; left: 0; }
.equipe__card-corner--br { bottom: -1px; right: -1px; }
.equipe__card-corner--br::before { bottom: 0; right: 0; }
.equipe__card-corner--br::after  { bottom: 0; right: 0; }
.equipe__card.is-active .equipe__card-corner { opacity: 1; }

.equipe__progress {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.equipe__progress-track {
  flex: 1;
  height: 1px;
  background: rgba(14,40,56,.12);
  position: relative;
  overflow: hidden;
}
.equipe__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--primary, #0E2838);
}
.equipe__progress-label {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(14,40,56,.55);
}

/* Mobile: scroll horizontal nativo, sem scroll-pin */
@media (max-width: 768px) {
  .equipe--hscroll {
    height: auto;
  }
  .equipe--hscroll .equipe__sticky {
    position: static;
    height: auto;
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
  }
  .equipe--hscroll .equipe__track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .equipe--hscroll .equipe__track {
    transform: none !important;
    gap: 16px;
  }
  .equipe--hscroll .equipe__card {
    width: 82vw;
    scroll-snap-align: start;
  }
  .equipe__progress { display: none; }
}

/* ── MAPA DO BRASIL (Telemedicina) ── */
.brmap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.brmap__svg {
  width: 100%;
  max-width: 180px;
  height: auto;
}
.brmap__dots circle {
  fill: var(--accent-light);
  opacity: .55;
  transform-origin: center;
  animation: dotPulse 2.6s ease-in-out infinite;
}
.brmap__dots circle:nth-child(1)  { animation-delay: 0s; }
.brmap__dots circle:nth-child(2)  { animation-delay: .25s; }
.brmap__dots circle:nth-child(3)  { animation-delay: .5s; }
.brmap__dots circle:nth-child(4)  { animation-delay: .75s; }
.brmap__dots circle:nth-child(5)  { animation-delay: 1s; }
.brmap__dots circle:nth-child(6)  { animation-delay: 1.25s; }
.brmap__dots circle:nth-child(7)  { animation-delay: 1.5s; }
.brmap__dots circle:nth-child(8)  { animation-delay: 1.75s; }
.brmap__dots circle:nth-child(9)  { animation-delay: 2s; }
.brmap__dots circle:nth-child(10) { animation-delay: 2.25s; }
.brmap__dots circle:nth-child(11) { animation-delay: 2.5s; }
.brmap__home circle:last-child {
  fill: var(--primary);
}
.brmap__home-ring {
  transform-origin: 145px 118px;
  animation: homePulse 2.2s ease-out infinite;
}
.brmap__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-light);
}
@keyframes dotPulse {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes homePulse {
  0% { transform: scale(.4); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   AJUSTES MOBILE FINAIS — Hygor Buss
============================================================ */
@media (max-width: 768px) {

  /* Remover L decorativos em TODAS as seções no mobile */
  .hero::before, .hero::after,
  .quadros::before, .quadros::after,
  .domiciliar::before, .domiciliar::after,
  .equipe::before, .equipe::after,
  .programas::before, .programas::after,
  .process::before, .process::after,
  .about::before, .about::after,
  .clinic::before, .clinic::after,
  .faq::before, .faq::after,
  .compare::before, .compare::after,
  .jornada::before, .jornada::after,
  .depo::before, .depo::after,
  .stats::before, .stats::after,
  .cobertura::before, .cobertura::after {
    display: none !important;
  }

  /* Hero — lead menor + CTAs lado a lado */
  .hero__content h1 { font-size: 36px; line-height: 1.05; }
  .hero__lead {
    font-size: 14.5px !important;
    line-height: 1.55;
  }
  .hero__cta {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap;
  }
  .hero__cta .btn {
    flex: 1 1 calc(50% - 5px);
    width: auto !important;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* Hero photo maior */
  .hero__photo {
    min-height: 380px !important;
    aspect-ratio: auto;
  }
  .hero__photo-placeholder {
    font-size: 11px;
  }

  /* Cards Procedimentos (quadros) — um pouco mais estreitos no celular */
  .quadros__grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
  }
  .quadros__card {
    width: 100%;
    padding: 26px 22px;
  }

  /* HoLEP / Programas — centralizar header */
  .programas .s-head,
  .programas .s-head--split {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
  }
  .programas .s-head h2 { text-align: center !important; }
  .programas .s-head p {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100%;
  }

  /* ComoFunciona / cf-cards — centralizar header */
  .cf-cards__head {
    grid-template-columns: 1fr !important;
    text-align: center;
    align-items: center !important;
  }
  .cf-cards__head h2 { text-align: center; }
  .cf-cards__head p {
    text-align: center;
    margin: 0 auto !important;
  }

  /* Founders intro — centralizar + headline menor */
  .founders-intro .s-head--split,
  .founders-intro .s-head {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
  }
  .founders-intro h2 {
    text-align: center !important;
    font-size: 24px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.015em;
  }
  .founders-intro p {
    text-align: center !important;
    margin: 0 auto !important;
    font-size: 14px;
    line-height: 1.55;
  }

  /* Depoimentos v2 — centralizar texto da esquerda */
  .depo2__left {
    align-items: center !important;
    text-align: center;
    padding: 40px 16px !important;
  }
  .depo2__left h2 { text-align: center; }
  .depo2__left p {
    text-align: center;
    max-width: 100%;
  }
  .depo2__cta { align-self: center; }

  /* FAQ — esconder o "Se a sua dúvida não estiver aqui..." no mobile */
  .faq__intro,
  .faq__head > p {
    display: none !important;
  }

  /* Footer bottom — centralizar no mobile */
  .foot2__bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 14px !important;
  }
  .foot2__links {
    justify-content: center;
  }

  /* Atendimento (Cobertura) — centralizar header no mobile */
  .atend2 .s-head,
  .atend2 .s-head--split {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
  }
  .atend2 .s-head h2 { text-align: center !important; }
  .atend2 .s-head p {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100%;
  }

  /* Depoimentos — esconder parágrafo no mobile */
  .depo2__left p {
    display: none !important;
  }

  /* Fundadores intro — esconder seção inteira "Aqui não existe call center" no mobile */
  .founders-intro {
    display: none !important;
  }

  /* Jornada — centralizar header no mobile */
  .jornada .s-head,
  .jornada .s-head--split {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    align-items: center !important;
  }
  .jornada .s-head h2 { text-align: center !important; }
  .jornada .s-head p {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 100%;
  }

  /* Trajetória (Equipe) — esconder parágrafo "Mais de uma década..." no mobile */
  .team-h__head-right p,
  .team-h__head-right .btn {
    display: none !important;
  }

  /* Comparativo — texto menor no mobile */
  .compare .s-head p,
  .compare__head-row p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  /* ComoFunciona — esconder parágrafo "Atendimento direto, sem call center..." no mobile */
  .cf-cards__head p {
    display: none !important;
  }
}

/* <br> só visível no mobile */
.m-only { display: none; }
@media (max-width: 540px) {
  .m-only { display: inline; }
}

/* ============================================================
   FIM AJUSTES MOBILE
============================================================ */
