/* ==========================================================================
   Destak Assessoria · landing page
   Tokens da marca: preto profundo + lima da logo (#9CFC04)
   ========================================================================== */
:root {
  --bg: #0A0A0B;
  --bg-2: #0F0F11;
  --card: #141416;
  --card-2: #1B1B1F;
  --ink: #F3F4EF;
  --ink-2: #C7C9C1;
  --muted: #8B8F88;
  --line: #242529;
  --line-2: #33343A;
  --lime: #9CFC04;
  --lime-2: #8CE619;
  --lime-ink: #0B1200;
  --lime-soft: rgba(156, 252, 4, .12);
  --wa: #25D366;
  --radius: 18px;
  --radius-s: 12px;
  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--ink); }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 112px); }
.section--alt { background: var(--bg-2); }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.08; margin: 0; font-weight: 800; }
h1 { font-size: clamp(1.85rem, 5vw + .6rem, 3.55rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.85rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
.hl { font-style: normal; color: var(--lime); }
.lead { color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.15rem); }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 .72rem/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--lime); background: var(--lime-soft); border: 1px solid rgba(156, 252, 4, .28);
  padding: 9px 14px; border-radius: 999px; margin-bottom: 22px;
}

/* ---------- botões ---------- */
a, button, summary { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 28px; border-radius: 999px; border: 1px solid transparent;
  background: var(--lime); color: var(--lime-ink); font: 600 1rem/1 var(--font-body);
  cursor: pointer; transition: background .2s, transform .2s, border-color .2s; white-space: nowrap;
}
.btn:hover { background: var(--lime-2); }
.btn:active { transform: translateY(1px); }
.btn .btn__icon { width: 20px; height: 20px; transition: transform .2s; }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--card-2); border-color: var(--muted); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn--wa { background: var(--wa); color: #05240F; }
.btn--wa:hover { background: #1FBE5A; }

/* ---------- topo ---------- */
.topbar { position: absolute; inset: 0 0 auto 0; z-index: 5; padding-block: 26px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo img { height: 40px; width: auto; }
.online { display: flex; align-items: center; gap: 12px; font-size: .86rem; line-height: 1.3; color: var(--ink-2); }
.online__avatar { position: relative; width: 44px; height: 44px; flex: 0 0 44px; }
.online__avatar img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); }
.online__dot {
  position: absolute; right: 0; bottom: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); border: 2px solid var(--bg); box-shadow: 0 0 0 0 rgba(156, 252, 4, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(156, 252, 4, .55); } 70% { box-shadow: 0 0 0 9px rgba(156, 252, 4, 0); } 100% { box-shadow: 0 0 0 0 rgba(156, 252, 4, 0); } }
.online__txt strong { display: block; color: var(--ink); font-weight: 600; }
.online__txt small { display: block; font-size: inherit; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(150px, 20vw, 220px) clamp(64px, 8vw, 104px);
  min-height: min(92vh, 920px); display: flex; align-items: flex-end;
}
.hero__glow {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(156, 252, 4, .16), transparent 62%),
    radial-gradient(40% 40% at 10% 90%, rgba(156, 252, 4, .07), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}
.hero__mark {
  position: absolute; z-index: -1; right: -6vw; top: 6vh; width: clamp(360px, 46vw, 760px);
  opacity: .075; filter: grayscale(1) brightness(2.2); pointer-events: none; user-select: none;
}
.hero__title { max-width: 22ch; }
.hero__rule { height: 1px; background: var(--line-2); margin-block: clamp(28px, 4vw, 44px); }
.hero__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 48px; align-items: center; }
.hero__text { max-width: 62ch; }
.hero__cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

/* ---------- divisor pontilhado ---------- */
.divisor {
  height: 44px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .26) 1px, transparent 1.6px);
  background-size: 8px 8px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: .75;
}

/* ---------- captura / formulário ---------- */
.capture__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.capture__intro h2 { max-width: 16ch; margin-bottom: 28px; }
.info { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-top: 14px; }
.info__icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--lime); color: var(--lime-ink); display: grid; place-items: center; }
.info__icon svg { width: 22px; height: 22px; }
.info__body h3 { margin-bottom: 6px; font-size: 1.12rem; }
.info__body p { color: var(--ink-2); font-size: .95rem; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 30px); }
.form-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.form-head .badge { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); font: 500 .72rem/1 var(--font-mono); letter-spacing: .12em; text-transform: uppercase; }
.form-head .badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); display: inline-block; }
.field { margin-bottom: 12px; }
.field__label { display: block; font: 500 .82rem/1.3 var(--font-body); color: var(--ink-2); margin: 0 0 6px 2px; }
.input, .select {
  width: 100%; min-height: 56px; background: var(--card-2); border: 1px solid var(--line-2); border-radius: var(--radius-s);
  color: var(--ink); padding: 0 16px; font: 400 1rem/1.4 var(--font-body); transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: var(--muted); }
