@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap");
@import "./tokens.css";

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 200;
  padding: 10px 14px; border-radius: 10px; background: var(--ink); color: #fff;
}
.skip-link:focus { top: 12px; }
.container { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.section { position: relative; padding: 96px 0 88px; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
}
.grad, .text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-hero {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.08; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.35rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.15rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 750; letter-spacing: -0.03em; }
.lead { margin: 16px 0 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; max-width: 640px; }
.centered { text-align: center; }
.centered .lead, .centered .eyebrow, .centered h1, .centered h2 { margin-inline: auto; }
.centered .crumb { justify-content: center; }
.centered .actions { justify-content: center; }
.sparkles { display: inline-block; margin: 0 6px; color: #f5c451; }
.swoosh { color: var(--purple-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 14px;
  text-decoration: none; font-weight: 700; font-size: 0.94rem; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-btn); color: #fff;
  box-shadow: 0 18px 45px rgba(124, 92, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 18px 45px rgba(124, 92, 255, 0.42); }
.btn-ghost {
  background: transparent; color: var(--ink-soft); padding-inline: 8px;
}
.btn-ghost:hover { color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-wa {
  background: #25d366; color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
}
.btn-wa svg { width: 20px; height: 20px; flex: 0 0 20px; }
.btn-wa:hover { background: #1ebe57; box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42); }
.btn-outline {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid rgba(124, 92, 255, 0.45);
  box-shadow: none;
}
.btn-outline:hover { background: var(--lilac); border-color: var(--purple); }
.btn-ig {
  --ig: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  min-height: 40px;
  padding: 0 14px 0 10px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--ig);
  box-shadow: 0 10px 22px rgba(238, 42, 123, 0.28);
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 0.84rem;
}
.btn-ig svg { width: 16px; height: 16px; flex: 0 0 16px; }
.btn-ig:hover {
  color: #fff;
  filter: brightness(1.07);
  box-shadow: 0 12px 26px rgba(238, 42, 123, 0.38);
}
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 26, 51, 0.05);
}
.site-header.is-scrolled::before { background: rgba(255,255,255,0.92); }
.nav-wrap {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  overflow: visible;
  text-decoration: none;
}
.brand-logo {
  width: 172px;
  height: 40px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.footer-brand .brand-logo { width: 192px; height: 44px; }
.nav-links { display: flex; justify-content: center; align-items: stretch; gap: 22px; height: 100%; }
.nav-links > a, .nav-drop > button {
  text-decoration: none; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s; background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center;
}
.nav-links a:hover, .nav-links a.is-active, .nav-drop > button:hover { color: var(--purple); }
.nav-links > a.nav-academy {
  gap: 8px;
  align-self: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.08);
  color: var(--ink);
  font-weight: 700;
}
.nav-links > a.nav-academy:hover,
.nav-links > a.nav-academy.is-active {
  background: rgba(124, 92, 255, 0.14);
  color: var(--purple);
}
.nav-academy-ico {
  width: 15px; height: 15px; flex: 0 0 15px;
  stroke: currentColor; fill: none; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.nav-academy-bar {
  width: 1px; height: 12px; flex: 0 0 1px;
  background: currentColor; opacity: 0.32;
}
.nav-drop { position: relative; display: flex; align-items: stretch; }
.nav-drop > button { min-height: 100%; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 248px; padding: 6px 0 0;
  display: none; z-index: 90;
  background: transparent; border: 0; box-shadow: none;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu { display: block; }
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 90;
  background: rgba(18, 20, 31, 0.4);
}
body.nav-open .nav-backdrop { display: block; }
body.nav-open { overflow: hidden; }
.nav-drop-panel {
  display: grid; gap: 2px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
}
.nav-drop-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: 12px; font-size: 0.88rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.nav-drop-menu a:hover, .nav-drop-menu a.is-active { background: var(--lilac); color: var(--ink); }
.nav-links > a.nav-mobile-cta { display: none; }
.nav-ico {
  width: 32px; height: 32px; border-radius: 10px; flex: 0 0 32px;
  display: grid; place-items: center;
  background: var(--lilac);
}
.nav-ico svg {
  width: 16px; height: 16px;
  stroke: var(--purple); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.nav-ico.cashback { background: var(--peach); }
.nav-ico.cashback svg { stroke: #c05621; }
.nav-ico.green { background: var(--mint); }
.nav-ico.green svg { stroke: #0f3d24; }
.nav-ico.sky { background: var(--sky); }
.nav-ico.sky svg { stroke: #3d5a99; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px;
}
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); border-radius: 4px; }

/* Preview ribbon */
.preview-ribbon {
  background: var(--ink); color: #fff; font-size: 0.78rem; font-weight: 600;
  text-align: center; padding: 8px 16px;
}
.preview-ribbon span { color: #c4b8ff; }

/* Organic waves */
.wave {
  display: block;
  width: 100%;
  height: 88px;
  color: var(--paper);
  line-height: 0;
  position: relative;
  z-index: 0;
  pointer-events: none;
  flex-shrink: 0;
}
.wave svg { display: block; width: 100%; height: 102%; }
.wave-layer { height: 120px; }
.band { position: relative; isolation: isolate; }
.band-wash { background: var(--wash); }
.band-wash-2 { background: var(--wash-2); }
.band-dark { background: var(--purple-deep); color: #efeafc; }
[hidden] { display: none !important; }

.mesh {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.mesh::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(42% 48% at 12% 18%, rgba(124, 92, 255, 0.38), transparent 70%),
    radial-gradient(38% 46% at 88% 12%, rgba(54, 214, 119, 0.32), transparent 68%),
    radial-gradient(46% 50% at 72% 78%, rgba(167, 139, 250, 0.34), transparent 70%),
    radial-gradient(30% 34% at 28% 86%, rgba(255, 157, 92, 0.22), transparent 70%),
    linear-gradient(180deg, #fbf9ff 0%, #f4f2fb 100%);
  animation: mesh-shift 18s ease-in-out infinite alternate;
}
@keyframes mesh-shift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, 1.2%); }
}

.blob {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.55; pointer-events: none;
}
.blob-a { width: 280px; height: 280px; background: #c9befc; top: -80px; left: -60px; }
.blob-b { width: 220px; height: 220px; background: #b7eadc; right: 8%; top: 12%; }
.blob-c { width: 260px; height: 260px; background: #f7c6d8; left: 30%; bottom: -80px; }

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  padding: 28px 0 0;
  min-height: calc(100vh - var(--header-h) - 40px);
  overflow: visible;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 36px;
}
.hero > .wave { margin-top: auto; margin-bottom: -1px; z-index: 0; }
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 46ch; margin: 20px 0 28px; font-size: 1.12rem; }
.hero-checks { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 0.92rem; }
.hero-checks li { display: flex; align-items: center; gap: 10px; }
.hero-checks svg { flex: 0 0 18px; color: var(--green); }
.hero-stage { position: relative; min-height: 560px; }
.devices { position: relative; height: 580px; }
.device-desktop {
  position: absolute;
  right: -18%;
  top: 8px;
  width: min(148%, 720px);
  max-width: none;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 32px 48px rgba(18, 20, 31, 0.22));
  animation: float-desk 7s ease-in-out infinite;
}
.device-phone {
  position: absolute;
  left: -2%;
  bottom: -18px;
  width: min(46%, 205px);
  max-width: none;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 24px 36px rgba(18, 20, 31, 0.2));
  animation: float-phone 6s ease-in-out infinite;
}
.phone {
  position: absolute;
  width: 250px;
  height: 500px;
  padding: 12px;
  border-radius: 38px;
  background: #11131c;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
}
.phone-screen {
  height: 100%;
  border-radius: 28px;
  background: #0b0d17;
  overflow: hidden;
  color: var(--ink);
}
.phone-screen.is-shot {
  background: #0b0d17;
}
.phone-screen.is-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.phone-screen.is-poster {
  background: #07080d;
}
.phone-screen.is-poster img {
  object-fit: contain;
  object-position: center;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float-desk {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.phone-bar { height: 18px; display: flex; justify-content: center; padding-top: 8px; }
.phone-bar i { width: 52px; height: 5px; border-radius: 99px; background: #d8d6e2; }
.ui-pad { padding: 12px 14px 16px; }
.ui-kicker { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ui-title { margin: 4px 0 12px; font-size: 0.95rem; font-weight: 800; }
.ui-row, .ui-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(23,26,51,0.06); font-size: 0.72rem;
}
.ui-item span { color: var(--muted); }
.ui-total { display: flex; justify-content: space-between; margin-top: 10px; font-weight: 800; }
.ui-badge {
  display: inline-flex; margin-top: 10px; padding: 6px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.12); color: #15803d; font-size: 0.68rem; font-weight: 750;
}
.ui-btn { display: block; margin-top: 12px; padding: 10px; border-radius: 12px; background: var(--purple); color: #fff; text-align: center; font-size: 0.72rem; font-weight: 800; }
.ui-avatar {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9b8cff); color: #fff; font-weight: 800; font-size: 0.72rem;
}
.ui-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ui-head strong { display: block; font-size: 0.82rem; }
.ui-head small { color: var(--muted); font-size: 0.62rem; }
.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 16px; background: rgba(255,255,255,0.92);
  border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(10px);
  font-size: 0.72rem;
}
.float-card b { display: block; font-size: 0.78rem; }
.float-card small { color: var(--muted); }
.float-1 { left: -12px; top: 86px; animation: float-a 5.5s ease-in-out infinite; }
.float-2 { right: -8px; bottom: 70px; animation: float-b 6.5s ease-in-out infinite; }
.float-3 { right: 6%; top: 28px; animation: float-c 6s ease-in-out infinite; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
.float-ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15803d;
  background: rgba(34, 197, 94, 0.14);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}
.float-ico svg { width: 18px; height: 18px; display: block; }

/* Proof */
.proof {
  position: relative;
  z-index: 0;
  background: var(--paper);
  padding: 28px 0 36px;
}
.proof-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  margin-top: 36px;
}
.proof-item {
  text-align: center;
  padding: 12px 14px;
  position: relative;
}
.proof-item + .proof-item::before {
  content: "";
  position: absolute;
  left: 0; top: 18%;
  height: 64%; width: 1px;
  background: var(--line);
}
.proof-item:nth-child(3n+1)::before { display: none; }
.proof-num {
  display: block;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.proof-item:nth-child(odd) .proof-num { color: var(--purple); }
.proof-item:nth-child(even) .proof-num { color: var(--purple-2); }
.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}
.proof-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 0.72rem;
  line-height: 1.35;
}

.logos {
  padding: 10px 0 48px;
  --logo-slot: 180px;
  --logo-gap: 56px;
  --logo-count: 6;
}
.logo-marquee { overflow: hidden; width: 100%; }
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-tick 18s var(--ease) infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-set {
  display: flex;
  flex-shrink: 0;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}
.logo-item {
  box-sizing: border-box;
  flex: 0 0 var(--logo-slot);
  width: var(--logo-slot);
  height: 96px;
  display: grid;
  place-items: center;
}
.logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.62;
}
.logo-item.is-light img {
  filter: grayscale(1) invert(1) contrast(1.05);
  opacity: 0.55;
}
.logo-item:hover img { opacity: 0.88; }
@keyframes logo-tick {
  0%, 12% { transform: translateX(0); }
  16.666%, 28.666% { transform: translateX(calc(-1 * (var(--logo-slot) + var(--logo-gap)))); }
  33.333%, 45.333% { transform: translateX(calc(-2 * (var(--logo-slot) + var(--logo-gap)))); }
  50%, 62% { transform: translateX(calc(-3 * (var(--logo-slot) + var(--logo-gap)))); }
  66.666%, 78.666% { transform: translateX(calc(-4 * (var(--logo-slot) + var(--logo-gap)))); }
  83.333%, 95.333% { transform: translateX(calc(-5 * (var(--logo-slot) + var(--logo-gap)))); }
  100% { transform: translateX(calc(-6 * (var(--logo-slot) + var(--logo-gap)))); }
}

/* Feature grid (páginas internas) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  margin-top: 48px;
}
.feature { text-align: center; }
.icon-box {
  width: 54px; height: 54px; margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--tone, var(--lilac));
}
.icon-box svg { width: 24px; height: 24px; stroke: var(--ink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* Ecossistema / atalhos das soluções */
.eco { padding-top: 72px; padding-bottom: 88px; }
.eco .eyebrow {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eco-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.eco-head h2 { color: #fff; max-width: 14ch; }
.eco-head .lead { margin: 0 0 8px; color: #cfc6ea; max-width: none; }
.eco-erp {
  display: grid;
  grid-template-columns: auto 1.2fr auto auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
  padding: 22px 26px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(150deg, #1a1730, #12141f);
  border: 1px solid rgba(167,139,250,0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.eco-erp::before {
  content: "";
  position: absolute; width: 280px; height: 280px; right: -80px; top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,.28), transparent 68%);
  pointer-events: none;
}
.eco-erp:hover { transform: translateY(-4px); border-color: rgba(124,92,255,.5); box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.eco-erp .eco-link { margin: 0; padding: 0; white-space: nowrap; }
.eco-erp .eco-icon svg { stroke: #efeafc; }
.eco-erp h3 { color: #fff; font-size: 1.35rem; }
.eco-erp p { margin: 6px 0 0; color: #cfc6ea; font-size: 0.92rem; max-width: 52ch; }
.eco-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none;
}
.eco-chips li {
  padding: 6px 10px; border-radius: 999px;
  background: rgba(124,92,255,0.16); color: #d7ccff;
  font-size: 0.72rem; font-weight: 750;
}
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.eco-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(150deg, #16182a, #10121c);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.eco-card::before {
  content: "";
  position: absolute; width: 220px; height: 220px; right: -90px; top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow, rgba(124,92,255,.22)), transparent 68%);
  pointer-events: none;
  transition: transform 0.3s var(--ease);
}
.eco-card:hover { transform: translateY(-6px); border-color: rgba(124,92,255,.42); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.eco-card:hover::before { transform: scale(1.2); }
.eco-crm { --glow: rgba(124,92,255,.28); }
.eco-cashback { --glow: rgba(255,157,92,.28); }
.eco-whatsapp { --glow: rgba(54,214,119,.26); }
.eco-chatfacil { --glow: rgba(125,180,255,.26); }
.eco-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 64px;
  position: relative; z-index: 2;
}
.eco-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.eco-icon svg { width: 22px; height: 22px; stroke: #efeafc; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.eco-erp .eco-icon { background: rgba(124,92,255,0.18); }
.eco-crm .eco-icon { color: #c4b8ff; }
.eco-cashback .eco-icon svg { stroke: #ffb37a; }
.eco-whatsapp .eco-icon svg { stroke: #36d677; }
.eco-chatfacil .eco-icon svg { stroke: #8ec5ff; }
.eco-arrow { color: rgba(255,255,255,0.45); font-size: 1.1rem; }
.eco-card h3 { position: relative; z-index: 2; color: #fff; font-size: 1.28rem; margin-bottom: 10px; }
.eco-card p {
  position: relative; z-index: 2;
  margin: 0; color: #b8b3c9; font-size: 0.88rem; line-height: 1.55; max-width: 28ch;
}
.eco-link {
  position: relative; z-index: 2;
  margin-top: auto; padding-top: 28px;
  color: #fff; font-size: 0.82rem; font-weight: 750;
}
.eco-link b { color: var(--purple-2); }
.eco-preview {
  position: absolute; z-index: 1; pointer-events: none;
}
.eco-phone {
  right: 8px; bottom: -108px; width: 168px; height: auto;
  opacity: 0.88;
  clip-path: inset(5px 6px 0 6px round 34px 34px 0 0);
  mask-image: linear-gradient(to bottom, #000 55%, transparent 96%);
  filter: saturate(0.95);
}
.eco-inbox {
  right: -8px; top: 50%; width: 148px; height: auto;
  transform: translateY(-42%);
}
.eco-whatsapp h3, .eco-whatsapp p,
.eco-chatfacil h3, .eco-chatfacil p { max-width: 54%; }

/* How it works */
.how-wrap {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 48px;
}
.how-col { display: grid; gap: 36px; }
.how-step { position: relative; }
.how-num {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--purple);
}
.how-step.is-alt .how-num { color: var(--purple-2); }
.how-step h3 { margin: 8px 0 8px; }
.how-step p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.how-phone {
  width: 250px; height: 500px; margin-inline: auto;
  padding: 12px; border-radius: 38px; background: #11131c;
  box-shadow: var(--shadow-lg);
}
.how-arrow {
  position: absolute; left: 52%; top: -28px; color: var(--purple);
  transform: translateX(-50%);
}

/* Integrações */
.connected { padding: 40px 0 0; }
.connected-inner {
  position: relative;
  padding: 72px 48px 80px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
.connected h2, .connected .eyebrow { color: #fff; }
.connected .lead { color: #cfc6ea; max-width: 720px; }
.integ {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}
.integ li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #efeafc;
  text-align: center;
}
.integ li > img {
  width: auto;
  max-width: 88%;
  height: 56px;
  object-fit: contain;
  display: block;
  margin-inline: auto;
}
.integ-logo {
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 16px;
  display: grid; place-items: center;
}
.integ-logo.is-more {
  background: linear-gradient(145deg, rgba(124, 92, 255, 0.32), rgba(54, 214, 119, 0.18));
}
.integ-copy { display: grid; gap: 2px; }
.integ-copy strong {
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #fff;
}
.integ-copy small {
  color: rgba(239, 234, 252, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
}
.integ-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid rgba(196, 184, 255, 0.28);
  border-top-color: var(--green);
  border-right-color: var(--purple);
  animation: integ-spin 0.9s linear infinite;
}
@keyframes integ-spin {
  to { transform: rotate(360deg); }
}
.integ-more { gap: 12px; border-style: dashed; border-color: rgba(185, 168, 255, 0.28); }
.integ li.integ-lockup {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.integ li.integ-lockup > img { height: 42px; }

/* Why */
.why-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; margin-top: 20px;
}
.why-list { display: grid; gap: 22px; }
.why-item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.why-item p { margin: 6px 0 0; color: var(--muted); font-size: 0.9rem; }
.mock-stack { position: relative; min-height: 420px; }
.mock-card {
  position: absolute; width: min(320px, 100%);
  padding: 18px; border-radius: 22px; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.mock-a { left: 0; top: 24px; transform: rotate(-6deg); }
.mock-b { right: 4%; top: 150px; transform: rotate(5deg); }
.chip { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: var(--lilac); color: var(--purple); font-size: 0.65rem; font-weight: 800; }

/* Segments */
.seg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.seg-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 280px; padding: 0; overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none; color: #fff;
  border: 1px solid rgba(18,20,31,0.08);
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.seg-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.seg-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,23,0.06) 22%, rgba(11,13,23,0.62) 62%, rgba(11,13,23,0.92) 100%);
}
.seg-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px;
}
.seg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(124,92,255,0.35); }
.seg-card:hover img { transform: scale(1.05); }
.seg-card h3 { color: #fff; }
.seg-card p { margin: 0; color: rgba(255,255,255,0.86); font-size: 0.88rem; flex: 1; text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.seg-card span { color: #d7ccff; font-size: 0.82rem; font-weight: 750; }

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #fff;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.case-card-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}
.case-card .case-ig {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 16px 16px;
  margin: 0;
  gap: 8px;
}
.case-card .btn-ig {
  min-height: 36px;
  padding: 0 12px 0 9px;
  font-size: 0.78rem;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  flex-shrink: 0;
}
.case-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.case-body p { color: var(--muted); }
.case-quote { font-size: 1.15rem; font-weight: 750; letter-spacing: -0.03em; color: var(--ink); margin: 8px 0 12px; }
.case-compact { background: var(--lilac); padding: 32px; min-height: 280px; display: flex; flex-direction: column; border-radius: var(--radius-lg); text-decoration: none; border: 1px solid transparent; }
.case-compact:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pastel-mint { background: var(--mint); }
.pastel-peach { background: var(--peach); }
.pastel-sky { background: var(--sky); }
.pastel-blush { background: var(--blush); }

/* Pricing */
.toggles { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0 8px; }
.switch {
  display: inline-flex; padding: 5px; border-radius: 999px; background: #fff; border: 1px solid var(--line); gap: 4px;
}
.switch button {
  min-height: 40px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent;
  color: var(--ink-soft); font-weight: 750; cursor: pointer;
}
.switch button.is-on { background: var(--purple); color: #fff; }
.switch .save { margin-left: 4px; padding: 2px 7px; border-radius: 999px; background: rgba(34,197,94,0.14); color: #15803d; font-size: 0.68rem; }
.switch .rec {
  margin-left: 6px; padding: 2px 7px; border-radius: 999px;
  background: rgba(54, 214, 119, 0.2); color: #15803d;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.switch button.is-on .rec {
  background: rgba(255,255,255,0.22); color: #fff;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; align-items: stretch; }
.price-card {
  position: relative; padding: 28px 24px; border-radius: 24px; background: #fff;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.price-card.is-featured {
  border-color: transparent; background: var(--purple-deep); color: #fff;
  box-shadow: 0 24px 60px rgba(20, 11, 50, 0.28); transform: translateY(-8px);
}
.price-card.is-featured p, .price-card.is-featured li, .price-card.is-featured small { color: #d9d1f3; }
.price-card.is-enterprise {
  background: var(--purple-mid);
  color: #fff;
  border-color: rgba(167, 139, 250, 0.28);
}
.price-card.is-enterprise p,
.price-card.is-enterprise li,
.price-card.is-enterprise small { color: #c8c0e4; }
.price-card.is-enterprise li::before { color: #7dffb0; }
.popular {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  padding: 5px 12px; border-radius: 999px; background: var(--purple); color: #fff;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan-meta { margin: 6px 0 0; color: var(--muted); font-size: 0.82rem; }
.plan-desc { min-height: 72px; color: var(--ink-soft); font-size: 0.9rem; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 16px; }
.plan-price strong { font-size: 2rem; letter-spacing: -0.04em; }
.price-card ul { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 0.86rem; }
.price-card li { display: flex; gap: 8px; }
.price-card li::before { content: "✓"; color: var(--green); font-weight: 900; }
.price-card.is-featured li::before { color: #7dffb0; }
.price-card .btn { width: 100%; margin-top: auto; }
.price-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 22px; }

/* FAQ — accordion de uma coluna, sem pílulas / grid esticado */
.faq-grid {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(18, 20, 31, 0.05);
}
.faq-item {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item[open] { background: #faf8ff; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  font-size: 0;
  color: transparent;
  background: transparent;
  border-radius: 0;
  position: relative;
}
.faq-item summary span::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted-2);
  border-bottom: 2px solid var(--muted-2);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease), top 0.2s var(--ease);
}
.faq-item[open] summary span { transform: none; }
.faq-item[open] summary span::before {
  top: 7px;
  transform: rotate(225deg);
  border-color: var(--purple);
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 62ch;
}
.faq-more {
  text-align: center;
  margin-top: 24px;
}
.faq-more a {
  color: var(--purple);
  font-weight: 750;
  font-size: 0.9rem;
  text-decoration: none;
}
.faq-more a:hover { color: var(--ink); }

/* Final CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 28px var(--gutter) 88px;
  text-align: center;
  background: var(--paper);
}
.cta-panel .container { position: relative; z-index: 1; }
.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 40px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
}
.cta-card .mesh { z-index: 0; }
.cta-card h2,
.cta-card .lead,
.cta-card .cta-actions,
.cta-card .cta-store { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 18ch; margin-inline: auto; }
.cta-panel .lead { margin-inline: auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.cta-store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cta-store-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-store .app-store {
  display: inline-flex;
  line-height: 0;
}
.cta-store img {
  width: 148px;
  height: 48px;
  margin: 0;
}
.cta-panel.band-mesh {
  padding: 72px 28px 80px;
}
.cta-panel.band-mesh .actions {
  justify-content: center;
  margin-top: 28px;
}

/* Footer */
.site-footer { padding: 48px 0 28px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 28px;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 320px; }
.footer-kicker {
  margin: 12px 0 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
}
.footer-seo {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.footer-desc { margin: 10px 0 14px; }
.footer-brand small { color: var(--muted-2); font-size: 0.72rem; line-height: 1.6; }
.footer-grid strong { display: block; margin-bottom: 12px; font-size: 0.82rem; }
.footer-grid a { display: block; color: var(--muted); text-decoration: none; font-size: 0.84rem; margin: 8px 0; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line);
  color: var(--muted-2); font-size: 0.75rem;
}
.footer-cookie-link {
  padding: 0; border: 0; background: transparent; color: var(--purple);
  font: inherit; font-size: 0.75rem; font-weight: 650; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.footer-cookie-link:hover { color: var(--purple-2); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); animation: reveal 0.8s var(--ease) forwards; }
.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.16s; }
.reveal-d3 { animation-delay: 0.24s; }
.reveal-d4 { animation-delay: 0.32s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .how-wrap { grid-template-columns: 1fr 1fr; }
  .how-phone { grid-column: 1 / -1; order: -1; }
  .eco-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .integ { grid-template-columns: repeat(3, 1fr); }
  .eco-head, .eco-erp { grid-template-columns: 1fr; }
  .eco-whatsapp h3, .eco-whatsapp p,
  .eco-chatfacil h3, .eco-chatfacil p { max-width: 58%; }
  .phone { width: 210px; height: 420px; }
  .devices { height: 500px; }
  .hero-stage { min-height: 500px; }
  .device-desktop { width: min(142%, 620px); right: -18%; top: 4px; }
  .device-phone { width: 175px; left: -4%; }
  .nav-links { gap: 14px; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-item:nth-child(3n+1)::before { display: none; }
}
@media (max-width: 780px) {
  .section { padding: 56px 0 52px; }
  .nav-links, .nav-wrap > .btn { display: none; }
  .nav-wrap { grid-template-columns: auto auto; justify-content: space-between; position: relative; z-index: 2; }
  .brand-logo { width: 148px; height: 34px; }
  .menu-toggle { display: block; position: relative; z-index: 120; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  h2 { font-size: clamp(1.5rem, 6.4vw, 2rem); }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: fixed; z-index: 110;
    left: 12px; right: 12px; top: calc(var(--header-h) + 8px);
    max-height: calc(100dvh - var(--header-h) - 24px);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open > a,
  .nav-drop > button {
    min-height: 44px; padding: 8px 10px; width: 100%; justify-content: flex-start;
  }
  .nav-links.open > a.nav-academy { align-self: stretch; justify-content: center; margin-top: 6px; }
  .nav-links.open > a.nav-mobile-cta {
    display: flex; width: 100%; margin-top: 8px; justify-content: center;
    min-height: 48px; padding: 0 22px;
    background: var(--grad-btn); color: #fff;
    font-weight: 700; font-size: 0.94rem; border-radius: 14px;
  }
  .nav-drop { display: block; }
  .nav-drop > button { justify-content: space-between; }
  .nav-drop > button::after { content: "⌄"; opacity: 0.55; }
  .nav-drop.is-open > button::after { transform: rotate(180deg); }
  .nav-drop-menu { position: static; display: none; padding: 0 0 8px 4px; }
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu { display: none; }
  .nav-drop.is-open .nav-drop-menu { display: block; }
  .nav-drop-panel { box-shadow: none; border: 0; padding: 0; background: transparent; }
  .hero-grid,
  .page-hero-grid { grid-template-columns: 1fr !important; }
  .hero { min-height: 0; padding-top: 16px; }
  .hero-grid { gap: 8px; padding-bottom: 12px; }
  .hero h1, .page-hero h1, .page-hero-grid h1, .cta-panel h2 { max-width: none; }
  .hero .lead { font-size: 1rem; margin: 14px 0 20px; }
  .hero-stage { min-height: 0; }
  .devices { height: 250px; overflow: hidden; }
  .phone { width: 168px; height: 336px; }
  .device-desktop { width: 82%; max-width: 360px; right: 0; top: 8px; }
  .device-phone { width: 108px; left: 8%; bottom: 0; }
  .eco-grid, .feature-grid, .seg-grid, .pricing-grid, .faq-grid, .proof-grid, .footer-grid, .contact-grid, .demo-layout, .case-grid, .article-wrap, .related-grid { grid-template-columns: 1fr; }
  .proof-item + .proof-item::before { display: none; }
  .proof-num { white-space: normal; font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .eco-card { min-height: 280px; }
  .eco-erp .eco-link { white-space: normal; }
  .eco-whatsapp h3, .eco-whatsapp p,
  .eco-chatfacil h3, .eco-chatfacil p { max-width: none; }
  .eco-phone { width: 130px; bottom: -90px; }
  .eco-inbox { width: 120px; }
  .how-wrap { grid-template-columns: 1fr; }
  .how-phone { width: min(220px, 68vw); height: auto; aspect-ratio: 250 / 500; }
  .ig-row { grid-template-columns: 1fr; max-width: 380px; }
  .ig-tilt-l, .ig-tilt-r { transform: none; margin-top: 0; }
  .founder-card { grid-template-columns: auto 1fr; }
  .founder-go { white-space: normal; }
  .me-bento { grid-template-columns: 1fr; }
  .me-hero, .me-photo, .me-bio, .me-aside, .me-work, .me-cta { grid-column: 1; }
  .me-photo img { min-height: 280px; max-height: 420px; }
  .me-shots img { height: 140px; max-height: 140px; }
  .me-hero { padding: 28px 20px; }
  .me-cta { justify-content: center; text-align: center; }
  .price-card.is-featured { transform: none; }
  .connected-inner { padding: 40px 16px 48px; }
  .integ { grid-template-columns: 1fr 1fr; }
  .integ li { min-height: 108px; padding: 14px 10px; }
  .integ li > img { height: 40px; }
  .integ li.integ-lockup > img { height: 32px; }
  .case-card img { height: 200px; }
  .cta-card { padding: 40px 20px 32px; border-radius: var(--radius); }
  .cta-panel.band-mesh { padding: 48px 16px 88px; }
  .actions { width: 100%; }
  .actions .btn { flex: 1 1 160px; }
  .case-ig .btn-ig,
  .cs-ig .btn-ig { flex: 0 0 auto; }
  .visual-frame { min-height: 0; }
  .visual-frame img, .article-cover img, .prose-cover img { width: 100%; height: auto; }
  .mode-bridge { flex-direction: column; text-align: center; padding: 16px; }
  .logos { --logo-slot: 140px; --logo-gap: 28px; }
  .logo-item { height: 72px; }
  .logo-item img { max-height: 52px; }
  .fd-devices picture:first-child { width: 100%; margin-left: 0; }
  .wa-hero-stage, .visual-frame.wa-hero { min-height: 360px; overflow: hidden; }
  .wa-hero-phone { width: 176px; height: 338px; }
  .wa-hero-art { width: 132px; left: 8px; top: 36px; }
  .wa-hero-phone-wrap { right: 12px; top: 12px; }
  .wa-hero-chip { min-width: 0; }
  .cookie-bar { z-index: 70; }
  .mobile-cta {
    display: flex; position: fixed; z-index: 60; left: 12px; right: 12px; bottom: 12px;
    min-height: 50px; border-radius: 14px; background: var(--purple); color: #fff;
    text-decoration: none; font-weight: 800; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(109,92,231,0.35);
  }
  body.nav-open .mobile-cta,
  body.nav-open .whatsapp-fab-widget,
  body.nav-open .cookie-bar { visibility: hidden; }
  .site-footer { padding-bottom: 88px; }
  .float-card { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .integ { grid-template-columns: 1fr; }
  .integ-more { grid-column: auto; }
  .devices { height: 200px; }
  .device-phone { width: 92px; }
  .switch { flex-wrap: wrap; width: 100%; justify-content: center; }
  .toggles { width: 100%; }
  .cs-facts { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.band-dark .grad {
  background: linear-gradient(100deg, #c4b8ff 8%, #a78bfa 46%, #36d677 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band-dark .lead { color: #cfc7e8; }

.feature-link { text-decoration: none; color: inherit; display: block; padding: 18px 12px; border-radius: 22px; }
.feature-link:hover { background: #fff; box-shadow: var(--shadow); }
.feature-link:hover .icon-box { transform: translateY(-3px); }
.icon-box { transition: transform 0.25s var(--ease); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.blog-grid-2 { grid-template-columns: repeat(2, 1fr); }
.blog-index { padding: 28px 0 72px; }
.blog-index h1 { max-width: 18ch; }
.blog-index .lead { margin-bottom: 0; }
.blog-index .blog-grid { margin-top: 28px; }
.blog-card {
  display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
  height: 100%;
  border-radius: 22px; background: #fff; border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-cover { aspect-ratio: 16/10; overflow: hidden; background: var(--lilac); }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.blog-meta > * + *::before { content: "·"; margin: 0 8px; font-weight: 700; opacity: 0.45; }
.blog-card .blog-meta span:first-child { color: var(--purple); }
.blog-body h3 { margin: 10px 0 8px; font-size: 1.12rem; line-height: 1.25; }
.blog-body p { margin: 0; color: var(--muted); font-size: 0.88rem; flex: 1; }
.blog-cta { margin-top: 16px; color: var(--purple); font-size: 0.82rem; font-weight: 750; }

.page-hero { padding: 48px 0 20px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .centered h1 { max-width: 22ch; }
.page-hero-grid h1 { max-width: 14em; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.crumb { display: flex; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 0.78rem; }
.crumb a { color: var(--purple); text-decoration: none; }
.page-points { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.page-points li {
  display: flex; gap: 10px; align-items: center; padding: 12px 14px;
  border-radius: 14px; background: rgba(124,92,255,0.06); border: 1px solid rgba(124,92,255,0.14);
  font-size: 0.88rem;
}
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.benefit-card .icon-box { margin: 0 0 14px; font-weight: 800; color: var(--purple); }
.benefit-card h3 { margin: 18px 0 8px; }
.benefit-card p { margin: 0; color: var(--muted); }
.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step-card { padding: 24px; border-radius: 22px; background: #fff; border-top: 3px solid var(--purple); }
.step-card b { color: var(--purple); font-size: 0.72rem; letter-spacing: 0.08em; }
.visual-frame { position: relative; min-height: 420px; display: grid; place-items: center; }
.visual-frame img { max-height: 460px; width: auto; border-radius: 28px; filter: drop-shadow(0 30px 50px rgba(18,20,31,.18)); animation: float-b 6s ease-in-out infinite; }
.visual-frame .phone {
  position: relative; left: auto; right: auto; top: auto; margin: 0 auto;
  width: 270px;
  height: 552px;
  transform: none;
  animation: float-b 6s ease-in-out infinite;
}
.visual-frame .phone img {
  max-height: none !important;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  filter: none;
  animation: none;
}
@media (max-width: 780px) {
  .visual-frame .phone {
    width: min(240px, 68vw);
    height: min(490px, 140vw);
  }
}
.wa-api-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 4px;
  min-height: 48px;
  padding: 6px 16px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 211, 102, 0.28);
  box-shadow: 0 12px 28px rgba(18, 20, 31, 0.08), 0 8px 20px rgba(37, 211, 102, 0.14);
  color: var(--ink);
  text-decoration: none;
}
.wa-api-seal__mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.wa-api-seal__mark img {
  width: 20px;
  height: 20px;
  display: block;
}
.wa-api-seal__copy {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}
.wa-api-seal strong {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.wa-api-seal small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #128c7e;
}

/* Hero WhatsApp — composição em camadas (somente visual do lado direito) */
.visual-frame.wa-hero {
  min-height: 580px;
  overflow: visible;
  place-items: stretch;
}
.visual-frame.wa-hero img {
  max-height: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
  filter: none;
  animation: none;
}
.wa-hero-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 580px;
}
.wa-hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 10% 6%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 46% at 28% 38%, rgba(124, 92, 255, 0.2), transparent 70%),
    radial-gradient(46% 48% at 78% 62%, rgba(54, 214, 119, 0.18), transparent 68%);
}
.wa-hero-art {
  position: absolute;
  z-index: 1;
  left: 4%;
  top: 56px;
  width: min(52%, 270px);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0.74;
  transform: rotate(-6.5deg);
  transform-origin: 50% 60%;
  box-shadow:
    0 28px 56px rgba(18, 20, 31, 0.16),
    0 0 36px rgba(124, 92, 255, 0.18),
    0 0 28px rgba(54, 214, 119, 0.16);
  animation: wa-hero-art-float 7.6s ease-in-out infinite alternate;
}
.wa-hero-art img {
  object-fit: cover;
  object-position: center 18%;
}
.wa-hero-phone-wrap {
  position: absolute;
  z-index: 3;
  right: 6%;
  top: 18px;
  animation: wa-hero-phone-float 5.6s ease-in-out infinite alternate;
}
.wa-hero-phone {
  width: 286px;
  height: 548px;
  transform: rotate(5deg);
  transform-origin: 52% 62%;
  filter: drop-shadow(0 28px 40px rgba(18, 20, 31, 0.22)) drop-shadow(0 8px 18px rgba(124, 92, 255, 0.12));
}
.wa-hero-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 9px;
  border-radius: 44px;
  background: linear-gradient(160deg, #2a2d36 0%, #111318 42%, #0c0d12 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.wa-hero-island {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 96px;
  height: 28px;
  margin-left: -48px;
  border-radius: 999px;
  background: #05060a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.wa-hero-island::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a4a62, #111 70%);
}
.wa-hero-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #efe8df;
  color: var(--ink);
}
.wa-hero-chat-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 38px 12px 11px;
  background: linear-gradient(180deg, #1f4f42, #16382f);
  color: #fff;
}
.wa-hero-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #1aa85a);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.wa-hero-chat-id { min-width: 0; }
.wa-hero-chat-id strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.wa-hero-chat-id span {
  display: block;
  margin-top: 2px;
  color: #9be7b8;
  font-size: 0.68rem;
  font-weight: 600;
}
.wa-hero-meta-seal {
  max-width: 78px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.wa-hero-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px 14px;
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 214, 119, 0.1), transparent 42%),
    radial-gradient(circle at 86% 88%, rgba(124, 92, 255, 0.08), transparent 44%),
    #efe8df;
}
.wa-hero-trigger {
  align-self: center;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(124, 92, 255, 0.18);
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}
.wa-hero-bubble {
  align-self: flex-start;
  max-width: 92%;
  padding: 11px 12px 8px;
  border-radius: 6px 18px 18px 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 20, 31, 0.08);
}
.wa-hero-bubble p {
  margin: 0;
  color: #1a1e27;
  font-size: 0.84rem;
  font-weight: 550;
  line-height: 1.45;
}
.wa-hero-bubble b { color: #128c7e; font-weight: 800; }
.wa-hero-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  color: #6b7280;
  font-size: 0.64rem;
  font-weight: 650;
}
.wa-hero-meta svg { color: #5b9fd6; display: block; }
.wa-hero-composer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 10px 12px;
  background: #f6f3ee;
}
.wa-hero-composer span {
  flex: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #9aa0b8;
  font-size: 0.76rem;
  font-weight: 600;
}
.wa-hero-composer i {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.28);
}
.wa-hero-composer i::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 13px;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}
.wa-hero-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(18, 20, 31, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wa-hero-chip b {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.wa-hero-chip small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
}
.wa-hero-chip-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
}
.wa-hero-chip-dot.is-green {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(54, 214, 119, 0.16);
}
.wa-hero-chip-dot.is-purple {
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.16);
}
.wa-hero-chip--1 {
  left: 2%;
  top: 22px;
  animation: wa-hero-chip-float 4.8s ease-in-out 0.2s infinite alternate;
}
.wa-hero-chip--2 {
  left: 0;
  top: 54%;
  animation: wa-hero-chip-float-b 6.2s ease-in-out 0.8s infinite alternate;
}
.wa-hero-chip--3 {
  right: 2%;
  top: 8px;
  animation: wa-hero-chip-float-c 5.4s ease-in-out 0.4s infinite alternate;
}
.wa-hero-chip--4 {
  right: 0;
  top: 61%;
  animation: wa-hero-chip-float 7s ease-in-out 1.1s infinite alternate;
}
@keyframes wa-hero-phone-float {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}
@keyframes wa-hero-art-float {
  from { transform: rotate(-6.5deg) translateY(0); }
  to { transform: rotate(-5.5deg) translateY(-6px); }
}
@keyframes wa-hero-chip-float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
@keyframes wa-hero-chip-float-b {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}
@keyframes wa-hero-chip-float-c {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-hero-art {
    animation: none;
    transform: rotate(-6.5deg);
  }
  .wa-hero-phone-wrap,
  .wa-hero-chip { animation: none; }
}

@media (max-width: 1050px) {
  .visual-frame.wa-hero,
  .wa-hero-stage { min-height: 540px; }
  .wa-hero-phone { width: 252px; height: 484px; }
  .wa-hero-art { width: min(48%, 230px); top: 52px; }
  .wa-hero-phone-wrap { right: 8%; top: 20px; }
  .wa-hero-chip { min-width: 150px; padding: 8px 12px; }
}
@media (max-width: 780px) {
  .visual-frame.wa-hero,
  .wa-hero-stage { min-height: 380px; overflow: hidden; }
  .wa-hero-stage { max-width: 100%; margin-inline: auto; }
  .wa-hero-phone { width: 176px; height: 338px; transform: rotate(3.5deg); }
  .wa-hero-art { width: 132px; left: 8px; top: 36px; }
  .wa-hero-phone-wrap { right: 10px; top: 12px; }
  .wa-hero-chip--4 { display: none; }
  .wa-hero-chat-id strong { font-size: 0.82rem; }
  .wa-hero-bubble p { font-size: 0.78rem; }
}
@media (max-width: 480px) {
  .wa-hero-chip--2 { display: none; }
  .wa-hero-phone-wrap { right: 28px; }
}

.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.mode-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.mode-card .eyebrow { margin-bottom: 10px; }
.mode-card h3 { margin: 0 0 10px; }
.mode-card > p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; }
.mode-card.auto .eyebrow { color: var(--green-deep); }
.mode-card.auto .flow-mini li::before {
  background: var(--mint);
  color: var(--green-deep);
}
.mode-bridge {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.mode-bridge-mark {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--green));
}
.mode-bridge p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: none;
}
.mode-bridge strong { color: var(--ink); font-weight: 750; }
.flow-mini { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; counter-reset: s; }
.flow-mini li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; font-size: 0.86rem; color: var(--ink-soft); }
.flow-mini li::before {
  counter-increment: s; content: counter(s); width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 8px; background: var(--lilac); color: var(--purple); font-size: 0.72rem; font-weight: 800;
}
.erp-split {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: start;
}
.erp-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.erp-list li {
  padding: 10px 12px; border-radius: 12px; background: rgba(124,92,255,0.05);
  font-size: 0.9rem;
}
.article-hero { padding: 40px 0 8px; }
.article-wrap { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 40px; align-items: center; }
.article-cover { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: var(--wash); aspect-ratio: 4 / 3; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; min-height: 0; display: block; }
.article-intro h1 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.12;
  overflow-wrap: break-word;
}
.article-intro .lead { margin-bottom: 0; max-width: 38em; }
.article-intro .blog-meta { margin-top: 16px; }

.post-head { padding: 32px 0 8px; }
.post-head-inner { max-width: 760px; margin: 0 auto; }
.post-head .crumb { margin-bottom: 18px; }
.post-head h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}
.post-head .lead {
  margin: 16px 0 0;
  font-size: 1.12rem;
  max-width: 40em;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.post-byline img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.post-byline strong { display: block; font-size: 0.92rem; }
.post-byline .blog-meta { margin-top: 2px; }
.post-cover-wrap { max-width: 1180px; margin: 28px auto 8px; }
.post-cover {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--wash);
  aspect-ratio: 16 / 9;
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.post-shell {
  width: min(1180px, calc(100% - var(--gutter) * 2));
  margin: 8px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}
.post-shell .article-body { max-width: none; margin: 0; padding: 16px 0 48px; }
.post-share.is-rail {
  display: none;
}
.post-aside {
  display: grid;
  gap: 14px;
  padding: 16px 0 96px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.post-inflow { display: none; gap: 12px; margin: 0 0 28px; }
.post-offer {
  display: grid;
  justify-items: stretch;
  padding: 18px 16px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.post-offer-mint { background: var(--mint); }
.post-offer-peach { background: var(--peach); }
.post-offer-lilac { background: var(--lilac); }
.post-offer-sky { background: var(--sky); }
.post-offer h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.post-offer p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 500;
}
.post-offer .btn { width: 100%; }
.post-offer-next {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}
.post-proof {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}
.post-proof strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.post-proof span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.post-proof em {
  font-style: normal;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 750;
}
.post-popular {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.post-popular .eyebrow { margin-bottom: 10px; }
.post-popular a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.post-popular a:first-of-type { border-top: 0; padding-top: 0; }
.post-popular img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}
.post-inline {
  display: grid;
  justify-items: start;
  margin: 32px 0;
  padding: 22px 22px 20px;
  border-radius: 20px;
}
.post-inline h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  max-width: 22ch;
}
.post-inline p {
  margin: 0 0 16px;
  max-width: 42em;
}
.post-inline .btn { width: auto; }
@media (min-width: 1200px) {
  .post-shell { grid-template-columns: 44px minmax(0, 1fr) 300px; }
  .post-share.is-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    margin: 0;
    padding-top: 8px;
  }
  .post-share.is-rail span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .post-shell .article-body .post-share.is-inline { display: none; }
}
@media (max-width: 900px) {
  .post-shell { grid-template-columns: 1fr; }
  .post-share.is-rail { display: none; }
  .post-inflow { display: grid; }
  .post-aside-convert { display: none; }
  .post-aside {
    position: static;
    padding-top: 0;
  }
}
.post-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}
.post-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  text-decoration: none;
}
.post-share a:hover { border-color: var(--purple); color: var(--purple); background: var(--lilac); }
.post-share svg { width: 16px; height: 16px; display: block; }
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
}
.post-tags a {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--wash);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}
.post-tags a:hover { color: var(--purple); border-color: rgba(124,92,255,0.35); }
.related-posts { padding: 16px 0 56px; }
.related-posts .container > .eyebrow { margin-bottom: 8px; }
.related-posts h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); max-width: 16ch; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.article-body { max-width: 760px; margin: 0 auto; padding: 24px 0 48px; }
.article-body h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 36px 0 12px; }
.article-body h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.article-body p, .article-body li { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.article-body ul { padding-left: 18px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 22px 20px;
  border-left: 3px solid var(--purple);
  background: var(--lilac);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
  font-weight: 600;
}
.article-body blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 6px;
  color: var(--purple);
  font-size: 2.2rem;
  line-height: 0.8;
  font-weight: 800;
}
.article-body .post-offer p,
.article-body .post-inline p {
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}
.article-body .post-inline h3 { margin: 0 0 8px; }
.article-toc {
  display: grid;
  gap: 2px;
  margin: 0 0 32px;
  padding: 16px 16px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--wash);
}
.article-toc .eyebrow { margin: 0 0 8px; }
.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: toc;
}
@media (min-width: 640px) {
  .article-toc ol { grid-template-columns: 1fr 1fr; column-gap: 16px; }
}
.article-toc li { counter-increment: toc; }
.article-toc a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 6px 4px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}
.article-toc a::before {
  content: counter(toc);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 800;
}
.article-toc a:hover { background: var(--wash); color: var(--purple); }
.prose .article-toc { margin-bottom: 28px; }
.prose .article-toc p,
.prose .article-toc .eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  line-height: 1.3;
}
.prose .article-toc li { color: var(--ink); font-size: inherit; line-height: inherit; }
.cs-page .page-hero-grid .article-cover { min-height: 280px; }
.author-box { display: flex; gap: 14px; padding: 20px; border-radius: 18px; background: var(--wash); margin-top: 40px; }
.author-box strong { display: block; }
.prose-section { padding-top: 48px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 36px 0 12px; }
.prose h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.prose ul { padding-left: 18px; }
.prose .actions { margin: 16px 0 8px; }
.prose-note { color: var(--muted); font-size: 0.88rem; }
.prose-cover { margin: 0 0 32px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); }
.prose-cover img { width: 100%; height: auto; display: block; }
.prose blockquote {
  margin: 22px 0; padding: 18px 20px; border-left: 3px solid var(--purple);
  background: var(--lilac); border-radius: 0 16px 16px 0; color: var(--ink); font-weight: 600;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  padding: 28px; border-radius: 24px; background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.contact-card h2 { font-size: 1.4rem; }
.contact-card .btn { margin-top: 8px; align-self: flex-start; }

body[data-page="contato"] .section { padding: 40px 0 72px; }
.demo-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.demo-form-card,
.demo-aside {
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.demo-form-card { display: grid; gap: 12px; }
.demo-form-card h2 { margin: 0; font-size: 1.125rem; font-weight: 650; }
.demo-form-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.demo-form { display: grid; gap: 12px; }
.demo-field { display: grid; gap: 6px; margin: 0; border: 0; padding: 0; }
.demo-field > span,
.demo-field > legend {
  padding: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}
.demo-field input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
}
.demo-field input[type="text"]::placeholder { color: var(--muted); opacity: 0.7; }
.demo-field input[type="text"]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.16);
}
.demo-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.demo-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.demo-options input { position: absolute; opacity: 0; pointer-events: none; }
.demo-options label:has(input:checked) {
  border-color: var(--purple);
  background: var(--lilac);
  color: var(--ink);
}
.demo-preview-wrap {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--wash);
}
.demo-preview-label {
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-preview {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.5;
  max-height: 140px;
  overflow: auto;
}
.demo-error { margin: 0; color: #b42318; font-size: 0.78rem; font-weight: 600; }
.demo-actions { display: grid; gap: 12px; margin-top: 4px; }
.demo-actions .btn { width: 100%; }
.demo-actions .btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.demo-actions .btn-outline:hover { background: var(--wash); }
.demo-support {
  margin: 4px 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}
.demo-support a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.demo-aside { display: grid; gap: 12px; }
.demo-aside h2 { margin: 0; font-size: 1.125rem; font-weight: 650; }
.demo-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.demo-aside li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.demo-aside b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--lilac);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 800;
}
.demo-aside p { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }

/* Sobre */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about-panel {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.about-panel h3 { margin: 4px 0 10px; }
.about-panel p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.about-panel img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 18px;
}
.about-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.about-duo img { height: 148px; margin-top: 0; }
.about-stat {
  margin-top: auto;
  padding-top: 28px;
}
.about-stat strong {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--purple);
}
.about-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 640px;
  margin: 32px auto 0;
}
.archive-grid figure { margin: 0; }
.archive-grid img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.archive-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}
.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.about-story img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.ig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 780px;
  margin: 48px auto 8px;
  align-items: start;
}
.ig-post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.ig-tilt-l { transform: rotate(-3.2deg); }
.ig-tilt-r { transform: rotate(3.4deg); margin-top: 32px; }
.ig-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.ig-avatar {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}
.ig-avatar.is-letter {
  display: grid; place-items: center;
  background: #1a1433;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}
.ig-head a, .ig-head .ig-handle {
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
}
.ig-head small { display: block; color: var(--muted); font-size: 0.68rem; font-weight: 600; }
.ig-mark { margin-left: auto; width: 18px; height: 18px; color: #d62976; }
.ig-banner {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.ig-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.ig-photo {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #111;
}
.ig-photo.is-street { object-position: 68% 42%; }
.ig-actions {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px 2px;
  color: var(--ink);
}
.ig-actions svg { width: 22px; height: 22px; }
.ig-cap {
  padding: 6px 14px 16px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.ig-cap b { color: var(--ink); }
.founder-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.founder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.founder-avatar {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  overflow: hidden;
  background: var(--grad-btn);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.founder-card h3 { margin: 2px 0 6px; }
.founder-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.founder-go { color: var(--purple); font-weight: 750; font-size: 0.88rem; white-space: nowrap; }

/* Página do fundador — grade orgânica */
.me-page { padding: 20px 0 72px; }
.me-bento {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 12px;
  align-items: stretch;
}
.me-cell {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.me-hero {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 36px 32px 28px;
  background:
    radial-gradient(42% 80% at 8% 20%, rgba(124, 92, 255, 0.16), transparent 70%),
    radial-gradient(36% 70% at 92% 10%, rgba(54, 214, 119, 0.18), transparent 68%),
    #fff;
}
.me-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  max-width: none;
}
.me-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}
.me-kicker {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}
.me-bio h2, .me-work h2, .me-aside h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}
.me-bio p, .me-work p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}
.me-mark { color: var(--purple); font-weight: 700; }
.me-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.me-links a {
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}
.me-links a:hover { color: var(--ink); }
.me-photo { padding: 0; min-height: 280px; }
.me-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.me-aside { display: flex; flex-direction: column; }
.me-file {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.me-aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.me-aside li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 12px;
  border-radius: 16px;
  background: var(--wash);
}
.me-aside b { font-size: 0.92rem; }
.me-aside span { color: var(--muted); font-size: 0.75rem; font-weight: 600; }
.me-work { grid-column: 1 / -1; padding: 28px; }
.me-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.me-shots figure { margin: 0; }
.me-shots img {
  width: 100%;
  height: 168px;
  max-height: 168px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.me-shots img.is-street { object-position: 68% 42%; }
.me-shots figcaption {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
}
.me-shots figcaption a {
  color: var(--purple);
  text-decoration: none;
}
.me-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
}

@media (max-width: 1050px) {
  .blog-grid, .blog-grid-2, .page-hero-grid, .mode-grid, .erp-split, .contact-grid, .demo-layout, .about-split, .about-story, .article-wrap { grid-template-columns: 1fr; }
  .steps-3, .benefit-grid { grid-template-columns: 1fr; }
  .about-story img { height: 280px; }
  .me-bento { grid-template-columns: 1fr 1fr; }
  .me-hero { grid-column: 1 / -1; grid-row: 1; }
  .me-bio { grid-column: 1; grid-row: 2; }
  .me-aside { grid-column: 2; grid-row: 2; }
  .me-photo { grid-column: 1 / -1; grid-row: 3; }
  .me-photo img { min-height: 360px; max-height: 520px; }
  .me-work { grid-column: 1 / -1; grid-row: 4; }
  .me-cta { grid-column: 1 / -1; grid-row: 5; }
}

@media (max-width: 780px) {
  .me-bento { grid-template-columns: 1fr; }
  .me-hero, .me-photo, .me-bio, .me-aside, .me-work, .me-cta {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Página do fundador — narrativa em seções */
.fd-page .page-hero h1,
.fd-page .page-hero-grid h1 { max-width: 12em; }
.fd-page a:focus-visible,
.fd-page .btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
.fd-page .cta-panel h2 { max-width: 16em; }
.fd-hero-actions { margin-top: 28px; }
.fd-photo picture { display: block; height: 100%; }
.fd-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.fd-photo-tall img { min-height: 520px; }
.fd-quote {
  margin: 36px 0 8px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fd-quote p {
  margin: 0;
  max-width: 42em;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: var(--ink);
}
.band-wash .fd-quote,
.band-wash-2 .fd-quote,
.fd-copy .fd-quote { background: #fff; }
.fd-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
  overflow: visible;
}
.fd-copy { max-width: 760px; }
.fd-prose { margin-top: 12px; }
.fd-prose p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 42em;
}
.fd-prose p:last-child { margin-bottom: 0; }
.fd-split.is-aside { align-items: start; }
.fd-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.fd-fact {
  margin: 0;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--wash);
  border: 1px solid var(--line);
}
.fd-fact strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}
.fd-fact span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
}
.fd-fact.is-text strong {
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  padding-top: 6px;
}
.fd-fact.is-lead {
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(54, 214, 119, 0.18), transparent 62%),
    #fff;
  border-color: rgba(54, 214, 119, 0.28);
}
.fd-fact.is-lead strong { color: var(--green-deep); }
.fd-family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.fd-family .about-panel picture { display: block; margin-top: 18px; }
.fd-family .about-panel img { margin-top: 0; }
.fd-family .about-panel img.is-street { object-position: 68% 42%; }
.fd-devices {
  position: relative;
  min-height: 380px;
  padding-bottom: 28px;
  overflow: visible;
  isolation: isolate;
}
.fd-devices picture:first-child { display: block; width: 112%; max-width: none; margin-left: -4%; }
.fd-desk {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 44px rgba(18, 20, 31, 0.2));
}
.fd-devices picture:last-child {
  position: absolute;
  z-index: 2;
  width: min(44%, 210px);
  right: -2%;
  bottom: -6%;
  overflow: visible;
}
.fd-handset {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(18, 20, 31, 0.28));
}
.fd-slogan {
  margin: 40px 0 0;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 80% at 12% 20%, rgba(124, 92, 255, 0.16), transparent 70%),
    radial-gradient(50% 70% at 90% 80%, rgba(54, 214, 119, 0.16), transparent 68%),
    #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.15;
}
.fd-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.fd-metric {
  padding: 24px 22px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.fd-metric-num {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: var(--ink);
}
.fd-metric-num span {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.42em;
  font-weight: 750;
  letter-spacing: 0;
  color: var(--ink-soft);
  vertical-align: middle;
}
.fd-metric-label {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink-soft);
}
.fd-metric-note {
  margin: 10px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}
