/* ============================================================================
   Funnel Labs Groups — Sales Page
   Constelação de grupos · radar de campanha · operação de lançamento
   Visual DISTINCT: não é inbox CRM nem e-mail newsletter
   ============================================================================ */

:root {
  --void: #030406;
  --void-2: #07090c;
  --panel: #0c1016;
  --panel-2: #121820;
  --wa: #25d366;
  --wa-dim: rgba(37, 211, 102, 0.14);
  --accent: #ff5a00;
  --accent-2: #ff8c40;
  --ice: #e8f0ff;
  --paper: #eef2f7;
  --paper-2: #e2e8f0;
  --white: #f7fafc;
  --line: rgba(232, 240, 255, 0.08);
  --line-light: rgba(8, 12, 20, 0.1);

  /* Mesmo stack das LPs CRM e Newsletter */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif: "Playfair Display", Georgia, serif;
  --body: "Space Grotesk", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1200px;
  --hdr: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--void);
  color: rgba(247, 250, 252, 0.82);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  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(37, 211, 102, 0.35); color: #fff; }

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.85' 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: soft-light;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Header glass */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--hdr);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.hdr.is-on {
  background: rgba(3, 4, 6, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.2);
}
.hdr__in {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(37,211,102,0.25), transparent 60%), #0e141c;
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 0 24px -6px rgba(37, 211, 102, 0.55);
}
.brand__mark svg { display: block; }
.brand__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}
.brand__name em {
  font-style: normal;
  color: var(--wa);
}
.brand__sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 240, 255, 0.38);
  margin-top: 3px;
}
.nav {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: rgba(232, 240, 255, 0.5);
}
.nav a:hover { color: var(--white); }
.hdr__act { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  width: 16px;
  height: 1.5px;
  background: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn--sm { height: 38px; padding: 0 14px; font-size: 13px; }
.btn--lg { height: 52px; padding: 0 24px; font-size: 15px; }
.btn--primary {
  color: #03140a;
  background: linear-gradient(180deg, #4dff95 0%, #25d366 45%, #16a34a 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 12px 32px -10px rgba(37, 211, 102, 0.55);
  border: 0;
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.32) inset, 0 16px 36px -10px rgba(37, 211, 102, 0.7);
}
.btn--ghost {
  background: rgba(232, 240, 255, 0.04);
  border: 1px solid var(--line);
  color: rgba(247, 250, 252, 0.85);
}
.btn--ghost:hover {
  background: rgba(232, 240, 255, 0.08);
  border-color: rgba(232, 240, 255, 0.16);
}
.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: rgba(232, 240, 255, 0.38);
}

