/* =========================================================
   Smart Badge · Componentes
   ========================================================= */

/* =========================================================
   GRÃO GLOBAL · textura de filme sutil sobre tudo
   (fixed + pointer-events:none = sem repaint no scroll)
   ========================================================= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   ASSET SLOT  (mockup vivo do layout)
   ========================================================= */
/* Placeholder discreto e intencional (não grita "wireframe").
   Borda fina, label silencioso com um único ponto verde. */
.asset-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,0.03), transparent 55%),
    var(--bg-onyx-soft);
  box-shadow: var(--edge-top), inset 0 0 40px rgba(0,0,0,0.3);
  color: var(--text-faint);
  overflow: hidden;
}
.asset-slot .asset-tag {
  position: relative;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.asset-slot .asset-tag::before {
  content: "";
  display: block;
  width: 7px; height: 7px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(91,254,80,0.4);
}
.asset-slot .asset-tag small {
  display: block;
  color: var(--text-faint);
  margin-top: .4rem;
  text-transform: none;
  letter-spacing: .02em;
}
.asset-slot .asset-tag { max-width: 100%; overflow-wrap: anywhere; }

/* Itens de grid/flex que contêm asset-slots ou texto longo precisam poder
   encolher abaixo do min-content (evita overflow horizontal no mobile). */
.hero .container > *,
.viewer__pin > *,
.tech-layer > *,
.gap-grid > *,
.roi > *,
.stat-grid > *, .eco-grid > *, .steps > *, .case-grid > *, .hub-grid > *,
.proof-grid > *, .seal-grid > *, .pricing-grid > *, .before-after > *,
.legal-grid > *, .lifecycle-grid > * { min-width: 0; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              background-color var(--dur) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #07140A;
  box-shadow: var(--shadow-sm), var(--edge-top);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), var(--edge-top);
}
.btn--primary:active { transform: scale(0.97); }

.btn--secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  box-shadow: var(--edge-top);
}
.btn--secondary:hover {
  border-color: rgba(244,245,242,0.32);
  background: rgba(244,245,242,0.03);
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--text);
  background: rgba(244,245,242,0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(244,245,242,0.12);
  transform: translateY(-1px);
}

.btn--lg { padding: 1.1rem 2rem; font-size: 1.1rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* link com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--dur) var(--ease-out);
}
.arrow-link:hover { gap: 0.85em; }
.arrow-link svg { transition: transform var(--dur) var(--ease-out); }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 40%),
    var(--bg-onyx-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-md), var(--edge-top);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  overflow: hidden;
}
/* foco de luz que segue o topo no hover (sutil, sem neon) */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -10%, rgba(91,254,80,0.07), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,245,242,0.16);
  box-shadow: var(--shadow-lg), var(--edge-top);
}
.card:hover::after { opacity: 1; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); }

.card-icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 1.4rem;
  border-radius: 11px;
  background: rgba(91,254,80,0.08);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.15);
}
.card-icon svg { width: 22px; height: 22px; stroke-width: 1.5; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  /* NÃO usar transform/filter aqui (viraria containing-block do .nav fixed no mobile) */
  transition: top var(--dur) var(--ease-out), left var(--dur) var(--ease-out),
              right var(--dur) var(--ease-out), max-width var(--dur) var(--ease-out),
              padding var(--dur) var(--ease-out), border-radius var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
/* blur no pseudo-elemento (mantém o header fora do containing-block do .nav fixed) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background-color var(--dur) var(--ease-out), backdrop-filter var(--dur) var(--ease-out);
}
/* ao rolar: vira uma pill flutuante arredondada, destacada das bordas */
.site-header.is-scrolled {
  top: 0.7rem;
  left: 1rem;
  right: 1rem;
  max-width: 1480px;
  padding: 0.45rem 0.6rem 0.45rem 1.5rem;
  border-radius: 999px;
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}
.site-header.is-scrolled::before {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.brand__symbol { width: 28px; height: 28px; color: var(--teal); }
.brand__word { width: auto; height: 18px; color: var(--text); }
/* logo SMART BADGE no header (lettering empilhado, branco) */
.brand__logo {
  height: 38px; width: auto; display: block;
  transition: filter 260ms var(--ease-out), height var(--dur) var(--ease-out);
}
.site-header.is-scrolled .brand__logo { height: 33px; }
/* hover na logo: realça o dourado na própria logo (sem glow atrás) */
.brand:hover .brand__logo {
  filter: brightness(1.32) saturate(1.12);
}

.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.nav > a:not(.btn) { transition: color var(--dur) var(--ease-out); position: relative; }
.nav > a:not(.btn):hover { color: var(--text); }
.nav > a:not(.btn)[aria-current="page"] { color: var(--text); }
/* centraliza o grupo de links: auto antes do 1º link e antes do idioma */
.nav > a:not(.btn):first-of-type { margin-left: auto; }
/* empurra o seletor de idioma + CTA pra direita do bar (desktop) */
.nav .langsel { margin-left: auto; }
/* botão de fechar (só no overlay mobile) */
.nav__close { display: none; }

.header-cta { flex: none; }

/* ---------- seletor de idioma (PT / EN) ---------- */
.langsel {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex: none;
  padding: 3px;
  border-radius: 999px;
  background: rgba(244,245,242,0.06);
  box-shadow: inset 0 0 0 1px var(--line);
}
.langsel__opt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.langsel__opt:hover { color: var(--text); }
.langsel__opt.is-active { background: rgba(244,245,242,0.12); color: var(--text); }
.langsel .flag {
  width: 18px; height: 13px;
  border-radius: 3px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
}
@media (max-width: 480px) {
  .langsel__opt { padding: 0.34rem 0.4rem; gap: 0.3rem; }
  .langsel .flag { width: 16px; height: 12px; }
}

/* hambúrguer mobile */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: var(--z-header);
  }
  .nav > a:not(.btn) { color: var(--text); }
  /* anula a centralização de desktop: no overlay em coluna ela jogava o
     primeiro link ("A solução") pra direita */
  .nav > a:not(.btn):first-of-type { margin-left: 0; }
  body.nav-open .nav { transform: translateX(0); }
  /* seletor de idioma e CTA aparecem dentro do menu, centralizados */
  .nav .langsel { margin-left: 0; margin-top: 0.5rem; }
  .header-cta { display: inline-flex; margin-top: 0.5rem; }
  /* botão de fechar, topo direito do overlay */
  .nav__close {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px; color: var(--text);
  }
  .nav__close svg { width: 26px; height: 26px; }
}

