/* ============================================================
   Resultados Previsíveis — v5
   Referência: hero escuro centrado, seções claras alternadas,
   acento teal #5BC5C3, eyebrows com bullet, CTAs pill.
   ============================================================ */

:root {
  --teal: #5BC5C3;
  --teal-deep: #2E8C8A;      /* teal legível sobre claro */
  --teal-soft: #DDF2F1;
  --teal-vivid: #14B8AC;     /* verde vivo unico p/ destaques (.hl) — vibrante e legivel sobre claro e escuro */

  --ink: #0A0D12;            /* fundo escuro principal */
  --ink-2: #11151C;          /* painéis escuros */
  --ink-3: #181E27;          /* cards escuros */
  --line-dark: rgba(255, 255, 255, 0.09);

  --paper: #F5F8F8;          /* fundo claro A */
  --paper-2: #FFFFFF;        /* fundo claro B */
  --line-light: #E1E8E8;

  --text-dark: #12181F;      /* texto sobre claro */
  --text-dark-mute: #5A6672;
  --text-light: #F2F5F6;     /* texto sobre escuro */
  --text-light-mute: #97A2AC;

  --r: 14px;                 /* raio base (tweakável) */
  --r-lg: calc(var(--r) + 8px);
  --r-pill: 999px;

  --font-display: "Montserrat", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --display-weight: 800;
  --display-tracking: -0.02em;
  --eyebrow-transform: uppercase;

  --container: 1180px;
}

/* — Direções tipográficas (tweak) — */
html[data-dir="editorial"] {
  --font-display: "Montserrat", sans-serif;
  --display-weight: 600;
  --display-tracking: -0.01em;
  --eyebrow-transform: uppercase;
}
html[data-dir="tech"] {
  --font-display: "Montserrat", sans-serif;
  --display-weight: 700;
  --display-tracking: -0.03em;
  --eyebrow-transform: uppercase;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.12;
}