/* ========== HERO: CONSTELAÇÃO (única entre as 3 LPs) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--hdr) + 28px) 0 48px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 45%, rgba(37, 211, 102, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(255, 90, 0, 0.08), transparent 50%),
    radial-gradient(circle at 50% 50%, #0a0f16 0%, var(--void) 70%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(232, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 65% 50%, #000 20%, transparent 75%);
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.32);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6dffad;
  margin-bottom: 22px;
}
.hero__badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: pulse-wa 1.8s ease-out infinite;
}
.hero__h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
}
.hero__h1 .serif {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  color: #9ef0c0;
  letter-spacing: -0.02em;
}
.hero__h1 .grad {
  background: linear-gradient(120deg, #6dffad, #25d366 40%, #ff8c40 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 20px 0 0;
  max-width: 40ch;
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(232, 240, 255, 0.58);
  line-height: 1.65;
}
.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: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__stats strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero__stats span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(232, 240, 255, 0.42);
  line-height: 1.35;
}

/* Orbit constellation — sempre visível (sem data-reveal / opacity 0) */
.hero__visual {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 70% at 50% 45%, rgba(37, 211, 102, 0.14), transparent 62%),
    linear-gradient(165deg, rgba(18, 28, 24, 0.9), rgba(6, 10, 14, 0.95));
  border: 1px solid rgba(37, 211, 102, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -36px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 90, 0, 0.06);
  overflow: hidden;
  opacity: 1;
  transform: none;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.45), rgba(255, 90, 0, 0.15) 45%, transparent 70%);
  -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;
  z-index: 2;
}
.orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  margin: 24px auto 40px;
  z-index: 1;
  opacity: 1;
}
.orbit__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.28), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(37, 211, 102, 0.38);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.orbit__ring--1 {
  width: 42%;
  height: 42%;
  animation: spin 40s linear infinite;
}
.orbit__ring--2 {
  width: 68%;
  height: 68%;
  border-color: rgba(255, 90, 0, 0.28);
  animation: spin 60s linear infinite reverse;
}
.orbit__ring--3 {
  width: 92%;
  height: 92%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(232, 240, 255, 0.14);
}
.orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(42%, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(37, 211, 102, 0.45), transparent 55%),
    linear-gradient(160deg, #1a2e22, #0c1610);
  border: 1.5px solid rgba(37, 211, 102, 0.65);
  box-shadow:
    0 0 0 10px rgba(37, 211, 102, 0.08),
    0 0 70px -8px rgba(37, 211, 102, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 5;
}
.orbit__core small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6dffad;
}
.orbit__core strong {
  font-family: var(--display);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 6px;
  line-height: 1.15;
}
.orbit__core span {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(232, 240, 255, 0.5);
}
.node {
  position: absolute;
  z-index: 4;
  width: clamp(96px, 20%, 124px);
  padding: 12px 10px;
  border-radius: 16px;
  background: linear-gradient(165deg, #1a2430, #0e141c);
  border: 1px solid rgba(232, 240, 255, 0.18);
  box-shadow:
    0 16px 40px -14px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(37, 211, 102, 0.08);
  text-align: center;
  animation: floaty 5.5s ease-in-out infinite;
}
.node::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.7);
}
.node--hot::before { background: var(--accent); box-shadow: 0 0 12px rgba(255, 90, 0, 0.7); }
.node--full::before { background: #f59e0b; box-shadow: 0 0 12px rgba(245, 158, 11, 0.6); }
.node strong {
  display: block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}
.node em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(232, 240, 255, 0.45);
}
.node--1 { left: 8%; top: 18%; animation-delay: 0s; }
.node--2 { right: 4%; top: 14%; animation-delay: 0.6s; }
.node--3 { left: 0%; bottom: 28%; animation-delay: 1.1s; }
.node--4 { right: 2%; bottom: 22%; animation-delay: 1.7s; }
.node--5 { left: 28%; bottom: 6%; animation-delay: 0.3s; }
.node--6 { right: 26%; top: 4%; animation-delay: 1.3s; }
.orbit__beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 28%;
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.7), transparent);
  opacity: 0.75;
  z-index: 1;
  pointer-events: none;
}
.orbit__beam--1 { transform: translate(-50%, 0) rotate(25deg); }
.orbit__beam--2 { transform: translate(-50%, 0) rotate(145deg); height: 32%; }
.orbit__beam--3 { transform: translate(-50%, 0) rotate(250deg); height: 30%; background: linear-gradient(180deg, rgba(255, 90, 0, 0.4), transparent); }
.orbit__float {
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(12, 16, 22, 0.9);
  border: 1px solid var(--line);
  color: rgba(232, 240, 255, 0.7);
  backdrop-filter: blur(8px);
}
.chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wa);
}
.chip--warn i { background: var(--accent); }

/* Sections */
.sec {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.sec--tight { padding: 72px 0; }
.sec.sec--void {
  background: var(--void);
}
.sec.sec--panel {
  background:
    radial-gradient(600px 360px at 90% 0%, rgba(37, 211, 102, 0.06), transparent 55%),
    var(--void-2);
}
.sec.sec--ice {
  --t1: #0a1220;
  --t2: rgba(10, 18, 32, 0.84);
  --t3: rgba(10, 18, 32, 0.58);
  color: var(--t2);
  background:
    radial-gradient(800px 420px at 10% -10%, rgba(37, 211, 102, 0.1), transparent 50%),
    var(--paper);
  border-bottom-color: var(--line-light);
}
.sec.sec--ice .h2,
.sec.sec--ice .h3,
.sec.sec--ice .card h3,
.sec.sec--ice .faq__q { color: var(--t1); }
.sec.sec--ice .lead,
.sec.sec--ice .card p,
.sec.sec--ice .faq__a { color: var(--t3); }
.sec.sec--ice .eyebrow { color: #0f9f4d; }
.sec.sec--ice .card,
.sec.sec--ice .faq__item {
  background: #fff;
  border-color: var(--line-light);
  box-shadow: 0 18px 40px -28px rgba(10, 18, 32, 0.18);
}
.sec.sec--ice .faq__icon {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  color: #0f9f4d;
}
.sec.sec--ice .faq__item.is-open .faq__icon {
  background: var(--wa);
  border-color: var(--wa);
  color: #03140a;
}
.sec.sec--ice .faq__q:hover { color: #0f9f4d; }
.sec.sec--acid {
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.08), transparent 40%),
    #06140c;
  border-bottom-color: rgba(37, 211, 102, 0.12);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wa);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background:
    radial-gradient(circle, currentColor 35%, transparent 36%);
  opacity: 0.85;
}
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}
.h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 8px;
}
.lead {
  margin: 14px 0 0;
  max-width: 48ch;
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(232, 240, 255, 0.55);
  line-height: 1.65;
}

/* Problem static */
.problem { display: flex; flex-direction: column; gap: 32px; }
.problem__head { max-width: 620px; }
.problem__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  transition: border-color .2s, transform .2s var(--ease);
}
.card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}
.card p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(232, 240, 255, 0.55);
  line-height: 1.55;
}
.card__ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--wa-dim);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: var(--wa);
}