/* ---------- mega-menu (Para quem · Casos de uso) ---------- */
.nav__item--has-menu { position: relative; display: inline-flex; }
.nav__trigger {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font: inherit; font-size: 0.95rem; color: var(--text-muted);
  cursor: pointer; background: none; border: 0; padding: 0;
  transition: color var(--dur) var(--ease-out);
}
.nav__trigger svg { width: 13px; height: 13px; transition: transform var(--dur) var(--ease-out); }
.nav__item--has-menu:hover .nav__trigger,
.nav__trigger[aria-expanded="true"] { color: var(--text); }
.nav__item--has-menu:hover .nav__trigger svg,
.nav__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__mega {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px) scale(0.98);
  transform-origin: top center;
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2.4rem;
  padding: 1.5rem 1.75rem;
  background: rgba(14,14,14,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0,0,0,0.5), var(--edge-top);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
  z-index: 10;
}
.nav__mega--single { grid-template-columns: 1fr; min-width: 280px; }
/* ponte invisível pra o hover não cair no gap entre trigger e painel */
.nav__mega::before { content: ""; position: absolute; left: 0; right: 0; top: -0.85rem; height: 0.85rem; }
.nav__item--has-menu:hover .nav__mega,
.nav__item--has-menu:focus-within .nav__mega,
.nav__item--has-menu.is-open .nav__mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav__megacol { display: flex; flex-direction: column; }
.nav__megalabel {
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 0.7rem; padding-inline: 0.5rem;
}
.nav__megacol a {
  font-size: 0.98rem; color: var(--text-muted);
  padding: 0.42rem 0.55rem; border-radius: 9px;
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.nav__megacol a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

@media (max-width: 960px) {
  .nav__item--has-menu { width: 100%; flex-direction: column; align-items: center; }
  .nav__trigger { font-size: 1.4rem; color: var(--text); pointer-events: none; }
  .nav__trigger svg { display: none; }
  .nav__mega {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: none; border: 0; box-shadow: none; padding: 0.6rem 0 1.4rem;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    grid-template-columns: 1fr; gap: 0.9rem; text-align: center;
  }
  .nav__megalabel { text-align: center; margin-bottom: 0.4rem; }
  .nav__megacol { align-items: center; gap: 0.1rem; }
  .nav__megacol a { font-size: 1.02rem; color: var(--text-muted); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--bg-onyx);
  border-top: 1px solid var(--line);
  padding-block: clamp(3.5rem, 7vh, 6rem) 2.5rem;
  overflow: hidden;
}
.footer-watermark {
  position: absolute;
  right: -2%;
  bottom: -10%;
  width: clamp(220px, 30vw, 460px);
  color: var(--text);
  opacity: 0.05;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-grid p { color: var(--text-muted); max-width: 38ch; margin-top: 1rem; font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { color: var(--text-muted); transition: color var(--dur) var(--ease-out); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  position: relative;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer-phone { color: var(--text); font-weight: 600; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   REVEAL (default de toda seção)
   ========================================================= */
[data-reveal] { will-change: transform, opacity; }
/* fallback se JS falhar: garante visibilidade */
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* =========================================================
   SECTION HEADERS genéricos
   ========================================================= */
.section-head { max-width: 30ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 0; }
.section-head--wide { max-width: 22ch; }

/* =========================================================
   S1 · HERO
   ========================================================= */
/* Hero estilo Apple Watch Ultra: fundo preto, produto gigante centralizado
   vazando pela base, texto sobreposto no canto inferior esquerdo. */
.hero {
  position: relative;
  min-height: 100svh;
  /* degradê inspirado na própria imagem: luz de estúdio suave no topo-centro
     (~#11141a), escurecendo para quase-preto nas bordas (~#030405) */
  background:
    radial-gradient(ellipse 100% 85% at 50% 32%, #12151b 0%, #08090c 46%, #030405 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
/* imagem full-bleed: o fundo do hero É o fundo da própria imagem (sem recorte).
   116% de altura dá folga para o parallax sutil sem revelar bordas. */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__media picture { display: contents; }
/* badge menor, contido. Máscara radial nas bordas faz a imagem fundir no
   degradê do hero (mesmas tonalidades), sem emenda visível. */
.hero__img {
  width: 92%;
  height: 82%;
  object-fit: contain;
  object-position: center;
  will-change: transform;
  -webkit-mask-image: radial-gradient(68% 84% at 50% 44%, #000 30%, transparent 78%);
          mask-image: radial-gradient(68% 84% at 50% 44%, #000 30%, transparent 78%);
}
@keyframes float-soft { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
/* scrim na base: legibilidade do texto + produto funde no preto */
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, #030405 4%, rgba(3,4,5,0.55) 38%, transparent 100%);
}
/* overlay estilo Apple: texto à esquerda + CTA à direita, alinhados pela base */
.hero__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 7vh, 4.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.hero__brand { color: var(--accent); font-weight: 800; }
.hero__brand-logo { height: 1.85em; width: auto; display: block; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 0.95;
  color: var(--text);
  margin: 0;
}
.hero__title .accent { color: var(--accent); }
.hero__sub {
  margin-top: clamp(1.15rem, 2.2vh, 1.7rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--text-muted);
}
.hero__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; flex: none; }

@media (prefers-reduced-motion: reduce) { .hero__img { animation: none; } }

/* phone + tablet em retrato: badge centralizado e elevado pra fechar o vazio
   preto do topo, com largura limitada pra não estourar em telas largas (tablet) */
@media (max-width: 1024px) {
  /* block em vez de grid: o <source> dentro do <picture display:contents> criava
     uma 2ª linha de grid que prendia o badge na metade de baixo. Em block o badge
     é posicionado por margin de forma previsível (parallax do GSAP usa transform). */
  /* centraliza por posicionamento absoluto: left:50% + margin-left negativo de
     metade da largura. Funciona com o badge mais largo que a tela (overflow
     simétrico) e não usa transform — que o GSAP reserva pro parallax. */
  .hero__media { display: block; }
  .hero__media picture { display: block; }
  .hero__img {
    --badge-w: min(135vw, 64vh);
    position: absolute;
    top: clamp(72px, 11vh, 150px);
    left: 50%;
    margin-left: calc(var(--badge-w) / -2);
    width: var(--badge-w); max-width: none; height: auto; max-height: none;
    -webkit-mask-image: radial-gradient(58% 78% at 50% 47%, #000 38%, transparent 80%);
            mask-image: radial-gradient(58% 78% at 50% 47%, #000 38%, transparent 80%);
  }
}
@media (max-width: 768px) {
  .hero__overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 0 var(--gutter) clamp(2.5rem, 6vh, 4rem);
  }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero__cta { width: 100%; }
  .hero::after { height: 56%; }
}

/* =========================================================
   S2 · O PONTO CEGO (editorial split, imagem sangra à esquerda)
   ========================================================= */
.blindspot {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
  /* premium estilo Aston Martin: base onyx quase-preta com um glow de
     verde britânico profundo (não neon), aprofundando para preto nas bordas */
  background: radial-gradient(125% 120% at 62% 36%, #0d2f24 0%, #08160f 44%, #050707 100%);
  overflow: hidden;
}
/* imagem maior, sangra à esquerda. A MÁSCARA radial dissolve a borda direita
   (e topo/base) no fundo verde, sem emenda, igual o badge no hero.
   A tinta verde fica DENTRO da máscara (no ::after) pra feather junto. */
.blindspot__media {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(86% 128% at 20% 48%, #000 46%, transparent 86%);
          mask-image: radial-gradient(86% 128% at 20% 48%, #000 46%, transparent 86%);
}
.blindspot__media picture { display: contents; }
.blindspot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
  /* colorida (sem P&B): só uma leve clareada pra a cena na loja aparecer */
  filter: brightness(1.06) saturate(1.02);
  will-change: transform;
}
/* tom verde só nas bordas pra fundir no fundo, sem encobrir a cor da foto */
.blindspot__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(125% 118% at 26% 45%, rgba(11,50,38,0.04) 0%, rgba(6,20,14,0.42) 84%),
    rgba(10,44,33,0.06);
}
/* vinheta só nas bordas pra dissolver no fundo; o centro (o device) fica limpo */
.blindspot__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(130% 120% at 26% 46%, transparent 54%, rgba(5,12,9,0.32) 92%);
}
.blindspot__content {
  padding-block: clamp(3rem, 7vw, 7rem);
  padding-inline: clamp(2rem, 5vw, 5.5rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 48rem;
}
.blindspot__eyebrow { margin-bottom: 1.5rem; font-weight: 700; }
.blindspot__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--parchment);
  font-size: clamp(2.6rem, 5.4vw, 6rem);
  margin: 0;
}
.blindspot__title .word { display: inline-block; will-change: transform, opacity; }
.blindspot__title .accent { color: var(--accent); }
.blindspot__lede {
  margin-top: 1.85rem;
  max-width: 50ch;
  color: rgba(237,234,224,0.7);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
}
.blindspot__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}
.blindspot__icon { flex: none; width: 44px; height: 44px; color: var(--accent); }
.blindspot__icon svg { width: 100%; height: 100%; }
.blindspot__featurelabel {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--parchment);
  margin: 0;
}
@media (max-width: 860px) {
  .blindspot { grid-template-columns: 1fr; min-height: auto; }
  .blindspot__media {
    height: 58vh;
    -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
  }
  .blindspot__media img { object-position: 35% center; }
  .blindspot__content {
    padding: clamp(2rem, 8vw, 3.5rem) var(--gutter) clamp(3rem, 10vw, 5rem);
    max-width: 100%;
  }
  .blindspot__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
}

/* =========================================================
   S3 · NÚMEROS DO PROBLEMA (counters)
   ========================================================= */
/* headline pinada que acende no scroll */
/* degradê radial herdado dos vídeos (eclipse): integra a seção em vez de preto
   chapado, pra os cards não ficarem isolados (desk + mobile) */
.section--onyx:has(.s3-cards) {
  background:
    radial-gradient(95% 55% at 50% 40%, #14171c 0%, #0b0d11 56%, #070809 100%),
    var(--bg-onyx);
}
.s3-pin {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: transparent;
}
.s3-cards {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-block: clamp(3rem, 8vh, 6rem);
}
/* mobile: encurta a área pinada e o respiro, pra subir os cards e cortar o preto morto */
@media (max-width: 860px) {
  .s3-pin { min-height: 64svh; }
  .s3-cards { min-height: 0; padding-block: clamp(1.5rem, 5vh, 3rem); }
}
.scroll-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  max-width: 15ch;
  margin: 0;
  color: var(--text);
}
.scroll-highlight .hl-word {
  display: inline-block;
  opacity: 0.16;          /* cinza: estado de repouso */
  will-change: opacity;
}
.no-js .scroll-highlight .hl-word { opacity: 1; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stat-card .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-num::before { display: none; } /* o tick agora vai no rótulo da categoria */
.s3-cards-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
  color: var(--text);
  margin: 0;
  max-width: 22ch;
}
.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
/* traço verde removido a pedido — rótulo fica só com o texto mono */
.stat-label { gap: 0; }
.stat-card .stat-desc { color: var(--text-muted); margin: 0.85rem 0 0.75rem; max-width: 30ch; }
.stat-card .stat-body { color: var(--text-faint); font-size: 0.88rem; line-height: 1.55; margin: 0 0 1.5rem; max-width: 34ch; }
.stat-card .source { margin-top: auto; }
.stat-card { display: flex; flex-direction: column; }

@media (max-width: 860px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   S3b · A RESPOSTA (degradê de amanhecer, verde da marca)
   ========================================================= */
.dawn {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #050707;
  overflow: hidden;
  isolation: isolate;
}
/* eclipse "amanhecer": canvas WebGL (com faíscas) + fallback degradê CSS */
.dawn__canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* atmosfera verde subindo do horizonte (fallback, camada de fundo) */
.dawn__glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  will-change: transform, opacity;
  background:
    radial-gradient(135% 105% at 50% 150%, rgba(91,254,80,0.26) 0%, rgba(91,254,80,0.06) 38%, transparent 64%);
}
/* a borda brilhante do eclipse (a primeira luz) — fallback por cima */
.dawn__rim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  will-change: clip-path, opacity, filter;
  background:
    radial-gradient(120% 92% at 50% 138%, transparent 60.5%, rgba(214,255,196,0.7) 62.4%, rgba(120,255,110,0.4) 64.2%, rgba(91,254,80,0.10) 69%, transparent 76%);
}
/* shader assumiu: esconde o degradê CSS (fallback) */
.dawn--shader .dawn__glow,
.dawn--shader .dawn__rim { display: none; }

.dawn__content {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  padding-block: clamp(4rem, 10vh, 8rem);
}
/* scrim suave atrás do texto: legibilidade sobre o brilho do eclipse, sem matar a borda */
.dawn__content::before {
  content: '';
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 130%; height: 118%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(72% 64% at 50% 52%, rgba(5,7,7,0.72) 0%, rgba(5,7,7,0.34) 52%, transparent 76%);
}
.dawn__pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: 1.85rem;
}
.dawn__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  color: var(--text);
  margin: 0;
  text-shadow: 0 2px 30px rgba(5,7,7,0.55);
}
.dawn__title .accent { color: var(--accent); }
.dawn__sub {
  margin: 1.85rem auto 0;
  max-width: 46ch;
  color: var(--parchment);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  text-shadow: 0 1px 18px rgba(5,7,7,0.9), 0 1px 4px rgba(5,7,7,0.95);
}
.dawn__cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
@media (max-width: 600px) {
  .dawn__title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .dawn__cta .btn { flex: 1 1 100%; }
}

/* =========================================================
   S4 · A LACUNA · card estilo Apple com o device
   ========================================================= */
/* fundo em degradê inspirado na S2 (verde profundo premium) */
.gapsec {
  background: radial-gradient(120% 120% at 60% 34%, #0d2f24 0%, #08160f 46%, #050707 100%);
}
.gapsec__line { display: block; }
.gapsec__head {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--parchment);
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  max-width: 16ch;
}
.gapsec__head .accent { color: var(--accent); }
.gapsec__card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(120% 130% at 78% 50%, rgba(8,70,42,0.35), transparent 60%),
    linear-gradient(180deg, #04190e, #020c07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: clamp(20px, 2.5vw, 34px);
  box-shadow: var(--shadow-lg), var(--edge-top);
  overflow: hidden;
  min-height: clamp(360px, 46vw, 540px);
}
.gapsec__copy { padding: clamp(2rem, 4.5vw, 4.5rem); max-width: 48ch; }
.gapsec__copy .lede { color: var(--text-muted); margin-bottom: 1.5rem; }
.gapsec__punch {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  color: var(--parchment);
  margin: 0;
  max-width: 22ch;
}
.gapsec__punch .accent { color: var(--accent); }
/* layout invertido: imagem à esquerda, texto à direita (glow segue a imagem) */
.gapsec__card--flip {
  background:
    radial-gradient(120% 130% at 22% 50%, rgba(8,70,42,0.35), transparent 60%),
    linear-gradient(180deg, #04190e, #020c07);
}
.gapsec__media {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: inherit;
}
.gapsec__media picture { display: contents; }
.gapsec__media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.5rem, 2vw, 1.5rem);
}
/* foto (não o device flutuante): preenche o lado do card */
.gapsec__media--photo img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  max-height: none;
}
@media (max-width: 860px) {
  .gapsec__card { grid-template-columns: 1fr; min-height: 0; }
  .gapsec__media { order: -1; min-height: 340px; }
  .gapsec__media img { max-height: 360px; }
  .gapsec__copy { padding: clamp(1.5rem, 6vw, 2.5rem); max-width: 100%; }
  .gapsec__head { max-width: 100%; }
}

/* =========================================================
   S4 · A LACUNA (strike animado)
   ========================================================= */
.gap-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.gap-lines {
  display: grid;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--parchment);
}
.strike { position: relative; display: inline-block; }
.strike::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 52%;
  width: 104%;
  height: 0.09em;
  background: var(--accent);
  transform: scaleX(var(--strike-scale, 0));
  transform-origin: left center;
  border-radius: 2px;
  transition: transform 0.1s linear;
}
.strike.struck::after { --strike-scale: 1; }
.compare-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: rgba(255,255,255,0.02);
}
.compare-block .lede { margin-bottom: 1.5rem; }
.compare-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-row .from { color: var(--text-faint); }
.compare-row .to { color: var(--accent); font-weight: 600; }
.compare-row svg { color: var(--accent); flex: none; }

