:root {
  --k-primary: #0069b4;
  --k-primary-hover: #005a9c;
  --k-accent: #009ef7;
  --k-ink: #0b3a5c;
  --k-canvas: #f3f7fc;
  --k-surface: #ffffff;
  --k-muted: #475569;
  --k-border: #d7e4f2;
  --k-radius: 8px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-card: 0 12px 32px rgba(11, 58, 92, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--k-ink);
  background: var(--k-surface);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--k-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--k-primary); outline-offset: 2px; }

.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }

/* Float: voltar ao topo (acima do Assistente Kinnect) */
.scroll-top {
  position: fixed;
  right: 1.35rem;
  bottom: 5.5rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--k-primary);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11, 58, 92, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease, background 150ms ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--k-primary-hover); }
.scroll-top:focus-visible {
  outline: 2px solid var(--k-accent);
  outline-offset: 3px;
}
.scroll-top svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
@media (max-width: 640px) {
  .scroll-top {
    right: 0.9rem;
    bottom: 5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.15rem; border-radius: var(--k-radius);
  font-weight: 650; font-size: 0.925rem; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.btn--primary { background: var(--k-primary); color: #fff; }
.btn--primary:hover { background: var(--k-primary-hover); color: #fff; }
.btn:disabled,
.btn.is-loading {
  opacity: 0.78;
  cursor: wait;
  pointer-events: none;
}
.btn.is-loading::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn--ghost { background: transparent; border-color: var(--k-border); color: var(--k-ink); }
.btn--ghost:hover { border-color: var(--k-ink); color: var(--k-ink); }

/* Header / nav */
.site-header { background: #fff; border-bottom: 1px solid var(--k-border); position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 1rem; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 750; color: var(--k-ink); text-decoration: none; letter-spacing: -0.02em; }
.brand img { width: 28px; height: 28px; }
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { color: var(--k-muted); text-decoration: none; font-weight: 550; font-size: 0.925rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--k-ink); }
.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary:focus-visible {
  color: #fff;
}
.nav-toggle {
  align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; padding: 0;
  border: 1px solid var(--k-border); border-radius: var(--k-radius);
  background: var(--k-surface); color: var(--k-ink); cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--k-primary); outline-offset: 2px; }

.top-bar {
  background: var(--k-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: #c5d4e2;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.top-bar__tag {
  margin: 0;
  font-weight: 650;
  color: #fff;
  letter-spacing: -0.01em;
}
.top-bar__tag span {
  font-weight: 500;
  color: #93a8bc;
}
.top-bar__tag em {
  font-style: normal;
  font-weight: 650;
  color: #7dd3fc;
}
.top-bar__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-left: auto;
}
.top-bar a {
  color: #d7e0ea;
  text-decoration: none;
  font-weight: 550;
}
.top-bar a:hover { color: #fff; }
.top-bar__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 650;
  color: #7dd3fc !important;
}
.top-bar__wa:hover { color: #fff !important; }
.top-bar__cta {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-weight: 650 !important;
  color: #fff !important;
}
.top-bar__cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 640px) {
  .top-bar__inner { justify-content: center; text-align: center; }
  .top-bar__actions { margin-left: 0; justify-content: center; width: 100%; }
  .prop-ai__grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--k-ink);
  color: #d7e0ea;
  padding: 5.5rem 0 0;
  margin-top: 4rem;
}
.site-footer > .container {
  position: relative;
  z-index: 1;
}
/* Chatbase-style: outlined wordmark fills .container width (natural glyphs, no stretch) */
.site-footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -65px;
  z-index: 0;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  container-type: inline-size;
  container-name: footer-wm;
}
.site-footer__watermark-text {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  /* ~"Kinnect IA" width ≈ 6.35em → font-size ≈ container / 6.35 */
  font-size: 22cqw;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 0.012em rgba(255, 255, 255, 0.15);
}
.site-footer a { color: #c5d4e3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
  gap: 2.5rem 1.75rem;
  margin-bottom: 3rem;
}
.site-footer__brand-block { max-width: 20rem; }
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 750;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.site-footer__brand:hover { color: #fff; }
.site-footer__brand img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px;
}
.site-footer__tagline {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #93a8bc;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 650;
  color: #d7e0ea;
}
.site-footer__social a:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.site-footer__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.95rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.site-footer__links a,
.site-footer__links span {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer__links span {
  color: #93a8bc;
  font-size: 0.875rem;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.35rem 0 0;
  margin-bottom: 10.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: #93a8bc;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.site-footer__legal a { color: #93a8bc; }
.site-footer__legal a:hover { color: #fff; }
@media (max-width: 991px) {
  .site-footer__watermark {
    bottom: -5px;
  }
}
@media (max-width: 768px) {
  .site-footer__bottom {
    margin-bottom: 6.5rem;
  }
}

/* Legal pages */
.legal {
  max-width: 720px;
}
.legal h2 {
  margin-top: 2.25rem;
  font-size: 1.25rem;
}
.legal h3 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}
.legal p,
.legal li {
  color: var(--k-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}
.legal ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.legal__meta {
  font-size: 0.875rem;
  color: var(--k-muted);
  margin: 0 0 1.5rem;
}

@media (max-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand-block { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--canvas { background: var(--k-canvas); }
.section[id],
#consultor { scroll-margin-top: 5.5rem; }
.section__header { margin-bottom: 2.5rem; max-width: 42rem; }
.section__header--center { text-align: center; margin-inline: auto; }
.section__header--center .lead { margin-inline: auto; }
.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--k-primary); }
h1, h2, h3 { letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 750; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 700; }
.lead { color: var(--k-muted); font-size: 1.05rem; max-width: 42rem; }
.prose { max-width: 65ch; color: var(--k-muted); }
.prose p { margin: 0 0 1rem; }

/* Cards & chips */
.card { background: var(--k-surface); border: 1px solid var(--k-border); border-radius: 12px; box-shadow: var(--shadow-card); padding: 1.35rem; }
.card:hover { border-color: #c5d9ec; }
.card__link { color: inherit; text-decoration: none; display: block; }
.card__link:hover h3 { color: var(--k-primary); }
.chip {
  display: inline-flex; padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--k-border); background: #fff; font-size: 0.8125rem; font-weight: 600; color: var(--k-ink);
}
.chip--active { background: var(--k-primary); border-color: var(--k-primary); color: #fff; }

/* Grid utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}
.grid-2--align-center { align-items: center; }

/* Hero (1Doc-style) */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--k-canvas) 0%, var(--k-surface) 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero__content { max-width: 36rem; }
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.25rem;
}
.hero--compact { padding: 3.5rem 0 4rem; }

/* Product frame (mock screenshot) */
.product-frame {
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.product-frame__bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: var(--k-canvas);
  border-bottom: 1px solid var(--k-border);
}
.product-frame__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--k-border);
}
.product-frame__dot--primary { background: var(--k-accent); }
.product-frame__title {
  margin-left: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--k-muted);
}
.product-frame__body {
  padding: 1.25rem;
  min-height: 280px;
  background: var(--k-surface);
}
.product-frame__sidebar {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  min-height: 240px;
}
.product-frame__nav {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.product-frame__nav-item {
  height: 10px; border-radius: 4px;
  background: var(--k-canvas);
}
.product-frame__nav-item--active { background: var(--k-primary); opacity: 0.35; }
.product-frame__main { display: flex; flex-direction: column; gap: 0.75rem; }
.product-frame__row {
  height: 12px; border-radius: 4px;
  background: var(--k-canvas);
}
.product-frame__row--short { width: 55%; }
.product-frame__row--medium { width: 75%; }
.product-frame__panel {
  flex: 1; min-height: 120px;
  border: 1px solid var(--k-border);
  border-radius: var(--k-radius);
  background: var(--k-canvas);
  padding: 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}

/* Logo / client strip */
.logo-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--k-border);
  border-bottom: 1px solid var(--k-border);
  background: var(--k-surface);
}
.logo-strip__label {
  text-align: center;
  font-size: 0.8125rem; font-weight: 650;
  color: var(--k-muted);
  margin-bottom: 1.25rem;
}
.logo-strip__items {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.5rem 2rem;
}
.logo-strip__item {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--k-border);
  background: var(--k-canvas);
  display: grid; place-items: center;
  font-size: 0.65rem; font-weight: 700;
  color: var(--k-muted); text-align: center;
  line-height: 1.2;
}

