/* ============================================================================
   Funnel Labs CRM — Página de Vendas SaaS
   Brandbook Mentoria + DESIGN.md do CRM
   Void Black · Laser Orange · Crisp White
   ============================================================================ */

:root {
  --black-950: #020202;
  --black-900: #050505;
  --black-800: #0A0A0A;
  --black-700: #111111;
  --black-600: #1A1A1A;
  --grey-500: #2A2A2A;
  --grey-400: #444444;
  --grey-300: #666666;
  --grey-200: #888888;
  --white-100: #FDFDFD;

  --orange-300: #FFB380;
  --orange-400: #FF8C40;
  --orange-500: #FF5A00;
  --orange-600: #E04F00;
  --orange-700: #CC4800;

  --ok: #22c55e;
  --ok-soft: rgba(34, 197, 94, 0.12);
  --info: #3b82f6;
  --channel-ig: #e1306c;
  --channel-wa: #22c55e;

  --bg: var(--black-900);
  --surface: var(--black-800);
  --card: linear-gradient(180deg, #101010, #0C0C0C);
  --card-solid: #0E0E0E;

  --ink: var(--white-100);
  --ink-2: rgba(253, 253, 253, 0.82);
  --ink-3: rgba(253, 253, 253, 0.55);
  --ink-4: rgba(253, 253, 253, 0.40);
  --ink-5: rgba(253, 253, 253, 0.30);

  --accent: var(--orange-500);
  --accent-hover: var(--orange-400);
  --accent-soft: rgba(255, 90, 0, 0.14);
  --accent-quiet: rgba(255, 90, 0, 0.08);
  --hair: rgba(253, 253, 253, 0.06);
  --hair-2: rgba(253, 253, 253, 0.10);
  --hair-accent: rgba(255, 90, 0, 0.22);

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Space Grotesk", Inter, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.6, 0.05, 0.2, 1);
  --max: 1200px;
  --r: 12px;
  --r-card: 13px;
  --hdr-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(255, 90, 0, 0.35); color: var(--ink); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 560px at 14% -10%, rgba(255, 90, 0, 0.06) 0%, transparent 60%),
    radial-gradient(900px 700px at 92% 110%, rgba(255, 90, 0, 0.035) 0%, transparent 55%);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 40px, 880px); }

/* ---------- Header ---------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
}
.hdr.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  border-bottom-color: var(--hair);
  backdrop-filter: blur(16px) saturate(1.2);
}
.hdr__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hdr__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.hdr__logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 14px rgba(255, 90, 0, 0.45));
}
.hdr__logo svg {
  display: block;
  width: 34px;
  height: 34px;
}
.ftr__logo {
  width: 28px;
  height: 28px;
  display: inline-flex;
  filter: drop-shadow(0 0 10px rgba(255, 90, 0, 0.4));
}
.ftr__logo svg {
  display: block;
  width: 28px;
  height: 28px;
}
.hdr__word {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}
.hdr__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hdr__name span { color: var(--accent); }
.hdr__tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.hdr__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hdr__nav a {
  font-size: 13.5px;
  color: var(--ink-3);
  transition: color 0.2s;
}
.hdr__nav a:hover { color: var(--ink); }
.hdr__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hdr__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--hair-2);
  background: var(--black-600);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hdr__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn--sm { height: 38px; padding: 0 14px; font-size: 13px; }
.btn--lg { height: 50px; padding: 0 22px; font-size: 15px; }
.btn--primary {
  font-family: var(--display);
  font-weight: 600;
  color: #0E0E0E;
  background: linear-gradient(180deg, #FF8C40 0%, #FF5A00 45%, #F04E00 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 24px -8px rgba(255, 90, 0, 0.55);
  border: 0;
  position: relative;
  overflow: hidden;
}
.btn--primary:hover {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 30px -8px rgba(255, 90, 0, 0.7);
  transform: translateY(-1px);
}
.btn--primary:active { transform: scale(0.99); }
.btn--ghost {
  background: #141414;
  border: 1px solid var(--hair-2);
  color: var(--ink-2);
}
.btn--ghost:hover {
  background: #1A1A1A;
  border-color: rgba(253, 253, 253, 0.16);
  color: var(--ink);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Sections ---------- */
.sec {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  border-bottom: 1px solid var(--hair);
  background: transparent;
}
.sec--tight { padding: 72px 0; }
.sec--flush { padding: 0; border-bottom: 0; }