@media (max-width: 860px) {
  .gap-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   S5 · PRODUCT VIEWER (sticky scrub)
   ========================================================= */
.viewer { position: relative; }
.viewer__pin {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.viewer__stage {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}
.viewer__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.viewer__layer:first-child { opacity: 1; }
.viewer__layer .asset-slot { height: 100%; }
.viewer__callouts { position: relative; }
.viewer__callout {
  opacity: 0.25;
  transition: opacity var(--dur) var(--ease-out);
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.viewer__callout.is-active { opacity: 1; }
.viewer__callout h3 { color: var(--text); margin-bottom: 0.35rem; }
.viewer__callout p { color: var(--text-muted); font-size: 0.95rem; }
.viewer__callout .idx {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.viewer__serial {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-faint);
  letter-spacing: 0.14em;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .viewer__pin { grid-template-columns: 1fr; min-height: auto; gap: 2rem; }
  .viewer__stage { max-width: 460px; margin-inline: auto; }
  .viewer__callout { opacity: 1; }
  .viewer__callout.is-active { border-left: 2px solid var(--accent); padding-left: 1rem; }
}

/* =========================================================
   S4b · O FILME · player estilo Apple
   ========================================================= */
.filmsec__head { max-width: 32ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.filmsec__head h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 1rem; }
.filmsec__head .lede { max-width: 54ch; }
.player {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: clamp(16px, 2vw, 28px);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.07);
  isolation: isolate;
}
.player__video { width: 100%; height: 100%; object-fit: cover; display: block; }
/* botão de play: círculo de vidro, triângulo opticamente centrado */
.player__play {
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0A0A0A;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
  cursor: pointer;
}
.player__play svg { width: 38%; height: 38%; margin-left: 8%; } /* compensação óptica */
.player__play:hover { transform: translate(-50%, -50%) scale(1.06); background: #fff; }
.player__play:active { transform: translate(-50%, -50%) scale(0.96); }
.player__meta {
  position: absolute;
  left: 1.1rem; bottom: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
  background: rgba(10,10,10,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.player.is-playing .player__play,
.player.is-playing .player__meta {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out);
}

/* =========================================================
   S5 · HARDWARE · vídeo escrubado pelo scroll (estilo Apple)
   ========================================================= */
.hw-scroll {
  position: relative;
  height: 300vh;          /* curso de scroll para o scrub */
  background: var(--bg-onyx);
}
.hw-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* fundo casado com o degradê do vídeo (visível só durante load/letterbox) */
  background: radial-gradient(72% 82% at 50% 40%, #14171c 0%, #0b0d11 48%, #070809 100%);
}
/* o vídeo é a estrela: preenche a seção inteira */
.hw-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: contents;
}
/* scrim para legibilidade da copy (escurece só esquerda + base; centro/badge limpo) */
.hw-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* fade no topo na cor da base do eclipse: o vídeo emerge sem seam */
    linear-gradient(180deg, #050707 0%, rgba(5,7,7,0) 15%),
    linear-gradient(90deg, rgba(6,7,9,0.92) 0%, rgba(6,7,9,0.45) 26%, transparent 50%),
    linear-gradient(0deg, rgba(6,7,9,0.75) 0%, transparent 26%);
}
.hw-copy {
  position: absolute;
  left: var(--gutter);
  bottom: 12vh;
  max-width: 40ch;
  z-index: 2;
}
.hw-copy .eyebrow { margin-bottom: 1.25rem; }
.hw-copy h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
.hw-callout {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  min-height: 3.4em;
  max-width: 36ch;
  transition: opacity var(--dur) var(--ease-out);
}
.hw-steps { display: flex; gap: 0.5rem; margin-top: 1.75rem; }
.hw-steps span {
  width: 26px; height: 3px; border-radius: 2px;
  background: var(--line-strong);
  transition: background-color var(--dur) var(--ease-out);
}
.hw-steps span.is-active { background: var(--accent); }
.hw-hint {
  position: absolute;
  left: 50%; bottom: 5vh; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint);
  animation: hint-bob 2s var(--ease-in-out) infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%      { transform: translateX(-50%) translateY(4px); opacity: 1; }
}

/* ---------- loading estilo Apple (vídeo pesado do hardware) ----------
   o vídeo entra com fade só quando pronto; antes disso, fundo eclipse + spinner.
   classes adicionadas via JS, então sem JS o vídeo aparece normal (fallback). */
.hw-scroll.is-hw-loading .hw-video { opacity: 0; }
.hw-scroll.is-hw-loaded .hw-video {
  opacity: 1;
  animation: hw-settle 0.9s var(--ease-out) both;
}
.hw-video { transition: opacity 0.7s var(--ease-out); }
@keyframes hw-settle { from { transform: scale(1.035); } to { transform: scale(1); } }

.hw-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s var(--ease-out);
}
.hw-scroll.is-hw-loaded .hw-loader { opacity: 0; }
/* anel cônico com cauda esmaecida — o "activity indicator" minimalista da Apple */
.hw-loader__ring {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(244,245,242,0) 8%, rgba(244,245,242,0.9) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2.5px));
  animation: hw-rot 0.9s linear infinite;
}
@keyframes hw-rot { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hw-loader__ring { animation: none; opacity: 0.6; }
  .hw-scroll.is-hw-loaded .hw-video { animation: none; }
}