/* Steps (como funciona) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.35rem;
  border: 1px solid var(--k-border);
  border-radius: 12px;
  background: var(--k-surface);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--k-primary);
  color: #fff;
  font-size: 0.875rem; font-weight: 700;
}
.step p { margin: 0; color: var(--k-muted); font-size: 0.925rem; }

/* FAQ accordion */
.faq-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 100%;
  overflow: hidden;
}
.faq-layout__main {
  min-width: 0;
  max-width: 48rem;
}
.faq-layout__accent {
  position: relative;
  min-width: 0;
  min-height: 14rem;
  pointer-events: none;
  align-self: stretch;
  overflow: hidden;
}
.faq-layout__accent svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: none;
}
.faq__item,
[data-faq-item] {
  border: 1px solid var(--k-border);
  border-radius: var(--k-radius);
  background: var(--k-surface);
  overflow: hidden;
}
.faq__question,
[data-faq-item] button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  background: none; border: none;
  font-family: inherit; font-size: 0.95rem; font-weight: 650;
  color: var(--k-ink); cursor: pointer; text-align: left;
}
.faq__question:focus-visible,
[data-faq-item] button:focus-visible {
  outline: 2px solid var(--k-primary); outline-offset: -2px;
}
.faq__icon,
[data-faq-item] button::after {
  flex-shrink: 0;
  width: 1.25rem; height: 1.25rem;
  font-size: 1.25rem; line-height: 1;
  color: var(--k-primary);
  transition: transform 200ms ease;
}
[data-faq-item] button::after { content: "+"; font-weight: 400; }
[data-faq-item][data-open="true"] button::after { content: "-"; }
.faq__answer-inner,
[data-faq-item] .faq__panel-inner {
  padding: 0 1.25rem 1rem;
  color: var(--k-muted);
  font-size: 0.925rem;
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-layout__accent {
    display: none;
  }
}