/* Ritmo visual: ink / soft / light
   Specificity .sec.sec--* vence .sec { background: transparent } e cache antigo. */
.sec.sec--ink {
  background-color: #050505;
  background-image: radial-gradient(700px 420px at 85% 0%, rgba(255, 90, 0, 0.05), transparent 55%);
  border-bottom-color: rgba(253, 253, 253, 0.06);
}
.sec.sec--soft {
  background-color: #121212;
  background-image: radial-gradient(600px 380px at 10% 100%, rgba(255, 90, 0, 0.05), transparent 50%);
  border-bottom-color: rgba(253, 253, 253, 0.07);
}
.sec.sec--light {
  --ink: #0A0A0A;
  --ink-2: rgba(10, 10, 10, 0.84);
  --ink-3: rgba(10, 10, 10, 0.58);
  --ink-4: rgba(10, 10, 10, 0.42);
  --ink-5: rgba(10, 10, 10, 0.32);
  --hair: rgba(10, 10, 10, 0.08);
  --hair-2: rgba(10, 10, 10, 0.12);
  --hair-accent: rgba(255, 90, 0, 0.28);
  --card: linear-gradient(180deg, #FFFFFF, #F7F5F2);
  --accent-soft: rgba(255, 90, 0, 0.10);
  --accent-quiet: rgba(255, 90, 0, 0.06);
  color: var(--ink-2);
  background-color: #F4F1EB;
  background-image: radial-gradient(900px 520px at 88% -8%, rgba(255, 90, 0, 0.09), transparent 58%);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.sec.sec--light .h1,
.sec.sec--light .h2,
.sec.sec--light .h3,
.sec.sec--light .mod h3,
.sec.sec--light .benefit h3,
.sec.sec--light .role h3,
.sec.sec--light .step h3,
.sec.sec--light .problem__item h3,
.sec.sec--light .faq__q,
.sec.sec--light .price-note h4,
.sec.sec--light .feature__list li {
  color: var(--ink);
}
.sec.sec--light .lead,
.sec.sec--light .mod p,
.sec.sec--light .benefit p,
.sec.sec--light .role p,
.sec.sec--light .step p,
.sec.sec--light .problem__item p,
.sec.sec--light .feature__copy p,
.sec.sec--light .faq__a,
.sec.sec--light .price-note p {
  color: var(--ink-3);
}
.sec.sec--light .eyebrow { color: var(--accent); }
.sec.sec--light .mod,
.sec.sec--light .benefit,
.sec.sec--light .role,
.sec.sec--light .step,
.sec.sec--light .problem__item,
.sec.sec--light .faq__item,
.sec.sec--light .price-note,
.sec.sec--light .panel,
.sec.sec--light .integ {
  background: var(--card);
  border-color: rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 40px -28px rgba(10, 10, 10, 0.18);
}
.sec.sec--light .mod:hover,
.sec.sec--light .problem__item:hover,
.sec.sec--light .integ:hover {
  border-color: rgba(255, 90, 0, 0.35);
}
.sec.sec--light .tag {
  background: #EFECE7;
  border-color: rgba(10, 10, 10, 0.08);
  color: rgba(10, 10, 10, 0.55);
}
.sec.sec--light .mod__icon,
.sec.sec--light .flow__n,
.sec.sec--light .faq__icon {
  background: rgba(255, 90, 0, 0.08);
  border-color: rgba(255, 90, 0, 0.22);
  color: var(--accent);
}
.sec.sec--light .btn--ghost {
  background: #FFFFFF;
  border-color: rgba(10, 10, 10, 0.12);
  color: rgba(10, 10, 10, 0.78);
}
.sec.sec--light .btn--ghost:hover {
  background: #F0EDE8;
  border-color: rgba(10, 10, 10, 0.18);
  color: #0A0A0A;
}
.sec.sec--light .deal {
  background: linear-gradient(180deg, #FFFFFF, #F4F1EC);
  border-color: rgba(10, 10, 10, 0.08);
}
.sec.sec--light .deal strong { color: #0A0A0A; }
.sec.sec--light .deal span { color: rgba(10, 10, 10, 0.45); }
.sec.sec--light .deal em { color: #0A0A0A; }
.sec.sec--light .kanban__col {
  background: rgba(10, 10, 10, 0.03);
  border-color: rgba(10, 10, 10, 0.08);
}
.sec.sec--light .kanban__h { color: rgba(10, 10, 10, 0.88); }
.sec.sec--light .flow__step {
  background: #FFFFFF;
  border-color: rgba(10, 10, 10, 0.08);
}
.sec.sec--light .flow__step strong { color: #0A0A0A; }
.sec.sec--light .flow__step span { color: rgba(10, 10, 10, 0.45); }
.sec.sec--light .panel__label { color: rgba(10, 10, 10, 0.4); }
.sec.sec--light .integ strong { color: #0A0A0A; }
.sec.sec--light .integ span { color: rgba(10, 10, 10, 0.45); }
.sec.sec--light .integ__icon {
  background: #FFFFFF;
  border-color: rgba(10, 10, 10, 0.1);
  color: rgba(10, 10, 10, 0.75);
}
.sec.sec--light .faq__item.is-open .faq__icon {
  color: var(--accent);
  border-color: rgba(255, 90, 0, 0.35);
  background: rgba(255, 90, 0, 0.08);
}
/* Painéis com fundo dark hardcode dentro de dobra clara */
.sec.sec--light .panel[style] {
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.08), #FFFFFF 55%) !important;
  border-color: rgba(255, 90, 0, 0.22) !important;
  color: #0A0A0A;
}

/* CTA hold (sem destino — checkout depois) */
.cta-hold {
  cursor: default;
}
.cta-hold:hover {
  transform: none;
}
.cta-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
}
.eyebrow__num {
  color: var(--ink-4);
  letter-spacing: 0.12em;
}

.h1, .h2, .h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}
.h1 { font-size: clamp(36px, 5.4vw, 60px); }
.h2 { font-size: clamp(28px, 3.8vw, 42px); }
.h3 { font-size: clamp(18px, 2vw, 22px); }
.lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 54ch;
  margin: 16px 0 0;
}
.lead strong { color: var(--ink-2); font-weight: 500; }
.grad {
  background: linear-gradient(120deg, #FF8C40, #FF5A00 55%, #F04E00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic { font-style: italic; font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--hdr-h) + 56px) 0 72px;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  background: var(--accent-quiet);
  border: 1px solid var(--hair-accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 22px;
}
.hero__badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse-dot 1.8s ease-out infinite;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.hero__stat__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__stat__num span { color: var(--accent); }
.hero__stat__lbl {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.35;
}

/* Product mock */
.mock {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, #0E0E0E, #0A0A0A);
  border: 1px solid var(--hair);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 90, 0, 0.06);
  overflow: hidden;
}
.mock::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.35), rgba(253, 253, 253, 0.08) 40%, transparent 65%, rgba(255, 90, 0, 0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hair);
  background: rgba(11, 11, 11, 0.8);
}
.mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2A2A2A;
}
.mock__dot:nth-child(1) { background: #ef4444; opacity: 0.7; }
.mock__dot:nth-child(2) { background: #f59e0b; opacity: 0.7; }
.mock__dot:nth-child(3) { background: #22c55e; opacity: 0.7; }
.mock__url {
  margin-left: 8px;
  flex: 1;
  height: 26px;
  border-radius: 6px;
  background: #141414;
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.mock__body {
  display: grid;
  grid-template-columns: 72px 1fr 1.15fr;
  min-height: 360px;
}
.mock__side {
  border-right: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(9, 9, 9, 0.97));
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock__side-item {
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-5);
  font-size: 12px;
  border: 1px solid transparent;
}
.mock__side-item.is-on {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(255, 90, 0, 0.14), rgba(255, 90, 0, 0.02) 72%);
  border-color: var(--hair-accent);
  box-shadow: 0 0 22px -12px rgba(255, 90, 0, 0.7);
}
.mock__list {
  border-right: 1px solid var(--hair);
  background: rgba(10, 10, 10, 0.5);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock__list-h {
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 8px 4px;
}
.mock__conv {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid transparent;
}
.mock__conv.is-on {
  background: rgba(255, 90, 0, 0.08);
  border-color: rgba(255, 90, 0, 0.18);
}
.mock__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C40, #CC4800);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  color: #0E0E0E;
  position: relative;
}
.mock__av--b { background: linear-gradient(135deg, #3b82f6, #1e40af); color: #fff; }
.mock__av--c { background: linear-gradient(135deg, #8b5cf6, #5b21b6); color: #fff; }
.mock__chan {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0A0A0A;
  background: var(--channel-wa);
}
.mock__chan--ig { background: var(--channel-ig); }
.mock__name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
}
.mock__preview {
  font-size: 11.5px;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.mock__time {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--ink-5);
}
.mock__badge {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #0E0E0E;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.mock__chat {
  background:
    radial-gradient(circle, rgba(253, 253, 253, 0.025) 1px, transparent 1px) 0 0 / 22px 22px,
    #070707;
  display: flex;
  flex-direction: column;
}
.mock__chat-h {
  height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 11, 11, 0.55);
}
.mock__chat-h strong {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.mock__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ok-soft);
  color: var(--ok);
}
.mock__pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.mock__msgs {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock__bubble {
  max-width: 82%;
  padding: 9px 12px;
  font-size: 12.5px;
  line-height: 1.45;
  border: 1px solid var(--hair);
}
.mock__bubble--in {
  align-self: flex-start;
  background: #161616;
  border-radius: 4px 13px 13px 13px;
  color: var(--ink-2);
}
.mock__bubble--out {
  align-self: flex-end;
  background: rgba(255, 90, 0, 0.16);
  border-color: rgba(255, 90, 0, 0.24);
  border-radius: 13px 4px 13px 13px;
  color: var(--ink);
}
.mock__ai {
  margin: 0 12px 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(255, 90, 0, 0.07);
  border: 1px solid rgba(255, 90, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
}
.mock__ai strong { color: var(--ink); display: block; font-size: 12.5px; }
.mock__ai span { color: var(--ink-4); }
.mock__ai-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 90, 0, 0.14);
  border: 1px solid rgba(255, 90, 0, 0.28);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
  animation: pulse-soft 1.8s ease-in-out infinite;
}
.mock__float {
  position: absolute;
  right: -12px;
  bottom: 28px;
  width: 200px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #131313, #0F0F0F);
  border: 1px solid rgba(255, 90, 0, 0.22);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.9);
  z-index: 2;
}
.mock__float small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.mock__float strong {
  display: block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 20px;
  color: var(--accent-hover);
  letter-spacing: -0.02em;
}
.mock__float p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 90, 0, 0.18);
  border-bottom: 1px solid rgba(255, 90, 0, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.08), transparent 30%, transparent 70%, rgba(255, 90, 0, 0.08)),
    #0A0A0A;
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee__item .acc { color: var(--accent-hover); }
.marquee__item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* ---------- Problem ---------- */
/* Problem — layout estático (sem sticky: evita cards por cima do título) */
.problem {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.problem__head {
  max-width: 640px;
}
.problem__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}
.problem__item {
  padding: 20px 22px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
  transition: border-color 0.2s;
  position: relative;
  z-index: 1;
  min-height: 100%;
}
.problem__item:hover { border-color: rgba(255, 90, 0, 0.22); }
.problem__idx {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.problem__item h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.problem__item p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- Solution strip ---------- */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solution__card {
  padding: 28px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.solution__card--accent {
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.12), rgba(20, 20, 20, 0.4) 55%),
    #0E0E0E;
  border-color: rgba(255, 90, 0, 0.22);
}
.solution__card h3 {
  font-family: var(--display);
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.solution__card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}
.solution__kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.solution__kpi {
  padding: 14px;
  border-radius: 10px;
  background: #121212;
  border: 1px solid var(--hair);
}
.solution__kpi strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--accent-hover);
  letter-spacing: -0.02em;
}
.solution__kpi span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-4);
}