/* mobile e reduced-motion: sem pin/scrub, seção empilhada com poster estático */
@media (max-width: 960px) {
  .hw-scroll { height: auto; }
  /* fundo = radial "eclipse" do vídeo + camada de topo na cor da seção anterior
     (#050707) que esfuma: elimina a emenda dawn→hardware no topo do pin */
  .hw-pin {
    position: relative; height: auto; min-height: 0; padding-block: var(--section-pad);
    gap: 1.25rem; overflow: hidden;
    background:
      linear-gradient(180deg, #050707 0%, rgba(5,7,7,0) 18%),
      radial-gradient(130% 75% at 50% 40%, #12151b 0%, #0a0c10 50%, #060708 100%);
  }
  .hw-pin::before { display: none; }
  /* hardware valorizado: full-bleed + leve zoom (cover crop). Máscara vertical
     longa esfuma topo/base do vídeo, derretendo a faixa no fundo sem corte. */
  .hw-video {
    position: static; inset: auto; width: 100vw; max-width: none;
    aspect-ratio: 4 / 3; height: auto; object-fit: cover; object-position: center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 80%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 80%, transparent 100%);
  }
  .hw-copy { position: static; max-width: 100%; padding-inline: var(--gutter); }
  .hw-hint { display: none; }
  /* spinner centrado sobre a faixa do vídeo (não sobre o pin inteiro) */
  .hw-loader { inset: var(--section-pad) 0 auto 0; height: 75vw; }
}
@media (prefers-reduced-motion: reduce) {
  .hw-scroll { height: auto; }
  .hw-pin { position: relative; height: auto; min-height: 0; padding-block: var(--section-pad); gap: 2rem; overflow: visible; background: var(--bg-onyx); }
  .hw-pin::before { display: none; }
  .hw-video { position: static; inset: auto; width: min(80vw, 760px); height: auto; object-fit: contain; }
  .hw-copy { position: static; max-width: 100%; padding-inline: var(--gutter); }
  .hw-hint { display: none; animation: none; }
}

/* =========================================================
   S6 · COMO FUNCIONA (steps)
   ========================================================= */
/* "Liga e esquece" e "Versatilidade": fundo verde profundo em degradê (mesmo da gapsec / #41) */
#como-funciona,
#versatilidade {
  background: radial-gradient(125% 120% at 62% 36%, #0d2f24 0%, #08160f 44%, #050707 100%);
}

/* ilustração do modo (linha accent) centralizada no tile do carrossel */
.mode-illu {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--accent);
}
.mode-illu svg { width: 42%; height: 42%; opacity: 0.92; }
/* card em destaque (Coach pessoal do gestor): anel accent */
.slide--featured .slide__media {
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(91,254,80,0.5), 0 0 44px rgba(91,254,80,0.14);
}