.fd-metric.is-lead {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background:
    radial-gradient(70% 120% at 0% 0%, rgba(54, 214, 119, 0.18), transparent 60%),
    var(--mint);
  border-color: rgba(54, 214, 119, 0.28);
}
.fd-metric.is-lead .fd-metric-num { color: var(--green-deep); }
.fd-source {
  margin: 24px 0 0;
  max-width: 42em;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
@media (max-width: 1050px) {
  .fd-split, .fd-family { grid-template-columns: 1fr; }
  .fd-photo img, .fd-photo-tall img { min-height: 360px; max-height: 520px; }
  .fd-devices { min-height: 0; margin-top: 8px; padding-bottom: 36px; }
  .fd-devices picture:first-child { width: 100%; margin-left: 0; }
}
@media (max-width: 780px) {
  .fd-metrics { grid-template-columns: 1fr; }
  .fd-metric.is-lead { grid-column: 1; }
  .fd-devices picture:last-child { width: 34%; max-width: 140px; }
  .fd-quote { padding: 20px; }
  .fd-slogan { font-size: 1.45rem; padding: 28px 18px; }
}

/* Case Aerial — composição no padrão visual da prévia */
.cs-page .page-hero h1,
.cs-page .page-hero-grid h1 {
  max-width: 14em;
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.12;
  overflow-wrap: break-word;
}
.cs-hero-media { min-width: 0; }
.cs-hero-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  align-items: end;
}
.cs-hero-photos figure { margin: 0; }
.cs-hero-photos img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.cs-hero-photos .is-main {
  height: 420px;
  object-position: 68% 42%;
}
.cs-hero-photos figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
}
.cs-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.cs-logo {
  display: grid;
  place-items: center;
  height: 52px;
  padding: 8px 14px;
  border-radius: 14px;
  background: #111318;
  border: 1px solid rgba(255,255,255,0.06);
}
.cs-logo img {
  height: 32px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}