/* ---------- Modules ---------- */
.modules-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mod {
  padding: 22px 20px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
  transition: border-color 0.2s, transform 0.2s var(--ease);
  min-height: 188px;
  display: flex;
  flex-direction: column;
}
.mod:hover {
  border-color: rgba(255, 90, 0, 0.28);
  transform: translateY(-2px);
}
.mod__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mod__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 90, 0, 0.08);
  border: 1px solid rgba(255, 90, 0, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.mod__group {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.mod h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.mod p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  flex: 1;
}
.mod__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  background: #1A1A1A;
  border: 1px solid var(--hair);
  color: var(--ink-4);
}

/* ---------- Feature deep dives ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
}
.feature + .feature {
  border-top: 1px solid var(--hair);
  margin-top: 12px;
  padding-top: 40px;
}
.feature--reverse .feature__copy { order: 2; }
.feature--reverse .feature__visual { order: 1; }
.feature__copy .h3 { margin-bottom: 12px; }
.feature__copy p {
  margin: 0 0 16px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}
.feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.feature__list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 4px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 8px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 1.5px 8px no-repeat,
    rgba(255, 90, 0, 0.14);
  border: 1px solid rgba(255, 90, 0, 0.28);
}
.panel {
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--hair);
  padding: 20px;
  box-shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.8);
}
.panel__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kanban__col {
  background: rgba(255, 255, 255, 0.015);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--hair);
}
.kanban__h {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}
.kanban__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 90, 0, 0.5);
}
.kanban__dot--2 { background: var(--orange-400); }
.kanban__dot--3 { background: var(--ok); box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.deal {
  padding: 11px;
  border-radius: 10px;
  background: linear-gradient(180deg, #131313, #0F0F0F);
  border: 1px solid rgba(253, 253, 253, 0.07);
  margin-bottom: 8px;
}
.deal strong {
  display: block;
  font-size: 12.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.deal span {
  font-size: 11px;
  color: var(--ink-4);
}
.deal em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink);
}
.flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow__step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background: #121212;
  border: 1px solid var(--hair);
}
.flow__n {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-hover);
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.22);
}
.flow__step strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}
.flow__step span {
  font-size: 12px;
  color: var(--ink-4);
}

/* ---------- Roles ---------- */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.role {
  padding: 22px 18px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
}
.role__badge {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid var(--hair-accent);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.role h3 {
  font-family: var(--display);
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}
.role p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ---------- Integrations ---------- */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.integ {
  padding: 18px 16px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.integ:hover { border-color: rgba(255, 90, 0, 0.25); }
.integ__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--hair);
  background: #141414;
  color: var(--ink-2);
}
.integ__icon--wa { color: var(--channel-wa); background: var(--ok-soft); border-color: rgba(34, 197, 94, 0.25); }
.integ__icon--ig { color: var(--channel-ig); background: rgba(225, 48, 108, 0.12); border-color: rgba(225, 48, 108, 0.25); }
.integ__icon--gg { color: #3b82f6; background: rgba(59, 130, 246, 0.12); border-color: rgba(59, 130, 246, 0.25); }
.integ strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.integ span {
  font-size: 12px;
  color: var(--ink-4);
}

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.benefit {
  padding: 26px 22px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
}
.benefit__n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.benefit h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.benefit p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- How ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--display);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ---------- Pricing / Access ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}
.price-card {
  padding: 32px 28px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.10), rgba(20, 20, 20, 0.35) 55%),
    #0E0E0E;
  border: 1px solid rgba(255, 90, 0, 0.24);
  position: relative;
  overflow: hidden;
}
.price-card h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--ink);
}
.price-card .price-lead {
  margin: 0 0 22px;
  color: var(--ink-3);
  font-size: 15px;
}
.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.price-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(#22c55e, #22c55e) 50% 55% / 7px 1.5px no-repeat,
    linear-gradient(#22c55e, #22c55e) 42% 45% / 1.5px 5px no-repeat,
    var(--ok-soft);
  border: 1px solid rgba(34, 197, 94, 0.3);
  transform: rotate(40deg);
}
.price-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-note {
  padding: 20px;
  border-radius: var(--r-card);
  background: var(--card);
  border: 1px solid var(--hair);
  flex: 1;
}
.price-note h4 {
  font-family: var(--display);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}
.price-note p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- FAQ (bloco centralizado na página) ---------- */
.wrap--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-head {
  width: 100%;
  max-width: 820px;
  text-align: center;
  margin-bottom: 28px;
}
.faq-head .eyebrow {
  justify-content: center;
}
.faq-head .h2 {
  text-align: center;
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}
.faq__item {
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--hair);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__q:hover { color: var(--accent-hover); }
.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: #1A1A1A;
  border: 1px solid var(--hair);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.2s, border-color 0.2s;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: rgba(255, 90, 0, 0.3);
}
.faq__a {
  display: none;
  padding: 0 20px 18px;
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq__item.is-open .faq__a { display: block; }

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
  padding: 90px 0 100px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--hair);
  background:
    radial-gradient(700px 420px at 50% 0%, rgba(255, 90, 0, 0.10), transparent 60%),
    #050505;
}
.final .h2 { max-width: 16ch; margin-inline: auto; }
.final .lead { margin-inline: auto; }
.final__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.final__note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-5);
}