/* carrossel estilo Apple: trilho horizontal com scroll-snap + setas */
.carousel { position: relative; margin-top: clamp(2rem, 4vw, 3.5rem); }
.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: 0.25rem;
}
.slide {
  flex: 0 0 clamp(280px, 42vw, 560px);
  scroll-snap-align: start;
}
.slide__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  background: #050707;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255,255,255,0.06);
  margin-bottom: 1.25rem;
}
.slide .asset-slot { height: 100%; border: none; border-radius: 0; }
.slide__media > picture { position: absolute; inset: 0; }
.slide__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide__copy {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.5;
  max-width: 46ch;
}
.slide__copy strong { color: var(--parchment); font-weight: 600; }

.carousel__nav { display: flex; justify-content: flex-end; gap: 0.75rem; margin-top: 1.75rem; }
.carousel__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--parchment);
  background: rgba(232, 228, 214, 0.08);
  border: 1px solid rgba(232, 228, 214, 0.18);
  transition: background-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.carousel__arrow svg { width: 20px; height: 20px; }
.carousel__arrow:hover { background: rgba(232, 228, 214, 0.16); }
.carousel__arrow:active { transform: scale(0.94); }
.carousel__arrow:disabled { opacity: 0.3; pointer-events: none; }

/* player de card: vídeo -> imagem (still) -> botão de play minimalista */
.player--card { position: absolute; inset: 0; }
.player--card .player__video,
.player--card .player__still {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.player--card .player__still {
  z-index: 1;
  transition: opacity var(--dur) var(--ease-out);
}
.player--card.is-playing .player__still { opacity: 0; }
/* botão de play minimalista, sempre no canto inferior direito */
.player__replay {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(10,10,10,0.46);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  /* sombra > borda: anel branco nítido (lê em fundo escuro) + halo de separação */
  box-shadow: 0 4px 16px rgba(0,0,0,0.55), inset 0 0 0 1.5px rgba(255,255,255,0.7);
  transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
              background-color 200ms ease,
              box-shadow 200ms ease,
              opacity 240ms ease;
  cursor: pointer;
}
/* play branco; o próprio SVG já vem com o offset óptico (borda reta em x=8) */
.player__replay svg {
  width: 17px; height: 17px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.player__replay:hover {
  background: rgba(10,10,10,0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6), inset 0 0 0 1.5px rgba(255,255,255,0.92);
}
.player__replay:active { transform: scale(0.96); }
.player--card.is-playing .player__replay { opacity: 0; pointer-events: none; }

@media (max-width: 760px) { .slide { flex-basis: 82vw; } }

.privacy-band {
  margin-top: 2.5rem;
  border: 1px solid var(--accent-dim);
  background: rgba(91,254,80,0.05);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.privacy-band .eyebrow { margin: 0; }
.privacy-band span.txt { color: var(--text); font-size: 0.95rem; }

@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   S7 · ECOSSISTEMA (4 camadas)
   ========================================================= */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
/* pipeline do ciclo (estilo Apple): nós com ponto accent + setas sutis, sem caixa */
.flow { margin-top: clamp(2rem, 4vw, 3.5rem); text-align: center; }
.flow__steps {
  list-style: none; padding: 0;
  margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.5rem 0;
  max-width: 100%;
}
.flow__step {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  letter-spacing: -0.01em;
  color: var(--parchment); white-space: nowrap;
}
.flow__step::before {
  content: ""; flex: none;
  width: 6px; height: 6px; border-radius: 50%;
  margin-right: 0.45rem;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(91,254,80,0.6);
}
.flow__step:not(:last-child)::after {
  content: "→"; color: var(--accent); opacity: 0.55;
  margin: 0 clamp(0.55rem, 1.1vw, 0.95rem);
  font-family: var(--font-body); font-weight: 400;
}
.flow__caption {
  margin: 1.85rem auto 0;
  max-width: 40ch;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}
.flow__cta { margin-top: clamp(2rem, 3.5vw, 2.75rem); text-align: center; }
/* mobile: empilha os passos na vertical (a seta vira ↓), em vez do wrap quebrado */
@media (max-width: 600px) {
  .flow__steps { flex-direction: column; align-items: center; gap: 0.55rem; }
  .flow__step { flex-wrap: wrap; justify-content: center; font-size: 1.05rem; }
  .flow__step:not(:last-child)::after {
    content: "↓";
    flex-basis: 100%; width: 100%; text-align: center;
    margin: 0.3rem 0 0;
  }
}
@media (max-width: 960px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .eco-grid { grid-template-columns: 1fr; } }

/* =========================================================
   S8 · PROVA / COACHING (counters)
   ========================================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.proof-item { border-top: 1px solid var(--line-strong); padding-top: 1.4rem; }
.proof-item .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--parchment);
  font-variant-numeric: tabular-nums;
}
.proof-item p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.6rem; }
.proof-item .source { margin-top: 0.75rem; }
@media (max-width: 860px) { .proof-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .proof-grid { grid-template-columns: 1fr; } }

/* =========================================================
   S9 · CASOS DE USO (card-link)
   ========================================================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.case-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-onyx-soft);
  transition: border-color var(--dur) var(--ease-out);
}
.case-card:hover { border-color: var(--accent); }
.case-card__media { position: relative; overflow: hidden; }
.case-card__media .asset-slot {
  aspect-ratio: 4/3;
  border: none;
  border-radius: 0;
  transition: transform var(--dur-slow) var(--ease-out);
}
.case-card:hover .case-card__media .asset-slot { transform: scale(1.05); }
.case-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,31,18,0.55), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.case-card:hover .case-card__media::after { opacity: 1; }
.case-card__body { padding: 1.5rem; }
.case-card__body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.case-card__body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.case-card__stat {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } }

/* =========================================================
   S10 · SEGURANÇA / SELOS
   ========================================================= */
.seal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6vw, 1.4rem);
  margin: clamp(2rem, 4vh, 3rem) 0;
}
.seal {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.4rem, 2vw, 1.85rem);
  border-radius: clamp(14px, 1.4vw, 18px);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.seal:hover {
  transform: translateY(-4px);
  background: rgba(91,254,80,0.045);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.32), 0 18px 40px rgba(0,0,0,0.4);
}
.seal__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent);
  background: rgba(91,254,80,0.1);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.22);
}
.seal__icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.seal h3 { font-size: 1.02rem; font-weight: 700; color: var(--parchment); margin: 0; letter-spacing: -0.01em; }
.seal p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.45; margin: 0; }
@media (max-width: 860px) { .seal-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .seal-grid { grid-template-columns: 1fr; } }