/* Campaign spine — vertical flow unique */
.spine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.spine::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--wa), rgba(255, 90, 0, 0.5), transparent);
  opacity: 0.45;
}
.spine__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  position: relative;
}
.spine__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: #03140a;
  background: linear-gradient(180deg, #4dff95, #25d366);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
  z-index: 1;
}
.spine__body {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
}
.spine__body strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wa);
  margin-bottom: 8px;
}

/* Feature mosaic — irregular */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.mosaic .card--wide {
  grid-column: 1;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(37, 211, 102, 0.18), transparent 50%),
    linear-gradient(165deg, #122018, #0a100e);
  border-color: rgba(37, 211, 102, 0.28);
  padding: 28px;
}
.mosaic .card--wide .h3 { font-size: 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(232, 240, 255, 0.06);
  border: 1px solid var(--line);
  color: rgba(232, 240, 255, 0.5);
}
.sec.sec--ice .tag {
  background: #e8eef5;
  border-color: var(--line-light);
  color: rgba(10, 18, 32, 0.55);
}

/* Capabilities strip */
.caps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.cap {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(37, 211, 102, 0.15);
}
.cap strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cap span {
  font-size: 13px;
  color: rgba(232, 240, 255, 0.5);
  line-height: 1.45;
}

/* Access */
.access {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}
.access__main {
  padding: 32px 28px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(37, 211, 102, 0.18), transparent 50%),
    linear-gradient(160deg, #101820, #0a100e);
  border: 1px solid rgba(37, 211, 102, 0.28);
}
.access__main h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--white);
}
.checks {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(232, 240, 255, 0.82);
}
.checks li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(#03140a, #03140a) 50% 55% / 7px 1.5px no-repeat,
    linear-gradient(#03140a, #03140a) 42% 45% / 1.5px 5px no-repeat,
    var(--wa);
  transform: rotate(40deg);
}
.access__side { display: flex; flex-direction: column; gap: 12px; }
.note {
  flex: 1;
  padding: 20px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.note h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}
.note p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(232, 240, 255, 0.5);
  line-height: 1.55;
}

/* FAQ center */
.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 {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  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;
  letter-spacing: -0.01em;
  color: var(--white);
}
.faq__icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--wa-dim);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  font-weight: 700;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--wa);
  color: #03140a;
}
.faq__a {
  display: none;
  padding: 0 20px 18px;
  color: rgba(232, 240, 255, 0.55);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq__item.is-open .faq__a { display: block; }

/* Final */
.final {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 211, 102, 0.14), transparent 55%),
    var(--void);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.final .h2 { max-width: 14ch; 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: rgba(232, 240, 255, 0.3);
}

/* Footer */
.ftr {
  padding: 36px 0 48px;
  position: relative;
  z-index: 2;
}
.ftr__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ftr__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 240, 255, 0.35);
}
.ftr__links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: rgba(232, 240, 255, 0.4);
}
.ftr__links a:hover { color: var(--wa); }

/* Drawer */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}
.drawer.is-open { display: block; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 320px);
  height: 100%;
  background: #080c12;
  border-left: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 12px;
}
.drawer a {
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 15px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Texto primeiro; radar abaixo — não toma a primeira dobra */
  .hero__visual {
    order: 2;
    min-height: 320px;
    margin-top: 4px;
  }
  .orbit {
    max-width: 340px;
    margin: 16px auto 28px;
  }
  .nav { display: none; }
  .burger { display: inline-flex; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic .card--wide { grid-column: 1 / -1; grid-row: auto; min-height: auto; }
  .caps { grid-template-columns: 1fr 1fr; }
  .access { grid-template-columns: 1fr; }
  .problem__list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--hdr) + 24px);
    padding-bottom: 36px;
  }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__visual {
    min-height: 280px;
    border-radius: 18px;
  }
  .orbit {
    max-width: 300px;
    margin: 12px auto 24px;
    aspect-ratio: 1 / 1;
  }
  .node {
    width: 82px;
    padding: 8px 6px;
  }
  .node strong { font-size: 11px; }
  .orbit__core {
    width: min(44%, 132px);
  }
  .orbit__float {
    max-width: 280px;
    bottom: 0;
  }
  .mosaic, .caps { grid-template-columns: 1fr; }
  .sec { padding: 72px 0; }
  .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; }
}

/* fonts-align-crm-newsletter */

/* hero-visual-always-on */

/* mobile-hero-below */

/* 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;
  }
}
/* mobile-order-final */

@media (max-width: 980px) {
  .hero__grid { display: grid !important; grid-template-columns: 1fr !important; }
  .hero__grid > div:first-of-type { order: 1; }
  .hero__visual { order: 2 !important; }
  .hero__h1 { max-width: 100% !important; }
}

/* mobile-order-final-v2 */
@media (max-width: 980px) {
  .hero__grid { display: grid !important; grid-template-columns: 1fr !important; }
  .hero__grid > div:first-of-type { order: 1 !important; }
  .hero__visual { order: 2 !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;
}