/* Forms */
.form { max-width: min(36rem, 100%); }
.form--wide { max-width: none; }
.grid-2 .form { max-width: none; }
.field {
  display: flex; flex-direction: column; gap: 0.35rem;
  margin-bottom: 1rem;
}
.field label {
  font-weight: 600; font-size: 0.875rem;
  color: var(--k-ink);
}
.field input,
.field textarea,
.field select,
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--k-border);
  border-radius: var(--k-radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--k-ink);
  background: var(--k-surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus,
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--k-primary);
  box-shadow: 0 0 0 3px rgba(0, 158, 247, 0.15);
}
.field textarea,
form textarea {
  min-height: 120px;
  resize: vertical;
}
.field--error input,
.field--error textarea,
.field--error select {
  border-color: #dc2626;
}
.form__actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-status,
[data-form-status] {
  margin-top: 1rem;
  font-size: 0.925rem; font-weight: 550;
  color: var(--k-muted);
}
.form-status[data-state="ok"],
[data-form-status][data-state="ok"] { color: #047857; }
.form-status[data-state="error"],
[data-form-status][data-state="error"] { color: #dc2626; }

.contact-channels {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
#consultor:target {
  outline: 2px solid rgba(0, 158, 247, 0.35);
  outline-offset: 8px;
  border-radius: var(--k-radius);
}

/* CTA band */
.cta-band {
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3.5vw, 2.75rem);
  border-radius: 12px;
  color: #d7e0ea;
  background: var(--k-ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.cta-band__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-weight: 750;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-band__brand img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.cta-band__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}
.cta-band h2 {
  color: #fff;
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-band__copy > p {
  color: #b7c7d6;
  margin: 0 0 1.15rem;
  max-width: 38rem;
  font-size: 0.975rem;
  line-height: 1.6;
}
.cta-band__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-band__points li {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef4;
  font-size: 0.78rem;
  font-weight: 650;
}
.cta-band__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cta-band__actions .btn {
  width: 100%;
  justify-content: center;
}
.cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.cta-band .btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.cta-band__meta {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: #93a8bc;
  line-height: 1.5;
}
.cta-band__meta a {
  color: #fff;
  text-decoration: none;
  font-weight: 650;
}
.cta-band__meta a:hover { color: var(--k-accent); }
.cta-band__meta span { display: block; margin-top: 0.2rem; }
.card .prose { margin: 0; font-size: 0.925rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 320ms ease, transform 320ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Module list (soluções) */
.module-list { display: flex; flex-direction: column; gap: 1.25rem; }
.module-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--k-border);
}
.module-item:last-child { padding-bottom: 0; border-bottom: none; }
.module-item h3 { margin-bottom: 0.35rem; font-size: 1rem; }
.module-item p { margin: 0; color: var(--k-muted); font-size: 0.925rem; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; inset: 68px 0 auto 0;
    background: #fff; padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--k-border);
    max-width: 100%;
    overflow-x: clip;
  }
  .nav-toggle { display: inline-flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-frame__body { min-height: 220px; }
  .cta-band { padding: 1.75rem 1.25rem; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__aside { order: 2; }
}
@media (min-width: 861px) { .nav-toggle { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Enrichment v1.5 ───────────────────────────────── */
.container--wide { width: min(1200px, calc(100% - 2.5rem)); }
.text-balance { text-wrap: balance; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stats__item {
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
}
.stats__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--k-ink);
  line-height: 1.1;
}
.stats__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--k-muted);
  font-weight: 550;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pain-card {
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
}
.pain-card__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 10px;
  background: rgba(0, 158, 247, 0.12);
  color: var(--k-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800; font-size: 0.85rem;
}
.pain-card h3 { font-size: 1.05rem; }
.pain-card p { margin: 0; color: var(--k-muted); font-size: 0.925rem; }
.pain-card__solve {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--k-border);
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--k-primary);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.feature-split:last-child { margin-bottom: 0; }
.feature-split--reverse .feature-split__visual { order: -1; }

/* Sobre Nós — hero e ilustrações */
.about-hero {
  padding: 4.5rem 0 4.75rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(0, 158, 247, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(0, 105, 180, 0.06), transparent 50%),
    #fff;
}
.about-hero__inner {
  max-width: 42rem;
  margin: 0;
  margin-inline: 0;
  text-align: left;
}
.about-hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1rem;
  max-width: 18ch;
  text-wrap: balance;
}
.about-hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.55;
  max-width: 40rem;
  margin: 0 0 1.75rem;
  color: var(--k-ink);
  opacity: 0.78;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sobre Nós: coluna do SVG ~ilustração, gap curto com o texto */
.about-split {
  width: 100%;
  margin-inline: 0;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 340px);
}
.about-split.feature-split--reverse {
  grid-template-columns: minmax(220px, 340px) minmax(0, 1.2fr);
}
.about-visual {
  margin: 0;
  width: 100%;
  display: block;
}
.about-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}
.about-copy {
  min-width: 0;
}
@media (max-width: 960px) {
  .about-split,
  .about-split.feature-split--reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .about-visual img { max-width: 340px; }
}
.about-copy p {
  color: var(--k-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}
.about-copy h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}
.about-copy .lead {
  color: var(--k-muted);
  max-width: 38rem;
}
.about-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.about-stats__card {
  background: #fff;
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--k-muted);
}
.about-stats__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--k-primary);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
@media (max-width: 720px) {
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.feature-split__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.feature-split__list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--k-muted);
  font-size: 0.95rem;
}
.feature-split__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--k-accent);
}