/* integração com a seção de baixo: degradê no rodapé fundindo no tom da próxima */
.secsec { position: relative; }
.secsec::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(120px, 18vh, 200px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, #0A0A0A 100%);
}

.security-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--parchment);
  max-width: 48ch;
}

/* =========================================================
   S9c · O QUE É (E O QUE NÃO É)
   ========================================================= */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}
.compare__col {
  padding: clamp(1.85rem, 3vw, 3.25rem);
  border-radius: clamp(20px, 2vw, 28px);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.compare__col--yes {
  background: rgba(91,254,80,0.05);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.2);
}
.compare__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: clamp(1rem, 1.6vw, 1.6rem);
  color: var(--text-muted);
}
.compare__col--yes .compare__label { color: var(--accent); }
.compare ul { list-style: none; margin: 0; padding: 0; }
.compare li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: clamp(1.1rem, 1.7vw, 1.5rem) 0;
  font-size: clamp(1.14rem, 1.5vw, 1.42rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--text-muted);
}
.compare li + li { border-top: 1px solid var(--line); }
.compare__col--yes li { color: var(--parchment); }
.compare__mark { font-size: 1.25rem; line-height: 1.3; font-weight: 700; }
.compare__col--no .compare__mark { color: var(--text-faint); }
.compare__col--yes .compare__mark { color: var(--accent); }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; gap: 1rem; }
  .compare li { font-size: 1.1rem; }
}

/* =========================================================
   S10b · FAQ / OBJEÇÕES
   ========================================================= */
.faq { max-width: 820px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.1rem, 1.8vw, 1.5rem) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  letter-spacing: -0.01em;
  color: var(--parchment);
  transition: color var(--dur) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: #fff; }
.faq__item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px; height: 11px;
  margin-right: 4px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--dur) var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.faq__body { padding: 0 0 clamp(1.1rem, 1.8vw, 1.5rem); }
.faq__body p {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-muted);
}

/* =========================================================
   S10c · COMO COMEÇAR
   ========================================================= */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.step {
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border-radius: clamp(16px, 1.6vw, 20px);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.step:hover {
  transform: translateY(-4px);
  background: rgba(91,254,80,0.045);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.32), 0 18px 40px rgba(0,0,0,0.4);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.step h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin: 1rem 0 0.6rem;
}
.step p {
  margin: 0;
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.55;
  color: var(--text-muted);
}
/* degradê verde da LP: verde no topo escurecendo pro preto embaixo,
   integrando a seção no "Quer ver funcionando?" logo abaixo */
.startsec { background: var(--grad-green); }

/* CTA intermediário (pós-prova), compacto e centralizado */
.midcta { background: var(--bg-green-deep); text-align: center; padding-block: clamp(3rem, 7vh, 5rem); }
.midcta .container { display: flex; flex-direction: column; align-items: center; gap: clamp(1.25rem, 2.5vw, 1.85rem); }
.midcta__line {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  line-height: 1.05;
  color: var(--parchment);
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}
.midcta__line .accent { color: var(--accent); }

/* reasseguro de privacidade no modal de demo (redução de fricção) */
.demo-form__assure {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-faint);
  text-align: center;
}
.demo-form__error {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #ff8a80;
  text-align: center;
}
.demo-form__error[hidden] { display: none; }

/* =========================================================
   S7b · COMO MONTAR
   ========================================================= */
.assembly {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
/* bento: o step 1 (os três componentes) ocupa a largura toda no topo */
.assembly__step--wide { grid-column: 1 / -1; }
.assembly__step { display: flex; flex-direction: column; }
/* tile de mídia estilo galeria: raio grande, contorno sutil, zoom leve no hover */
.assembly__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: clamp(18px, 1.8vw, 26px);
  background: #0b0d0c;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.assembly__step--wide .assembly__media { aspect-ratio: 16 / 7; }
.assembly__media picture { display: contents; }
.assembly__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 600ms var(--ease-out);
}
.assembly__step:hover .assembly__media img { transform: scale(1.04); }
/* legenda abaixo do tile (fora do card), estilo galeria Apple */
.assembly__body { padding: clamp(1rem, 1.5vw, 1.4rem) 0.25rem 0; }
.assembly__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.assembly__step h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--parchment);
  margin: 0.7rem 0 0.5rem;
  text-wrap: balance;
}
.assembly__step p {
  margin: 0;
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.55;
  color: var(--text-muted);
  text-wrap: pretty;
  max-width: 48ch;
}
.assembly__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: clamp(2rem, 4vh, 3rem) auto 0;
  max-width: max-content;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: rgba(91,254,80,0.06);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.22);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  letter-spacing: -0.01em;
  color: var(--parchment);
  text-align: center;
}
.assembly__seal svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; }
@media (max-width: 760px) {
  .assembly { grid-template-columns: 1fr; }
  .assembly__step--wide { grid-column: auto; }
  /* passos 2 e 3 ficam em 4/5 (mostra a pessoa inteira); só o tile largo vira 16/9 */
  .assembly__step--wide .assembly__media { aspect-ratio: 16 / 9; }
  .assembly__seal { max-width: 100%; }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   MODAL · AGENDAR DEMONSTRAÇÃO
   ========================================================= */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 4, 0.66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: var(--bg-onyx-soft);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(244,245,242,0.08);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal.is-open .modal__dialog { opacity: 1; transform: scale(1); }

.modal__close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.modal__close:hover { color: var(--text); background: rgba(244,245,242,0.06); }
.modal__close svg { width: 20px; height: 20px; }

.modal__head { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); padding-right: 2rem; }
.modal__head .eyebrow { margin-bottom: 0.85rem; }
.modal__head h2 {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}
.modal__lede {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.demo-form__progress {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}
.demo-form__bar {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(244,245,242,0.1);
  overflow: hidden;
}
.demo-form__bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width var(--dur) var(--ease-out);
}
.demo-form__step { display: flex; flex-direction: column; gap: 1.1rem; }
.demo-form__step[hidden] { display: none; }

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.field__hint { font-weight: 400; color: var(--text-muted); font-size: 0.82rem; }
.field input,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(244,245,242,0.04);
  box-shadow: inset 0 0 0 1px var(--line-strong);
  color: var(--text);
  transition: box-shadow var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus,
.field select:focus {
  outline: none;
  background: rgba(244,245,242,0.06);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235BFE50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.4rem;
  cursor: pointer;
}
.field select option { color: #111312; }
.field--invalid input,
.field--invalid select { box-shadow: inset 0 0 0 1px #ff6b5e; }
.field__err { font-size: 0.8rem; color: #ff8a80; line-height: 1.3; }
.field__err:empty { display: none; }

.demo-form__full { width: 100%; margin-top: 0.4rem; }
.demo-form__actions { display: flex; gap: 0.75rem; margin-top: 0.4rem; }
.demo-form__actions .btn--primary { flex: 1; }

.demo-form__done {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}
.demo-form__done[hidden] { display: none; }
.demo-form__check {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(91,254,80,0.12);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.3);
  margin-bottom: 1rem;
}
.demo-form__check svg { width: 28px; height: 28px; }
.demo-form__done h3 { font-size: 1.3rem; letter-spacing: -0.01em; margin: 0 0 0.5rem; color: var(--text); }
.demo-form__done p { margin: 0; color: var(--text-muted); max-width: 36ch; line-height: 1.5; }
.demo-form__done .btn { margin-top: 1.5rem; }

body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .modal__dialog { transform: none; transition: opacity var(--dur) linear; }
  .modal.is-open .modal__dialog { transform: none; }
  .modal__overlay { transition: opacity var(--dur) linear; }
}
@media (max-width: 480px) {
  .modal__dialog { max-width: 100%; }
}

/* =========================================================
   S11 · CTA FINAL
   ========================================================= */
.cta-final {
  position: relative;
  text-align: center;
  background: var(--grad-green);
  overflow: hidden;
}
.cta-final__watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 620px);
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  max-width: 16ch;
  margin: 0 auto 2.5rem;
  color: var(--parchment);
}
.cta-final .btn-row { justify-content: center; }
.cta-final .footer-phone { margin-top: 1.75rem; display: block; }