section { padding: 96px 0; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-sub { max-width: 600px; }
}
@media (max-width: 560px) {
  /* evita pulo de altura no hero: fonte menor pra frase mais longa caber em 1 linha */
  .hero h1 { font-size: clamp(28px, 8.6vw, 38px); }
  .rotator { display: block; white-space: nowrap; }
  .hero-sub br { display: none; }
  .container { padding: 0 20px; }
  .hero { padding: 116px 0 64px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section-head { margin-bottom: 40px; }
  .diag-block { padding: 40px 20px; }
  .nav-links { left: 20px; right: 20px; }
}

/* ============ EYEBROW ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: var(--eyebrow-transform);
  color: var(--teal);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.eyebrow.no-dot::before { display: none; }
.on-light .eyebrow { color: var(--teal-deep); }
.on-light .eyebrow::before { background: var(--teal-deep); }

/* ============ HEADINGS / HIGHLIGHT ============ */
/* destaque unico em todas as secoes: verde vivo, fundo claro ou escuro */
.hl { color: var(--teal-vivid); }

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--text-dark-mute);
}
.on-dark .section-head p { color: var(--text-light-mute); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--text-light); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { font-size: 17px; line-height: 1; transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-accent { background: var(--teal); color: var(--ink); }
.btn-accent:hover { background: #74D2D0; }

.btn-ghost-dark { background: transparent; color: var(--text-light); border-color: var(--line-dark); }
.btn-ghost-dark:hover { border-color: var(--teal); color: var(--teal); }

.btn-ghost-light { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn-ghost-light:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

.btn-dark { background: var(--ink); color: var(--text-light); }
.btn-dark:hover { background: var(--ink-3); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.header.scrolled {
  background: rgba(10, 13, 18, 0.92);
  border-bottom-color: var(--line-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--teal);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.logo em { font-style: normal; color: var(--teal); }
.nav-links {
  display: none;
  position: absolute;
  top: 76px;
  right: 28px;
  min-width: 260px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  flex-direction: column;
  align-items: stretch;
  padding: 18px;
  gap: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.nav-links.open { display: flex; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light-mute);
  transition: color 0.15s ease, background 0.15s ease;
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
}
.nav-links a:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  background: var(--teal);
  color: var(--ink) !important;
  border-radius: var(--r-pill);
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.nav-cta:hover { background: #74D2D0 !important; }
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  background: var(--ink);
  color: var(--text-light);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 0 96px; /* compensa o header fixo translúcido */
  position: relative;
  overflow: hidden;
}
/* — imagem de fundo do hero + camadas de escurecimento — */
/* caixa 52% mais larga que o hero, começando fora da borda esquerda:
   aproxima o zoom e põe a mulher em ~72% da tela, preenchendo o canto
   direito; object-position Y=0 ancora o topo (cabeça nunca corta) */
.hero-bg {
  position: absolute;
  top: 0;
  left: -2%;
  bottom: 0;
  width: 120%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 53% 0%;
  transform-origin: 72% 14%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* escurece a foto + degradê da esquerda (texto) para a direita */
  background:
    linear-gradient(90deg, rgba(10,13,18,0.97) 0%, rgba(10,13,18,0.9) 34%, rgba(10,13,18,0.55) 68%, rgba(10,13,18,0.18) 100%),
    linear-gradient(180deg, rgba(10,13,18,0.5) 0%, rgba(10,13,18,0.2) 38%, rgba(10,13,18,0.8) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(38px, 4.8vw, 60px);
  color: var(--text-light);
  margin-bottom: 26px;
  text-wrap: balance;
  perspective: 900px;
}

/* — destaque rotativo: efeito de escrita com cursor — */
.rotator {
  display: inline-block;
  white-space: nowrap;
  min-height: 1.12em;
}
.rotator::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.92em;
  background: currentColor;
  margin-left: 6px;
  vertical-align: -0.08em;
  animation: caret-blink 1s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce) {
  .rotator::after { display: none; }
}
@keyframes caret-blink {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: 0; }
}
.hero-sub {
  font-size: 19px;
  color: var(--text-light-mute);
  max-width: 560px;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ LOGOS STRIP ============ */
.logos-strip {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 30px 0;
}
.logos-strip .marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee var(--marquee-speed, 40s) linear infinite;
}
.logos-strip .marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-light-mute);
  white-space: nowrap;
  opacity: 0.75;
}
.chega-frase {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-light);
  white-space: nowrap;
}
.chega-frase strong {
  color: #F76459;
  font-weight: 800;
}
.chega-sep {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F76459;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ============ SOLUÇÕES ============ */
.solucoes { background: var(--paper); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* — entrada em carrossel: esquerda → direita, fade + deslize — */
@media (prefers-reduced-motion: no-preference) {
  .sol-grid .sol-card { opacity: 0; }
  .sol-grid.reveal .sol-card { animation: solCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .sol-grid.reveal .sol-card:nth-child(1) { animation-delay: 0.05s; }
  .sol-grid.reveal .sol-card:nth-child(2) { animation-delay: 0.22s; }
  .sol-grid.reveal .sol-card:nth-child(3) { animation-delay: 0.39s; }
}
@keyframes solCardIn {
  from { opacity: 0; transform: translateX(-48px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.sol-card {
  background: var(--ink);
  color: var(--text-light);
  border-radius: 28px;
  padding: 12px 12px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(10, 13, 18, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sol-card:hover {
  transform: translateY(-6px);  box-shadow: 0 22px 50px rgba(10, 13, 18, 0.18);
}
.sol-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--ink-3);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.sol-media .slot-img { width: 100%; height: 100%; }
.sol-phase {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--teal);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.sol-body {
  padding: 24px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.sol-body h3 {
  font-size: 21px;
  color: var(--text-light);
}
.sol-body p {
  font-size: 15px;
  color: var(--text-light-mute);
  flex: 1;
}
.sol-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sol-link:hover { color: #74D2D0; }

/* ============ MÉTODO / BENEFÍCIOS ============ */
.metodo { background: var(--paper-2); }
.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.metodo-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metodo-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}
.metodo-item:last-child { border-bottom: none; }
.metodo-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--teal-soft);
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.metodo-icon svg { width: 20px; height: 20px; color: var(--teal-deep); }
.metodo-item p { font-size: 16.5px; color: var(--text-dark); line-height: 1.5; }
.metodo-item p strong { font-weight: 700; }
.metodo-list .metodo-item {
  opacity: 0;
  transform: translateY(-22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}
.metodo-list.reveal .metodo-item { opacity: 1; transform: none; }
.metodo-list.reveal .metodo-item:nth-child(1) { transition-delay: .05s; }
.metodo-list.reveal .metodo-item:nth-child(2) { transition-delay: .18s; }
.metodo-list.reveal .metodo-item:nth-child(3) { transition-delay: .31s; }
.metodo-list.reveal .metodo-item:nth-child(4) { transition-delay: .44s; }
@media (prefers-reduced-motion: reduce) {
  .metodo-list .metodo-item { opacity: 1; transform: none; transition: none; }
}
.metodo-visual { aspect-ratio: 4 / 3; }
.metodo-visual .slot-img { width: 100%; height: 100%; }

/* ============ IMPACTO (números) ============ */
.impacto {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
}
.impacto-stat {
  padding: 12px 44px;
  text-align: center;
  border-left: 1px solid var(--line-light);
}
.impacto-stat:first-child { border-left: none; }
.impacto-num {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(52px, 6.4vw, 80px);
  letter-spacing: var(--display-tracking);
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.impacto-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark-mute);
}

/* ============ CASES ============ */
.cases { background: var(--ink); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}
.case-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  overflow: hidden;
}
.case-media .slot-img { width: 100%; height: 100%; }
/* leve fade de baixo pra cima, blendando a foto no card */
.case-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, var(--ink-3) 4%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.case-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  z-index: 2;
  text-decoration: none;
}
.case-card:hover .case-play { transform: scale(1.08); }
.case-play svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.case-body { padding: 22px 24px 26px; }
.case-body h3 { font-size: 18px; color: var(--text-light); margin-bottom: 6px; }
.case-body p { font-size: 14.5px; color: var(--text-light-mute); }
.case-result {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
}

/* ============ MODAL DE VÍDEO (depoimentos) ============ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(6, 9, 12, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-modal[hidden] { display: none; }
.video-modal.open { opacity: 1; }
.video-modal-inner {
  position: relative;
  width: min(460px, 100%);
  max-height: 100%;
  overflow-y: auto;
  border-radius: var(--radius);
  background: #fff;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}
.video-modal.open .video-modal-inner { transform: none; }
.video-modal-inner iframe { display: block; width: 100%; border: 0; }
.video-modal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  font-size: 14px;
  color: var(--text-dark-mute);
}
.video-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }

/* ============ COMPARATIVO ============ */
.comparativo { background: var(--paper-2); }
.comp-table {
  border: 1.5px solid var(--line-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--line-light);
}
.comp-row:last-child { border-bottom: none; }
/* reveal de cima pra baixo ao entrar na tela */
.comp-table .comp-row {
  opacity: 0;
  transform: translateY(-18px);
  clip-path: inset(0 0 100% 0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1), clip-path .55s cubic-bezier(.22,.61,.36,1);
}
.comp-table.reveal .comp-row { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.comp-table.reveal .comp-row:nth-child(1) { transition-delay: .00s; }
.comp-table.reveal .comp-row:nth-child(2) { transition-delay: .12s; }
.comp-table.reveal .comp-row:nth-child(3) { transition-delay: .24s; }
.comp-table.reveal .comp-row:nth-child(4) { transition-delay: .36s; }
.comp-table.reveal .comp-row:nth-child(5) { transition-delay: .48s; }
.comp-table.reveal .comp-row:nth-child(6) { transition-delay: .60s; }
@media (prefers-reduced-motion: reduce) {
  .comp-table .comp-row { opacity: 1; transform: none; clip-path: none; transition: none; }
}
.comp-row > div {
  padding: 22px 26px;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.comp-head { background: var(--paper); }
.comp-head > div {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 17px;
  padding: 24px 26px;
}
.comp-label { font-weight: 700; color: var(--text-dark); }
.comp-us {
  background: var(--teal-soft);
  font-weight: 600;
  color: var(--text-dark);
}
.comp-head .comp-us { background: var(--teal); color: var(--ink); }
.comp-them { color: var(--text-dark-mute); }
.comp-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.comp-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  color: var(--text-dark-mute);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ============ FUNDADORES ============ */
.fundadores { background: var(--ink-2); }
.fund-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.fund-photo { aspect-ratio: 3 / 3.4; }
.fund-photo .slot-img { width: 100%; height: 100%; }
.fund-content h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--text-light);
  margin-bottom: 20px;
}
.fund-content > p {
  font-size: 17px;
  color: var(--text-light-mute);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.fund-content > p strong { color: var(--text-light); }
.fund-team {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.fund-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 14px 22px;
}
.fund-card strong {
  display: block;
  font-size: 15px;
  color: var(--text-light);
}
.fund-card span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ============ DIAGNÓSTICO / CTA ============ */
.diagnostico { background: var(--paper); }
.diag-block {
  background: var(--ink);
  color: var(--text-light);
  border-radius: calc(var(--r-lg) + 8px);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.diag-content h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--text-light);
  margin-bottom: 18px;
}
.diag-content > p {
  font-size: 17px;
  color: var(--text-light-mute);
  margin-bottom: 26px;
}
.diag-points { display: flex; flex-direction: column; gap: 12px; }
.diag-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-light);
}
.diag-points .comp-check { background: var(--teal); color: var(--ink); }
.diag-form {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 36px;
  color: var(--text-dark);
}
.diag-form h3 { font-size: 21px; margin-bottom: 20px; color: var(--text-dark); }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line-light);
  border-radius: calc(var(--r) - 4px);
  outline: none;
  background: var(--paper-2);
  color: var(--text-dark);
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--teal-deep); }
.diag-form .btn { width: 100%; justify-content: center; }
.diag-form-note {
  font-size: 13px;
  color: var(--text-dark-mute);
  text-align: center;
  margin-top: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--text-light);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 32px;
  /* perf: nao renderiza ate aproximar do viewport (esta sempre abaixo da dobra) */
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-tag {
  font-size: 15px;
  color: var(--text-light-mute);
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 15px;
  color: var(--text-light-mute);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text-light); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-light-mute);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  .hero { padding: 132px 0 72px; }
  /* reforça o degradê: o texto passa a ocupar mais da largura */
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10,13,18,0.96) 0%, rgba(10,13,18,0.88) 45%, rgba(10,13,18,0.6) 75%, rgba(10,13,18,0.3) 100%),
      linear-gradient(180deg, rgba(10,13,18,0.5) 0%, rgba(10,13,18,0.2) 38%, rgba(10,13,18,0.8) 100%);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .sol-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .impacto-grid { grid-template-columns: 1fr; }
  .impacto-stat { border-left: none; border-top: 1px solid var(--line-light); padding: 28px 8px; }
  .impacto-stat:first-child { border-top: none; padding-top: 8px; }
  .fund-photo { max-width: 480px; }
  .metodo-grid, .fund-grid, .diag-block { grid-template-columns: 1fr; gap: 40px; }
  .diag-block { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  /* celular: foto centralizada atrás do texto, overlay uniforme */
  .hero-bg { left: 0; width: 100%; object-position: 55% 0%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,13,18,0.84) 0%, rgba(10,13,18,0.76) 45%, rgba(10,13,18,0.9) 100%);
  }
  .nav-links { left: 28px; }
  .sol-grid, .cases-grid { grid-template-columns: 1fr; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-row .comp-label { padding-bottom: 4px; }
  .comp-row .comp-them { padding-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ POLISH v6 ============ */
::selection { background: var(--teal); color: var(--ink); }
section[id] { scroll-margin-top: 84px; }
.section-head h2 { text-wrap: balance; }

/* — reveals genéricos on-scroll — */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; }
  [data-reveal].in { animation: revealUp 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) both; animation-delay: var(--rd, 0s); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* — entrada do hero ao carregar — */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { opacity: 0; animation: revealUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
  .hero-copy h1 { animation-delay: 0.05s; }
  .hero-copy .hero-sub { animation-delay: 0.18s; }
  .hero-copy .hero-ctas { animation-delay: 0.32s; }
}

/* — indicador de scroll do hero — */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  margin-left: -22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hero-scroll:hover { border-color: var(--teal); color: var(--teal); }
.hero-scroll svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll svg { animation: scrollNudge 2.2s ease-in-out infinite; }
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

/* — micro-interações — */
.sol-media .slot-img, .case-media .slot-img { transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1); }
.sol-card:hover .sol-media .slot-img,
.case-card:hover .case-media .slot-img { transform: scale(1.045); }
.sol-link .arrow { transition: transform 0.2s ease; }
.sol-card:hover .sol-link .arrow, .sol-link:hover .arrow { transform: translateX(4px); }
.metodo-icon { transition: background 0.25s ease; }
.metodo-icon svg { transition: color 0.25s ease; }
.metodo-item:hover .metodo-icon { background: var(--teal); }
.metodo-item:hover .metodo-icon svg { color: var(--ink); }
.btn:active { transform: translateY(0) scale(0.98); }
.header.scrolled { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22); }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 3px rgba(46, 140, 138, 0.14); }

/* ============ UX/CONVERSÃO v7 ============ */
.hero-risk {
  margin-top: 18px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy .hero-risk { animation-delay: 0.46s; }
}
.comp-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.comp-cta p {
  font-size: 17px;
  color: var(--text-mid, #5c6670);
  max-width: 520px;
  text-wrap: pretty;
}
.diag-scarcity {
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  display: inline-block;
}
.field input:user-invalid { border-color: #d06a5c; }

/* imagens de conteúdo (versão de produção) */
.slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