.ui-mock {
  background: #0b1727;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(11, 58, 92, 0.18);
  color: #e2e8f0;
  font-size: 0.8125rem;
}
.ui-mock__bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #94a3b8;
}
.ui-mock__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #334155;
}
.ui-mock__dot--r { background: #f87171; }
.ui-mock__dot--y { background: #fbbf24; }
.ui-mock__dot--g { background: #34d399; }
.ui-mock__body { padding: 1rem; }
.ui-mock__row {
  display: grid;
  grid-template-columns: 72px 1fr 100px 88px;
  gap: 0.5rem;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.ui-mock__row--head {
  color: #64748b;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom-color: rgba(255,255,255,0.1);
}
.ui-mock__badge {
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0,158,247,0.2);
  color: #7dd3fc;
}
.ui-mock__badge--ok { background: rgba(34,197,94,0.18); color: #86efac; }
.ui-mock__badge--warn { background: rgba(251,191,36,0.18); color: #fde68a; }
.ui-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.ui-mock__kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.75rem;
}
.ui-mock__kpi strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.03em;
}
.ui-mock__kpi span { color: #94a3b8; font-size: 0.7rem; }
.ui-mock--light {
  background: #fff;
  color: var(--k-ink);
  border-color: var(--k-border);
  box-shadow: var(--shadow-card);
}
.ui-mock--light .ui-mock__bar {
  background: var(--k-canvas);
  border-bottom-color: var(--k-border);
  color: var(--k-muted);
}
.ui-mock--light .ui-mock__row { border-bottom-color: #eef2f6; }
.ui-mock--light .ui-mock__row--head { color: #64748b; }
.ui-mock--light .ui-mock__kpi {
  background: var(--k-canvas);
  border-color: var(--k-border);
}
.ui-mock--light .ui-mock__kpi strong { color: var(--k-ink); }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.compare__col {
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--k-border);
}
.compare__col--old {
  background: #f8fafc;
}
.compare__col--new {
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 60%);
  border-color: #b6d9f5;
  box-shadow: var(--shadow-card);
}
.compare__col h3 { margin-bottom: 1rem; }
.compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.compare__col li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--k-muted);
  font-size: 0.925rem;
}
.compare__col--old li::before { content: "×"; position: absolute; left: 0; color: #94a3b8; font-weight: 700; }
.compare__col--new li::before { content: "✓"; position: absolute; left: 0; color: var(--k-primary); font-weight: 700; }

.prop-ai__claim {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--k-border);
  border-left: 4px solid var(--k-primary);
  border-radius: 0 var(--k-radius) var(--k-radius) 0;
  background: var(--k-canvas);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--k-ink);
  line-height: 1.45;
  max-width: 52rem;
}
.prop-ai__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.prop-ai__item {
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.35rem;
  background: var(--k-surface);
}
.prop-ai__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.prop-ai__item p {
  margin: 0;
  color: var(--k-muted);
  font-size: 0.9rem;
}
.prop-ai__note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--k-muted);
  max-width: 48rem;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-card {
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.trust-card h3 { font-size: 1rem; }
.trust-card p { margin: 0; color: var(--k-muted); font-size: 0.9rem; }

.quote-card {
  background: var(--k-ink);
  color: #d7e0ea;
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
}
.quote-card p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #fff;
  font-weight: 500;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: #93a8bc;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  overflow: hidden;
}
.token-table th,
.token-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--k-border);
}
.token-table th {
  background: var(--k-canvas);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--k-muted);
}
.token-table tr:last-child td { border-bottom: none; }
.token-table td { color: var(--k-muted); }
.token-table td:first-child { color: var(--k-ink); font-weight: 600; }