/* =========================================================
   PÁGINAS INTERNAS
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: var(--section-pad);
  background: var(--bg-onyx);
}
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 6rem); max-width: 16ch; }
.page-hero .lede { margin-top: 1.75rem; }

.fullbleed-media { margin-top: 3rem; }
.fullbleed-media .asset-slot { aspect-ratio: 16/9; }

/* ANTES / COM / RESULTADO */
.before-after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ba-col h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.ba-col p { color: var(--text-muted); }
.ba-col--result { border: 1px solid var(--accent-dim); border-radius: var(--radius); padding: 1.75rem; background: rgba(91,254,80,0.04); }
@media (max-width: 860px) { .before-after { grid-template-columns: 1fr; } }

.market-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.market-stat + p { color: var(--text-muted); margin-top: 0.75rem; max-width: 50ch; }

/* camada tecnologia full-bleed */
.tech-layer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.tech-layer:nth-child(even) .tech-layer__media { order: -1; }
.tech-layer__copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 1.25rem 0; }
.tech-layer__copy p { color: var(--text-muted); }
.tech-layer + .tech-layer { margin-top: var(--section-pad); }
@media (max-width: 860px) {
  .tech-layer { grid-template-columns: 1fr; }
  .tech-layer:nth-child(even) .tech-layer__media { order: 0; }
}

/* segurança: bases legais + ciclo de vida */
.legal-grid, .lifecycle-grid {
  display: grid;
  gap: 1.25rem;
}
.legal-grid { grid-template-columns: repeat(3, 1fr); }
.lifecycle-grid { grid-template-columns: repeat(4, 1fr); }
.legal-card, .lifecycle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--bg-onyx-soft);
}
.legal-card h3, .lifecycle-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.legal-card p, .lifecycle-card p { color: var(--text-muted); font-size: 0.92rem; }
.lifecycle-card .idx { font-family: var(--font-mono); font-size: 0.74rem; color: var(--accent); letter-spacing: 0.12em; display:block; margin-bottom: 0.75rem; }
@media (max-width: 860px) {
  .legal-grid { grid-template-columns: 1fr; }
  .lifecycle-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) { .lifecycle-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PREÇOS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-onyx-soft);
}
.plan--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(91,254,80,0.06), rgba(255,255,255,0.02));
}
.plan__name { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.plan__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); letter-spacing: -0.04em; margin: 1rem 0 0.25rem; }
.plan__price small { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.plan__note { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; max-width: 40ch; }
.plan ul.features { display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.plan ul.features li { display: flex; gap: 0.65rem; align-items: flex-start; color: var(--text); font-size: 0.95rem; }
.plan ul.features svg { color: var(--accent); flex: none; margin-top: 0.2rem; width: 18px; height: 18px; }
.plan .btn { margin-top: auto; width: 100%; }
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ROI mini calc */
.roi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-onyx-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.roi label { display: block; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.roi input[type="range"] { width: 100%; accent-color: var(--accent); }
.roi .roi-seller-count { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--text); }
.roi-out { display: grid; gap: 1rem; }
.roi-out .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem,4vw,3rem); color: var(--accent); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.roi-out .lbl { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 640px) { .roi { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 0; max-width: 760px; margin-inline: auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--accent); transition: transform var(--dur) var(--ease-out); flex: none; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { color: var(--text-muted); margin-top: 0.85rem; max-width: 64ch; }

/* hub de casos: card grande */
.hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 860px) { .hub-grid { grid-template-columns: 1fr; } }

/* marquee de prova social */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ===================== S7 · Quatro camadas (pilha isométrica revelada no scroll) ===================== */
.layerssec { position: relative; background: var(--bg-onyx); }
/* pin robusto via position: sticky (sem spacer do ScrollTrigger, sem conflito com vizinhos) */
.layerssec__track { position: relative; height: 360vh; }
.layerssec__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.layerssec__grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 2rem;
}
.layerssec__title {
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.layerssec__nav { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; }
.layerssec__nav li {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-faint);
  transition: color 320ms var(--ease-out);
}
.layerssec__nav .num { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; opacity: 0.7; }
.layerssec__nav li.is-active { color: var(--text); }
.layerssec__nav li.is-active .num { color: var(--accent); opacity: 1; }
.layerssec__readout { position: relative; min-height: 5.5rem; }
.layerssec__desc {
  position: absolute; inset: 0; margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.55; max-width: 40ch;
  opacity: 0; transform: translateY(8px);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
  pointer-events: none;
}
.layerssec__desc.is-active { opacity: 1; transform: none; }