.cs-ig,
.case-ig {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.cs-ig.actions,
.case-ig.actions { flex-wrap: nowrap; gap: 8px; }
.cs-ig .btn-ig,
.case-ig .btn-ig { flex: 0 0 auto; }
.cs-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.cs-fact {
  padding: 20px 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.cs-fact-label {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}
.cs-fact-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
}
.cs-ops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.cs-op {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.cs-op b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--lilac);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
}
.cs-op h3 { margin: 0 0 8px; }
.cs-op p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.cs-quote footer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}
@media (max-width: 1050px) {
  .cs-facts { grid-template-columns: 1fr 1fr; }
  .cs-hero-photos img { height: 280px; }
  .cs-hero-photos .is-main { height: 320px; }
}
@media (max-width: 780px) {
  .cs-facts, .cs-ops, .cs-hero-photos { grid-template-columns: 1fr; }
  .cs-hero-photos img, .cs-hero-photos .is-main { height: 240px; }
}

.whatsapp-fab-widget {
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --wa-green-light: #DCF8C6;
  --wa-bg: #ece5dd;
  --wa-fab-size: clamp(72px, 7vw, 104px);
  --wa-panel-w: min(400px, calc(100vw - 28px));
  --wa-panel-h: min(620px, calc(100dvh - 100px));
  --wa-bottom: max(clamp(20px, 4vh, 48px), env(safe-area-inset-bottom, 0px));
  --wa-right: max(clamp(16px, 4vw, 64px), env(safe-area-inset-right, 0px));
  position: fixed; z-index: 119;
  right: var(--wa-right); bottom: var(--wa-bottom);
  pointer-events: none;
}
.whatsapp-fab-backdrop {
  position: fixed; inset: 0; z-index: -1; border: 0; padding: 0;
  background: rgba(17, 27, 33, 0.45); opacity: 0; cursor: pointer;
  pointer-events: none; transition: opacity 0.32s ease;
}
.whatsapp-fab-widget--open .whatsapp-fab-backdrop { opacity: 1; pointer-events: auto; }
.whatsapp-fab-panel {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: var(--wa-fab-size); height: var(--wa-fab-size);
  overflow: hidden; border-radius: 999px;
  background: var(--wa-green);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(37, 211, 102, 0.35);
  transform-origin: bottom right;
  transition: width 0.44s cubic-bezier(0.34, 1.2, 0.64, 1), height 0.44s cubic-bezier(0.34, 1.2, 0.64, 1), border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s ease, background-color 0.18s ease;
  pointer-events: auto;
}
.whatsapp-fab-widget--open .whatsapp-fab-panel {
  width: var(--wa-panel-w); height: var(--wa-panel-h); border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: width 0.44s cubic-bezier(0.34, 1.2, 0.64, 1), height 0.44s cubic-bezier(0.34, 1.2, 0.64, 1), border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s ease, background-color 0.12s ease 0.22s;
}
.whatsapp-fab-trigger {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  padding: 0; border: 0; background: transparent; color: #fff; cursor: pointer;
  transition: opacity 0.18s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-fab-trigger svg { width: clamp(34px, 3.2vw, 46px); height: clamp(34px, 3.2vw, 46px); }
.whatsapp-fab-avatar { position: relative; display: block; flex-shrink: 0; }
.whatsapp-fab-avatar__photo { display: block; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #fff; }
.whatsapp-fab-avatar__badge {
  position: absolute; right: -1px; bottom: -1px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--wa-green); color: #fff; border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.whatsapp-fab-avatar__badge svg { display: block; width: 100%; height: 100%; }
.whatsapp-fab-avatar--header { width: 40px; height: 40px; }
.whatsapp-fab-avatar--header .whatsapp-fab-avatar__photo { border: 1.5px solid rgba(255, 255, 255, 0.9); }
.whatsapp-fab-avatar--header .whatsapp-fab-avatar__badge { width: 16px; height: 16px; padding: 2px; border-width: 1.5px; right: 0; bottom: 0; }
.whatsapp-fab-widget:not(.whatsapp-fab-widget--open) .whatsapp-fab-trigger:hover { transform: scale(1.06); }
.whatsapp-fab-trigger:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 50%; }
.whatsapp-fab-widget--open .whatsapp-fab-trigger { opacity: 0; transform: scale(0.55); pointer-events: none; }
.whatsapp-fab-panel__inner {
  display: flex; flex: 1; flex-direction: column; min-height: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease 0.1s, visibility 0.22s ease 0.1s;
}
.whatsapp-fab-widget--open .whatsapp-fab-panel__inner { opacity: 1; visibility: visible; transition-delay: 0.18s; }
.whatsapp-fab-header {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 14px 13px; background: var(--wa-green); color: #fff; flex-shrink: 0;
}
.whatsapp-fab-header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.whatsapp-fab-header__brand strong { display: block; font-size: 0.92rem; font-weight: 700; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.whatsapp-fab-header__brand span { display: block; margin-top: 2px; color: rgba(255, 255, 255, 0.88); font-size: 0.68rem; font-weight: 500; }
.whatsapp-fab-close {
  width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16); color: #fff; font-size: 1.35rem; line-height: 1; cursor: pointer;
}
.whatsapp-fab-close:hover { background: rgba(255, 255, 255, 0.28); }
.whatsapp-fab-body {
  flex: 1; min-height: 0; overflow: auto; padding: 16px;
  background: var(--wa-bg);
  background-image: radial-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px);
  background-size: 12px 12px;
}
.whatsapp-fab-lead {
  margin: 0 0 14px; padding: 10px 12px; border-radius: 10px;
  background: #fff; color: #54656f; font-size: 0.76rem; line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.whatsapp-fab-form { display: grid; gap: 12px; }
.whatsapp-fab-field { display: grid; gap: 6px; margin: 0; border: 0; padding: 0; }
.whatsapp-fab-field > span, .whatsapp-fab-field > legend { padding: 0; color: #3b4a54; font-size: 0.72rem; font-weight: 700; }
.whatsapp-fab-field input[type="text"] {
  width: 100%; min-height: 42px; padding: 0 12px;
  border: 1px solid #d1d7db; border-radius: 10px; background: #fff; color: #111b21;
  font: inherit; font-size: 0.84rem;
}
.whatsapp-fab-field input[type="text"]::placeholder { color: #8696a0; }
.whatsapp-fab-field input[type="text"]:focus { outline: none; border-color: var(--wa-green); box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.22); }
.whatsapp-fab-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.whatsapp-fab-options label {
  display: flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 8px;
  border: 1px solid #d1d7db; border-radius: 10px; background: #fff;
  color: #54656f; font-size: 0.76rem; font-weight: 600; cursor: pointer;
}
.whatsapp-fab-options input { position: absolute; opacity: 0; pointer-events: none; }
.whatsapp-fab-options label:has(input:checked) {
  border-color: var(--wa-green); background: var(--wa-green-light); color: #075e54;
}
.whatsapp-fab-preview-wrap { display: grid; gap: 6px; padding: 12px; border-radius: 10px; background: var(--wa-green-light); }
.whatsapp-fab-preview-label { color: #075e54; font-size: 0.64rem; font-weight: 750; letter-spacing: 0.03em; text-transform: uppercase; }
.whatsapp-fab-preview { margin: 0; white-space: pre-wrap; word-break: break-word; color: #111b21; font-family: inherit; font-size: 0.72rem; line-height: 1.55; max-height: 120px; overflow: auto; }
.whatsapp-fab-error { margin: 0; color: #d32f2f; font-size: 0.72rem; font-weight: 600; }
.whatsapp-fab-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; border: 0; border-radius: 999px;
  background: var(--wa-green); color: #fff; font: inherit; font-size: 0.86rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.whatsapp-fab-submit__icon { display: grid; place-items: center; width: 22px; height: 22px; }
.whatsapp-fab-submit__icon svg { width: 18px; height: 18px; }
.whatsapp-fab-submit:hover { background: #20bd5a; transform: translateY(-1px); }
.whatsapp-fab-submit:focus-visible { outline: 2px solid var(--wa-green-dark); outline-offset: 2px; }
body.whatsapp-fab-modal-open { overflow: hidden; }
@media (min-width: 1600px) {
  .whatsapp-fab-widget { --wa-fab-size: clamp(80px, 5.5vw, 112px); }
  .whatsapp-fab-trigger svg { width: clamp(38px, 2.8vw, 50px); height: clamp(38px, 2.8vw, 50px); }
}
@media (max-width: 780px) {
  .whatsapp-fab-widget {
    --wa-fab-size: 56px;
    --wa-right: 14px;
    --wa-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 480px) {
  .whatsapp-fab-widget { --wa-panel-w: calc(100vw - 20px); --wa-panel-h: min(78dvh, 580px); right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab-panel, .whatsapp-fab-trigger, .whatsapp-fab-panel__inner, .whatsapp-fab-backdrop { transition: none !important; }
  .whatsapp-fab-trigger:hover, .whatsapp-fab-submit:hover { transform: none; }
}

/* Cookie consent (LGPD) — mesma lógica do site legado, visual da landing nova */
.cookie-bar {
  position: fixed; z-index: 120; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.cookie-bar--visible { opacity: 1; transform: none; pointer-events: auto; }
.cookie-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 12px 0;
}
.cookie-bar-text { margin: 0; max-width: 760px; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.45; }
.cookie-bar-text a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-actions { display: flex; align-items: center; flex-shrink: 0; gap: 8px; }
.cookie-bar-link {
  padding: 8px 10px; border: 0; background: transparent; color: var(--muted);
  font: inherit; font-size: 0.74rem; font-weight: 650; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.cookie-bar-link:hover { color: var(--ink); }
.cookie-bar-btn {
  min-height: 36px; padding: 0 16px; border: 1px solid transparent; border-radius: 9px;
  font: inherit; font-size: 0.74rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.cookie-bar-btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.cookie-bar-btn-ghost:hover { background: var(--wash); }
.cookie-bar-btn-primary { border-color: var(--green); background: var(--green); color: #07140e; }
.cookie-bar-btn-primary:hover { background: #2fc66d; border-color: #2fc66d; }
.cookie-modal {
  position: fixed; z-index: 130; inset: 0; display: grid; place-items: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.22s ease;
}
.cookie-modal--visible { opacity: 1; pointer-events: auto; }
.cookie-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(18, 20, 31, 0.45); cursor: pointer; }
.cookie-modal-panel {
  position: relative; z-index: 1; width: min(100%, 440px);
  padding: 22px 22px 20px; border: 1px solid var(--line); border-radius: 16px;
  background: #fff; box-shadow: var(--shadow-lg);
}
.cookie-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.cookie-modal-head h2 { margin: 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.cookie-modal-close {
  width: 32px; height: 32px; padding: 0; border: 0; border-radius: 8px;
  background: var(--wash); color: var(--muted); font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.cookie-modal-lead { margin: 0 0 14px; color: var(--muted); font-size: 0.76rem; line-height: 1.5; }
.cookie-pref-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--wash);
}
.cookie-pref-row + .cookie-pref-row { margin-top: 8px; }
.cookie-pref-row strong { display: block; font-size: 0.78rem; }
.cookie-pref-row small { display: block; margin-top: 2px; color: var(--muted); font-size: 0.66rem; }
.cookie-pref-badge {
  padding: 4px 8px; border-radius: 999px; background: var(--lilac);
  color: var(--purple); font-size: 0.6rem; font-weight: 750; white-space: nowrap;
}
.cookie-toggle {
  position: relative; width: 42px; height: 24px; padding: 0; border: 0; border-radius: 999px;
  background: #d8dbe8; cursor: pointer; transition: background 0.2s;
}
.cookie-toggle span {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; transition: transform 0.2s;
}
.cookie-toggle[aria-checked="true"] { background: var(--purple); }
.cookie-toggle[aria-checked="true"] span { transform: translateX(18px); }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }
body.cookie-bar-open { padding-bottom: 64px; }
body.cookie-modal-open { overflow: hidden; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 12px 0 8px; font-size: 0.88rem; }
.cookie-table th, .cookie-table td {
  text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top;
}
.cookie-table th { background: var(--wash); color: var(--ink); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.cookie-table td { color: var(--ink-soft); }
.legal-content button[data-cookie-settings],
.prose button[data-cookie-settings] { margin-top: 6px; }
@media (max-width: 780px) {
  .cookie-bar { z-index: 70; }
  .cookie-bar-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 0; }
  .cookie-bar-text { font-size: 0.74rem; text-align: center; }
  .cookie-bar-actions { justify-content: center; flex-wrap: wrap; }
  .cookie-bar-btn, .cookie-bar-link { flex: 1 1 auto; }
  .cookie-table { display: block; overflow-x: auto; }
  body.cookie-bar-open .mobile-cta { bottom: calc(92px + env(safe-area-inset-bottom, 0px)); }
  body.cookie-bar-open .whatsapp-fab-widget {
    --wa-bottom: calc(clamp(148px, 22vh, 180px) + env(safe-area-inset-bottom, 0px));
  }
}