.page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.toc {
  position: sticky;
  top: 5.5rem;
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}
.toc__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--k-muted);
  margin: 0 0 0.75rem;
}
.toc nav { display: flex; flex-direction: column; gap: 0.35rem; }
.toc a {
  text-decoration: none;
  color: var(--k-muted);
  font-size: 0.85rem;
  font-weight: 550;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
}
.toc a:hover,
.toc a.is-active {
  background: var(--k-canvas);
  color: var(--k-ink);
}

.module-card {
  background: var(--k-surface);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  display: grid;
  gap: 0.35rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.module-card:hover {
  border-color: #b6d9f5;
  box-shadow: var(--shadow-card);
}
.module-card__meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-accent);
}
.module-card h3 { margin: 0; font-size: 1.05rem; }
.module-card p { margin: 0; color: var(--k-muted); font-size: 0.9rem; }
.module-card__for {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--k-ink);
  font-weight: 600;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
.flow__box {
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.35rem;
  background: var(--k-surface);
}
.flow__box--after {
  border-color: #b6d9f5;
  background: #f0f9ff;
}
.flow__arrow {
  align-self: center;
  font-weight: 800;
  color: var(--k-primary);
  font-size: 1.5rem;
}
.flow__box h3 { font-size: 1rem; }
.flow__box ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--k-muted);
  font-size: 0.9rem;
}

.aside-panel {
  background: var(--k-canvas);
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.aside-panel h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.aside-panel ol,
.aside-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--k-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.channel-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.channel-card {
  border: 1px solid var(--k-border);
  border-radius: 12px;
  padding: 1.35rem;
  background: var(--k-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.channel-card:hover {
  border-color: #b6d9f5;
  box-shadow: var(--shadow-card);
}
.channel-card strong { display: block; margin-bottom: 0.35rem; color: var(--k-ink); }
.channel-card span { color: var(--k-muted); font-size: 0.875rem; }

.pillar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}
.pillar-nav a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 650;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--k-border);
  color: var(--k-ink);
  background: #fff;
}
.pillar-nav a:hover { border-color: var(--k-primary); color: var(--k-primary); }

.section__header--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  max-width: none;
}
.section__header--row .lead { margin-bottom: 0; }

@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .prop-ai__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-grid,
  .trust-band,
  .channel-cards,
  .module-grid { grid-template-columns: 1fr; }
  .feature-split,
  .feature-split--reverse .feature-split__visual,
  .compare,
  .page-layout,
  .flow { grid-template-columns: 1fr; }
  .feature-split--reverse .feature-split__visual { order: 0; }
  .flow__arrow { transform: rotate(90deg); justify-self: center; }
  .toc { position: static; }
  .ui-mock__row { grid-template-columns: 56px 1fr 72px; }
  .ui-mock__row span:nth-child(4) { display: none; }
  .section__header--row { flex-direction: column; align-items: flex-start; }
}