.layerssec__scene { perspective: 1700px; display: grid; place-items: center; min-height: 64vh; }
.layerssec__stack {
  position: relative;
  width: clamp(260px, 26vw, 380px);
  aspect-ratio: 5 / 4;
  transform-style: preserve-3d;
  transform: rotateX(55deg) rotateZ(-42deg);
}
.layer {
  position: absolute; inset: 0;
  border-radius: 18px;
  background: linear-gradient(150deg, #12161c 0%, #0a0d11 100%);
  box-shadow: 0 24px 44px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.06);
  padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  transform: translateZ(var(--z, 0));
  transition: box-shadow 400ms var(--ease-out), background 400ms var(--ease-out);
}
.layer:nth-child(1) { --z: 0px; }
.layer:nth-child(2) { --z: 58px; }
.layer:nth-child(3) { --z: 116px; }
.layer:nth-child(4) { --z: 174px; }
.layer__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--accent);
  background: rgba(91,254,80,0.1);
  box-shadow: inset 0 0 0 1px rgba(91,254,80,0.22);
}
.layer__icon svg { width: 20px; height: 20px; }
.layer__label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); }
/* número + descrição só aparecem no card mobile (no desktop é a stack isométrica) */
.layer__num, .layer__desc { display: none; }
/* mockup interno: aparece só na camada ativa (evita conflito entre as layers) */
.layer__mock {
  margin-top: auto; width: 100%;
  color: var(--accent);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.layer__mock svg { width: 100%; height: auto; display: block; }
.layer.is-active {
  background: linear-gradient(150deg, #16201a 0%, #0c1410 100%);
  box-shadow: 0 30px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(91,254,80,0.5), 0 0 44px rgba(91,254,80,0.2);
}
.layer.is-active .layer__mock { opacity: 1; }

.layerssec__foot { text-align: center; padding-block: clamp(2rem, 5vh, 4rem) var(--section-pad); }

@media (max-width: 860px) {
  /* mobile: sai do 3D isométrico (rótulos sobrepostos) e vira lista de cards estática */
  .layerssec__track { height: auto; }
  .layerssec__sticky { position: static; height: auto; overflow: visible; padding-block: var(--section-pad); }
  .layerssec__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .layerssec__nav, .layerssec__readout { display: none; }
  .layerssec__scene { perspective: none; min-height: 0; display: block; }
  .layerssec__stack {
    position: relative; transform: none !important; transform-style: flat;
    width: 100%; aspect-ratio: auto;
    display: flex; flex-direction: column; gap: 1rem;
  }
  /* card mobile rico (label + nº + descrição + mock), espelhando o desktop.
     grid por áreas: ícone à esquerda, nº+título à direita, descrição e mock abaixo */
  .layer {
    position: relative; inset: auto;
    transform: none !important;
    opacity: 1 !important;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon num"
      "icon label"
      "desc desc"
      "mock mock";
    column-gap: 1rem; row-gap: 0.15rem;
    align-content: start;
    padding: 1.5rem 1.6rem;
  }
  .layer__icon { grid-area: icon; align-self: start; }
  .layer__num {
    display: block; grid-area: num; align-self: end;
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
    color: var(--accent);
  }
  .layer__label { grid-area: label; align-self: start; font-size: 1.05rem; }
  .layer__desc {
    display: block; grid-area: desc; margin: 0.7rem 0 0;
    color: var(--text-muted); font-size: 0.97rem; line-height: 1.5;
  }
  .layer__mock { grid-area: mock; opacity: 1; max-width: 200px; margin-top: 1rem; }
  /* todos os cards iguais no mobile (o is-active do JS depende de scroll-jacking) */
  .layer.is-active {
    background: linear-gradient(150deg, #12161c 0%, #0a0d11 100%);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.06);
  }
}
/* reduced-motion: vira seção estática (sem track alto nem sticky) */
@media (prefers-reduced-motion: reduce) {
  .layerssec__track { height: auto; }
  .layerssec__sticky { position: static; height: auto; padding-block: var(--section-pad); }
}


/* ===================== Coaching · editorial full-bleed espelhando a S2 (texto esq · agro dir) ===================== */
.coachsec {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background: radial-gradient(125% 120% at 38% 36%, #0d2f24 0%, #08160f 44%, #050707 100%);
  overflow: hidden;
}
.coachsec__content {
  padding-block: clamp(3rem, 7vw, 7rem);
  padding-inline: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  max-width: 48rem;
}
.coachsec h2 { max-width: 16ch; font-size: clamp(1.7rem, 2.7vw, 2.6rem); line-height: 1.05; }
.coachsec .proof-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
}
/* agro à direita: máscara dissolve a borda esquerda (lado do texto) no verde */
.coachsec__media {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(86% 128% at 80% 48%, #000 48%, transparent 86%);
          mask-image: radial-gradient(86% 128% at 80% 48%, #000 48%, transparent 86%);
}
.coachsec__media picture { display: contents; }
.coachsec__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.coachsec__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(125% 118% at 74% 45%, rgba(11,50,38,0.05) 0%, rgba(6,20,14,0.4) 84%), rgba(10,44,33,0.12);
}
.coachsec__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(130% 120% at 74% 46%, transparent 56%, rgba(5,12,9,0.3) 92%);
}
@media (max-width: 860px) {
  .coachsec { grid-template-columns: 1fr; min-height: 0; }
  .coachsec__content { padding: clamp(2rem, 8vw, 3rem); max-width: 100%; }
  .coachsec__media { order: 2; min-height: 320px; }
}

/* gapsec · foto como destaque: preenche o card inteiro + degradê pra leitura do texto */
.gapsec__card--photo {
  display: flex;
  align-items: flex-end;
  position: relative;
  background: #04190e;
  min-height: clamp(460px, 54vw, 640px);
}
.gapsec__card--photo .gapsec__media {
  position: absolute; inset: 0; display: block;
}
.gapsec__card--photo .gapsec__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 46%; padding: 0; max-height: none;
}
/* degradê: esquerda limpa (mulher + Smart Badge visíveis), direita escurece pro texto */
.gapsec__card--photo .gapsec__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,18,11,0) 34%, rgba(3,18,11,0.5) 56%, rgba(3,18,11,0.92) 82%),
    linear-gradient(0deg, rgba(3,18,11,0.4), transparent 55%);
}
/* texto empilhado à direita, deixando o device do lado esquerdo livre */
.gapsec__card--photo .gapsec__copy {
  position: relative; z-index: 1;
  margin-left: auto;
  width: clamp(300px, 46%, 540px);
  display: flex; flex-direction: column;
  gap: clamp(1.2rem, 2.6vw, 1.9rem);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.gapsec__card--photo .gapsec__copy .lede { color: rgba(232,228,214,0.85); margin: 0; max-width: none; }
.gapsec__card--photo .gapsec__punch { max-width: none; text-shadow: 0 1px 18px rgba(3,18,11,0.6); }
@media (max-width: 760px) {
  .gapsec__card--photo .gapsec__media::after {
    background: linear-gradient(0deg, rgba(3,18,11,0.97) 0%, rgba(3,18,11,0.72) 32%, transparent 64%);
  }
  .gapsec__card--photo .gapsec__copy { width: 100%; }
}
@media (max-width: 860px) {
  .gapsec__card--photo { min-height: clamp(420px, 90vw, 520px); }
  .gapsec__card--photo .gapsec__media img { object-position: center 30%; }
  .gapsec__card--photo .gapsec__media::after {
    background: linear-gradient(0deg, rgba(3,18,11,0.97) 0%, rgba(3,18,11,0.7) 30%, transparent 62%);
  }
}

/* ===================== Casos de uso · grid estilo Apple (tile + caption) ===================== */
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.usecase { display: block; }
.usecase__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: clamp(16px, 1.8vw, 24px);
  overflow: hidden;
  background: #050707;
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255,255,255,0.06);
  margin-bottom: 1.35rem;
  transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.usecase__media picture { display: contents; }
.usecase__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms var(--ease-out);
}
.usecase:nth-child(2) .usecase__media img { object-position: 38% center; }
.usecase:nth-child(3) .usecase__media img { object-position: 36% center; }
.usecase:hover .usecase__media {
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(91,254,80,0.35), 0 0 40px rgba(91,254,80,0.1);
}
.usecase:hover .usecase__media img { transform: scale(1.04); }
.usecase__copy {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 42ch;
}
.usecase__copy strong { color: var(--parchment); font-weight: 600; }
@media (max-width: 860px) { .usecases { grid-template-columns: 1fr; gap: 2rem; max-width: 26rem; margin-inline: auto; } }

/* cta-final com foto do kit integrada (substitui o watermark) */
.cta-final--photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 54vw, 640px);
  display: grid;
  align-content: start;
}
.cta-final__media { position: absolute; inset: 0; }
.cta-final__media picture { display: contents; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; display: block; }
/* tinta verde-escura: integra a foto e dá leitura ao texto (topo escuro, kit visível embaixo) */
.cta-final__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,18,11,0.92) 0%, rgba(2,18,11,0.86) 40%, rgba(2,18,11,0.55) 60%, rgba(2,18,11,0.1) 78%, transparent 88%),
    linear-gradient(0deg, rgba(2,18,11,0.45), transparent 28%);
}
.cta-final--photo .container { position: relative; z-index: 1; padding-top: clamp(2.5rem, 6vw, 5rem); }
.cta-final--photo h2 { text-shadow: 0 2px 26px rgba(2,18,11,0.7); }

/* footer: Smart Badge by Leads2b */
.footer-brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.footer-brand__sb { height: 34px; width: auto; display: block; transition: filter 260ms var(--ease-out); }
.footer-brand__by {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text-muted); letter-spacing: 0.01em;
}
.footer-brand__by img { height: 22px; width: auto; display: block; }
.footer-brand:hover .footer-brand__sb { filter: brightness(1.18); }