/* ---------- Footer ---------- */
.ftr {
  position: relative;
  z-index: 1;
  padding: 36px 0 48px;
}
.ftr__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ftr__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ftr__brand img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 10px rgba(255, 90, 0, 0.4));
}
.ftr__copy {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-5);
}
.ftr__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: var(--ink-4);
}
.ftr__links a:hover { color: var(--accent-hover); }

/* ---------- Mobile nav drawer ---------- */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}
.drawer.is-open { display: block; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: #0A0A0A;
  border-left: 1px solid var(--hair);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--hair);
  background: #141414;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.drawer a {
  padding: 14px 12px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink-2);
  border: 1px solid transparent;
}
.drawer a:hover {
  background: rgba(255, 90, 0, 0.08);
  border-color: rgba(255, 90, 0, 0.18);
  color: var(--ink);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Animations ---------- */
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid,
  .solution,
  .feature,
  .feature--reverse .feature__copy,
  .feature--reverse .feature__visual,
  .pricing {
    grid-template-columns: 1fr;
  }
  .problem__list { grid-template-columns: 1fr; }
  .feature--reverse .feature__copy,
  .feature--reverse .feature__visual { order: initial; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .integ-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mock__float { display: none; }
  .hdr__nav { display: none; }
  .hdr__burger { display: inline-flex; }
  .hdr__actions .btn--ghost { display: none; }
}

@media (max-width: 720px) {
  .sec { padding: 72px 0; }
  .hero { padding-top: calc(var(--hdr-h) + 36px); min-height: auto; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .modules-grid,
  .roles,
  .integ-grid,
  .steps,
  .kanban { grid-template-columns: 1fr; }
  .mock__body { grid-template-columns: 1fr; min-height: auto; }
  .mock__side,
  .mock__list { display: none; }
  .modules-head { flex-direction: column; align-items: flex-start; }
  .wrap { width: min(100% - 28px, var(--max)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ritmo2 cache-bust 20260711 */

/* crm-problem-static-fix */

/* hero headline fluid — 2 linhas, sem encaixotar palavra a palavra */
.hero__h1,
.hero .h1,
.hero h1.h1 {
  max-width: min(100%, 24ch);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
@media (min-width: 981px) {
  .hero__h1,
  .hero .h1,
  .hero h1.h1 {
    max-width: min(100%, 22ch);
    font-size: clamp(2.35rem, 3.6vw, 3.55rem);
  }
}
@media (max-width: 980px) {
  .hero__h1,
  .hero .h1,
  .hero h1.h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7.2vw, 2.65rem);
  }
  /* copy + CTA primeiro; visual/animação embaixo */
  .hero__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .hero__copy,
  .hero__grid > div:first-child:not(.hero__bg) {
    order: 1;
  }
  .hero__grid > .brief,
  .hero__grid > .stage,
  .hero__grid > .mc,
  .hero__grid > .mm,
  .hero__grid > .flow,
  .hero__grid > .orbit,
  .hero__grid > .kpi,
  .hero__grid > .inbox,
  .hero__grid > .hero__visual,
  .hero__grid > .visual,
  .hero__grid > .panel,
  .hero__grid > aside,
  .hero__grid > .mock,
  .hero__grid > [aria-hidden="true"]:not(.hero__bg) {
    order: 2;
  }
}

@media (max-width: 980px) {
  .hero__grid > * { min-width: 0; }
  .hero__copy { order: 1 !important; }
  .hero__grid > *:not(.hero__copy):not(.hero__bg) { order: 2; }
}
/* mobile-order-final */

@media (max-width: 980px) {
  .hero__grid { display: grid !important; grid-template-columns: 1fr !important; gap: 28px; }
  .hero__grid > div:first-child { order: 1; }
  .hero__grid > .mock { order: 2; width: 100%; max-width: 100%; }
  .hero .h1 { max-width: 100% !important; }
}

/* mobile-order-final-v2 */
@media (max-width: 980px) {
  .hero__grid > div:first-child { order: 1 !important; }
  .mock { order: 2 !important; }
  .hero .h1 { max-width: 100% !important; }
}

/* === polish v5: por dentro + para quem === */
.demo-sec { padding: 88px 0; position: relative; }
.demo-sec--ink { background: #070708; }
.demo-sec--soft {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,90,0,.07), transparent 55%),
    #0a0a0c;
}
.demo-head { max-width: 560px; margin-bottom: 32px; }
.demo-panel {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(165deg, #141416 0%, #0c0c0e 100%);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  margin-bottom: 28px;
}
.demo-panel__bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35); font-family: var(--mono), ui-monospace, monospace;
  font-size: 11px; color: rgba(255,255,255,.45);
}
.demo-panel__bar b { color: rgba(255,255,255,.85); font-weight: 600; }
.demo-panel__dots { display: flex; gap: 5px; }
.demo-panel__dots i { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.demo-panel__dots i:nth-child(1){background:#ff5f57}
.demo-panel__dots i:nth-child(2){background:#febc2e}
.demo-panel__dots i:nth-child(3){background:#28c840}
.demo-panel__body {
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 280px;
}
.demo-panel__col {
  padding: 16px; border-right: 1px solid rgba(255,255,255,.06);
}
.demo-panel__col:last-child { border-right: 0; }
.demo-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  font-size: 13px; color: rgba(255,255,255,.75);
  transition: border-color .25s, background .25s, transform .35s cubic-bezier(.16,1,.3,1);
}
.demo-row.is-on {
  border-color: rgba(255,90,0,.4);
  background: rgba(255,90,0,.1);
  transform: translateX(4px);
}
.demo-row strong { display: block; font-size: 13px; color: #fff; font-weight: 600; }
.demo-row small { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.demo-pill {
  font-family: var(--mono), ui-monospace, monospace; font-size: 9px;
  letter-spacing: .08em; text-transform: uppercase; padding: 3px 7px;
  border-radius: 999px; background: rgba(255,90,0,.15); color: #ff8c40; white-space: nowrap;
}
.demo-pill--ok { background: rgba(34,197,94,.15); color: #4ade80; }
.demo-pill--sky { background: rgba(96,165,250,.15); color: #60a5fa; }
.demo-pill--teal { background: rgba(45,212,191,.15); color: #2dd4bf; }
.demo-pill--rose { background: rgba(251,113,133,.15); color: #fb7185; }
.demo-preview {
  padding: 18px; border-radius: 12px; background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08); min-height: 200px;
}
.demo-preview h4 {
  margin: 0 0 8px; font-family: var(--display), Georgia, serif;
  font-size: 1.15rem; color: #fff; letter-spacing: -.02em; line-height: 1.25;
}
.demo-preview p { margin: 0 0 10px; font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.demo-preview ul { margin: 0; padding: 0 0 0 16px; font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; }
.demo-preview .demo-cta {
  display: inline-block; margin-top: 12px; padding: 8px 14px; border-radius: 999px;
  background: linear-gradient(135deg,#ff5a00,#ff7a2e); color: #fff; font-size: 12px; font-weight: 700;
}
.who-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.who-card {
  padding: 22px 18px; border-radius: 16px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08);
}
.who-card h3 {
  margin: 0 0 8px; font-family: var(--display), Georgia, serif;
  font-size: 1.15rem; color: #fff; letter-spacing: -.02em;
}
.who-card p { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.5); }
.sec--paper .who-card {
  background: #fff; border-color: rgba(10,10,10,.09);
}
.sec--paper .who-card h3 { color: #0a0a0a; }
.sec--paper .who-card p { color: rgba(10,10,10,.55); }
.proof-line {
  font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 640px;
}
.sec--paper .proof-line { color: rgba(10,10,10,.58); }
@media (max-width: 900px) {
  .demo-panel__body { grid-template-columns: 1fr; }
  .demo-panel__col { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .who-grid { grid-template-columns: 1fr; }
}

/* interactive demo rows */
.demo-row { cursor: pointer; user-select: none; }
.demo-row:hover { border-color: rgba(255,90,0,.35); background: rgba(255,90,0,.08); }
.demo-row:focus-visible { outline: 2px solid rgba(255,90,0,.5); outline-offset: 2px; }
.demo-hint {
  font-size: 12px; color: rgba(255,255,255,.4); margin: 0 0 12px;
  font-family: var(--mono), ui-monospace, monospace; letter-spacing: .04em;
}