.input:focus, .select:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px var(--lime-soft); }
.input[aria-invalid="true"], .select[aria-invalid="true"] { border-color: #FF6B6B; }
.select {
  appearance: none; -webkit-appearance: none; padding-right: 46px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C7C9C1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.select option { background: #1B1B1F; color: var(--ink); }
.phone { display: flex; align-items: stretch; }
.phone__prefix { display: flex; align-items: center; gap: 8px; padding: 0 14px; background: var(--card-2); border: 1px solid var(--line-2); border-right: 0; border-radius: var(--radius-s) 0 0 var(--radius-s); color: var(--ink-2); font-size: .95rem; white-space: nowrap; }
.phone .input { border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.form-note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin-top: 12px; font-size: .9rem; min-height: 1.2em; color: var(--ink-2); }
.form-status.is-error { color: #FF8A8A; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- resultados ---------- */
.results__head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 24px 64px; align-items: end; margin-bottom: 40px; }
.results__head h2 { max-width: 16ch; }
.cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.case { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 360px; position: relative; overflow: hidden; }
.case::after { content: ""; position: absolute; inset: auto -30% -40% auto; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, rgba(156, 252, 4, .16), transparent 65%); pointer-events: none; }
.case__client { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-2); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); flex: 0 0 9px; }
.case__client small { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.case__num { font: 800 clamp(2.6rem, 4vw, 3.4rem)/1 var(--font-display); letter-spacing: -.03em; color: var(--lime); font-variant-numeric: tabular-nums; margin-top: 10px; }
.case__label { font-weight: 600; font-size: 1.05rem; }
.case__quote { color: var(--ink-2); font-size: .95rem; border-left: 2px solid var(--lime); padding-left: 14px; }
.case__src { margin-top: auto; padding-top: 12px; }

.logos { margin-top: 48px; }
.logos__label { text-align: center; margin-bottom: 20px; }
.logos__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logos__item { background: #F3F4EF; border-radius: 12px; height: 72px; padding: 12px 22px; display: flex; align-items: center; justify-content: center; }
.logos__item img { max-height: 44px; width: auto; max-width: 160px; }
.logos__txt { font: 800 1.05rem/1 var(--font-display); letter-spacing: -.01em; text-transform: uppercase; color: #14181A; }

.videos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }
.videos[hidden] { display: none; }
.yt { position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: var(--card-2) center/cover no-repeat; border: 1px solid var(--line); cursor: pointer; padding: 0; }
.yt::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 35%, transparent 70%, rgba(0, 0, 0, .55)); }
.yt__title { position: absolute; top: 16px; left: 16px; right: 16px; color: #fff; font-weight: 600; font-size: .95rem; text-align: left; text-shadow: 0 1px 6px rgba(0, 0, 0, .6); }
.yt__play { position: absolute; left: 50%; top: 50%; width: 68px; height: 68px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--lime); display: grid; place-items: center; color: var(--lime-ink); }
.yt__play svg { width: 26px; height: 26px; margin-left: 3px; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- quem somos ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 72px; align-items: start; }
.about__grid h2 { max-width: 18ch; margin-bottom: 20px; }
.about__tag { color: var(--muted); line-height: 1.5; }
.about__tag strong { display: block; }
.about__text { display: grid; gap: 18px; color: var(--ink-2); padding-top: 8px; }
.layers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 56px; }
.layer { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.layer__k { color: var(--lime); font: 500 .72rem/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.layer h3 { margin-bottom: 10px; }
.layer p { color: var(--ink-2); font-size: .95rem; margin-bottom: 18px; }
.layer__list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-2); margin-bottom: 8px; }
.layer__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }

/* ---------- faixa de números ---------- */
.stats { background: linear-gradient(120deg, #A8FF1F 0%, #8CE619 45%, #5DB800 100%); padding-block: clamp(48px, 6vw, 72px); }
.stats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.stat { background: #0B0B0C; border-radius: 16px; padding: 28px; min-height: 160px; }
.stat__n { font: 800 clamp(2.2rem, 3.4vw, 2.9rem)/1 var(--font-display); letter-spacing: -.03em; color: var(--lime); font-variant-numeric: tabular-nums; margin-bottom: 10px; }
.stat__t { color: var(--ink-2); font-size: 1rem; max-width: 30ch; }
.stat__t strong { color: var(--ink); }

/* ---------- marca em movimento ---------- */
.mark { position: relative; height: 150vh; }
.mark__stage { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; overflow: hidden; }
.mark__glow { position: absolute; width: min(70vw, 720px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(156, 252, 4, .28), transparent 62%); filter: blur(10px); opacity: 0; }
.mark__inner { position: relative; display: grid; justify-items: center; gap: 22px; text-align: center; padding-inline: var(--gutter); }
.mark__symbol { width: clamp(150px, 24vw, 280px); will-change: transform, opacity; filter: drop-shadow(0 20px 60px rgba(156, 252, 4, .25)); }
.mark__word { font: 800 clamp(2rem, 6vw, 4.6rem)/1 var(--font-display); letter-spacing: .06em; opacity: 0; transform: translateY(16px); }
.mark__tag { opacity: 0; transform: translateY(10px); }
@media (max-width: 720px) { .mark { height: 120vh; } }
/* viewport gigante (screenshot de página inteira, impressão): sem scroll, sem efeito */
@media (min-height: 1800px) {
  .mark { height: auto; padding-block: 120px; }
  .mark__stage { position: static; height: auto; }
}

/* ---------- método ---------- */
.method__head { max-width: 760px; margin-bottom: 40px; }
.method__head h2 { margin-bottom: 16px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stepc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; min-height: 290px; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.stepc:hover { border-color: rgba(156, 252, 4, .5); transform: translateY(-3px); }
.stepc__n { font: 800 2.2rem/1 var(--font-display); color: var(--lime); letter-spacing: -.03em; margin-bottom: 26px; }
.stepc__k { color: var(--muted); font: 500 .7rem/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.stepc h4 { margin-bottom: 10px; }
.stepc p { color: var(--ink-2); font-size: .94rem; }

/* ---------- faixa de CTA ---------- */
.band__box {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #17171A, #0F0F11); border: 1px solid var(--line); border-radius: 28px;
  padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 32px; align-items: center;
}
.band__box::after { content: ""; position: absolute; z-index: -1; right: -10%; top: -40%; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, rgba(156, 252, 4, .2), transparent 62%); }
.band__box h2 { margin-bottom: 14px; max-width: 18ch; }
.band__box .btn { justify-self: end; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 32px 64px; align-items: start; }
.faq__aside { position: sticky; top: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.faq__aside img { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-2); margin-bottom: 16px; }
.faq__aside h3 { margin-bottom: 8px; }
.faq__aside p { color: var(--ink-2); margin-bottom: 20px; }
.faq__list details { border-top: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 22px 0; font: 600 1.05rem/1.4 var(--font-body); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--lime); font-weight: 400; font-size: 1.3rem; transition: transform .2s, background .2s; }
.faq__list details[open] summary::after { content: "–"; background: var(--lime-soft); }
.faq__a { padding: 0 0 22px; color: var(--ink-2); max-width: 64ch; }

/* ---------- rodapé ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 36px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: .88rem; }
.footer__brand img { height: 30px; width: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .88rem; color: var(--ink-2); }
.footer__links a:hover { color: var(--lime); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 50; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  transition: transform .2s, bottom .3s;
}
body.sticky-on .wa-float { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- animações de entrada ---------- */
/* só esconde quando o JS está ativo (classe .js no <html>); sem JS, tudo aparece */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- páginas internas (obrigado, legais, 404) ---------- */
.page { position: relative; padding-block: clamp(140px, 18vw, 190px) clamp(64px, 8vw, 104px); min-height: 70vh; }
.thanks__box { max-width: 760px; }
.thanks__box h1 { margin-bottom: 18px; max-width: 16ch; }
.thanks__box .lead { margin-bottom: 28px; }
.notice { display: flex; gap: 14px; align-items: flex-start; background: rgba(255, 138, 138, .08); border: 1px solid rgba(255, 138, 138, .35); border-radius: var(--radius-s); padding: 16px 18px; margin-bottom: 24px; font-size: .95rem; color: var(--ink-2); }
.notice--info { background: var(--lime-soft); border-color: rgba(156, 252, 4, .35); }
.next { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.next__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.next__item .stepc__n { font-size: 1.6rem; margin-bottom: 12px; }
.next__item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.next__item p { color: var(--ink-2); font-size: .92rem; }
.legal { max-width: 780px; }
.legal h1 { margin-bottom: 8px; }
.legal .updated { margin-bottom: 40px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--lime); }
.legal .placeholder { background: rgba(255, 214, 0, .12); border: 1px dashed rgba(255, 214, 0, .5); padding: 0 6px; border-radius: 4px; color: #FFE27A; }
.legal code { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: .88em; background: var(--card); border: 1px solid var(--line); padding: 1px 6px; border-radius: 4px; overflow-wrap: anywhere; }

/* ---------- integração Google Ads (home) ---------- */
.gads { max-width: 780px; }
.gads h2 { margin-bottom: 20px; }
.gads .lead { margin-bottom: 20px; }
.gads p, .gads li { color: var(--ink-2); margin-bottom: 12px; }
.gads ul { padding-left: 20px; list-style: disc; margin-bottom: 20px; }
.gads a { color: var(--lime); }

/* ---------- responsivo ---------- */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .hero__row, .capture__grid, .results__head, .about__grid, .faq__grid, .band__box { grid-template-columns: 1fr; }
  .cases, .layers, .stats__grid, .videos, .next { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .band__box .btn { justify-self: start; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__cta .btn { flex: 1 1 240px; }
  .online__txt { display: none; }
  .case { min-height: 0; }
  .stepc { min-height: 0; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .logo img { height: 34px; }
  .hero { min-height: 0; }
  .btn { white-space: normal; text-align: center; padding: 0 22px; }
  .info { padding: 18px; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}
/* ---------- barra fixa de CTA (só no celular) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 11, .88); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { width: 100%; min-height: 52px; }
.swipe-hint { display: none; margin-top: 12px; font-size: .68rem; }

/* ---------- ajustes de celular ---------- */
@media (max-width: 960px) {
  .sticky-cta { display: block; }
  body.sticky-on .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 720px) {
  .hero { padding-top: 124px; padding-bottom: 56px; }
  .hero__rule { margin-block: 22px; }
  .hero__text { font-size: 1rem; }
  .hero__mark { width: 320px; right: -110px; top: auto; bottom: -60px; opacity: .06; }
  .hero__cta { flex-direction: column; gap: 4px; }
  .hero__cta .btn { flex: 0 0 auto; width: 100%; }
  .hero__cta .btn--ghost { background: none; border: 0; min-height: 44px; color: var(--ink-2); text-decoration: underline; text-underline-offset: 4px; }
  .form-head .badge, .form-head .mono { white-space: nowrap; }
  .footer__inner { padding-right: 64px; }
  .online__txt { display: block; }
  .online__txt small { display: none; }
  .divisor { height: 32px; }
  .section { padding-block: 64px; }
  .eyebrow { margin-bottom: 16px; }
  .info { padding: 18px; gap: 14px; }
  .form-card { padding: 18px; }
  .field { margin-bottom: 10px; }
  .results__head { margin-bottom: 28px; }
  .case { padding: 22px; gap: 10px; }
  .case__num { font-size: 2.5rem; }
  /* camadas e método viram carrossel por toque */
  .layers, .steps {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    gap: 12px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); padding-bottom: 6px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .layers::-webkit-scrollbar, .steps::-webkit-scrollbar { display: none; }
  .layers { margin-top: 36px; }
  .layer, .stepc { flex: 0 0 84%; scroll-snap-align: start; min-height: 0; padding: 22px; }
  .swipe-hint { display: block; }
  /* logos em faixa rolável */
  .logos { margin-top: 36px; }
  .logos__row {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; gap: 10px;
    margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }
  .logos__row::-webkit-scrollbar { display: none; }
  .logos__item { flex: 0 0 auto; height: 62px; padding: 10px 18px; }
  .stats { padding-block: 40px; }
  .stat { padding: 22px; min-height: 0; }
  /* marca: bloco estático, sem scroll pinado */
  .mark { height: auto; padding-block: 64px; }
  .mark__stage { position: relative; height: auto; }
  .mark__glow { position: absolute; inset: 0; margin: auto; width: 280px; height: 280px; }
  .mark__symbol, .mark__word, .mark__tag, .mark__glow { opacity: 1 !important; transform: none !important; }
  .mark__symbol { width: 150px; }
  .method__head { margin-bottom: 28px; }
  .band__box { padding: 28px 22px; border-radius: 20px; gap: 22px; }
  .faq__aside { order: 2; margin-top: 8px; }
  .faq__list summary { padding: 18px 0; font-size: 1rem; }
  .footer__links a { display: inline-flex; align-items: center; min-height: 44px; }
}
@media (max-width: 380px) {
  .online__txt { display: none; }
  .logo img { height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .online__dot { animation: none; }
  .mark { height: auto; padding-block: 96px; }
  .mark__stage { position: static; height: auto; }
  .mark__symbol, .mark__word, .mark__tag, .mark__glow { opacity: 1 !important; transform: none !important; }
}
