/* Página de vendas do Automatizador IA.
   Fonte do sistema (SF Pro no Apple, Segoe/Roboto nos outros): a CSP do site
   não carrega fontes externas. Um único visual claro, com seções escuras. */

:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --gray: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #2563eb;
  --blue-hover: #1d4fd8;
  --brand-blue: #2f6ff0;
  --brand-cyan: #14b8d4;
  --brand-violet: #6d5bd0;
  --navy: #0b1b33;
  --dark: #000000;
  --dark-2: #111114;
  --dark-3: #1c1c21;
  --dark-ink: #f5f5f7;
  --dark-muted: #a1a1a6;
  --wa-green: #25d366;
  --wa-bubble: #d9fdd3;
  --grad: linear-gradient(90deg, #2f6ff0 0%, #14b8d4 50%, #6d5bd0 100%);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --serif: "New York", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --radius: 28px;
  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(88px, 12vw, 160px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.47 var(--font);
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; text-wrap: balance; }
p { margin: 0; }
:focus-visible { outline: 3px solid rgba(37, 99, 235, .55); outline-offset: 3px; border-radius: 8px; }

.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 999px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding-inline: var(--gutter); }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Tipografia de seção ---------- */
.kicker { font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; letter-spacing: -0.01em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block; margin-bottom: 14px; }
.kicker-dark { background: linear-gradient(90deg, #6ea0ff, #5fe0f0 50%, #a99bff); -webkit-background-clip: text; background-clip: text; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto clamp(48px, 7vw, 80px); }
.section-head h2, .split-copy h2, .faq-intro h2, .final h2 { font-size: clamp(36px, 5.6vw, 64px); line-height: 1.06; letter-spacing: -0.035em; }
.lead { margin-top: 20px; font-size: clamp(18px, 1.9vw, 22px); line-height: 1.42; color: var(--muted); letter-spacing: -0.015em; }
.section-head .lead { max-width: 680px; margin-inline: auto; }

.section { padding-block: var(--section-y); }
.section-gray { background: var(--gray); }
.section-dark { background: var(--dark); color: var(--dark-ink); }
.section-dark .lead { color: var(--dark-muted); }
.fine-print { margin: 40px auto 0; max-width: 720px; text-align: center; font-size: 13px; line-height: 1.5; color: var(--muted); }
.section-dark .fine-print { color: #86868b; }

/* ---------- Botões ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 24px; border-radius: 999px; font-size: 17px; font-weight: 500; text-decoration: none; border: 0; cursor: pointer; transition: background-color .2s, transform .2s var(--ease); }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #e8e8ed; }
.btn-block { width: 100%; }
.btn-large { min-height: 56px; padding: 16px 30px; font-size: 19px; }
.btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.btn-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 17px; font-weight: 400; text-decoration: none; background: none; border: 0; padding: 6px 0; cursor: pointer; }
.btn-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.btn-link span { font-size: 1.15em; line-height: 1; }

/* ---------- Navegação ---------- */
.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(251, 251, 253, .78); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.site-nav.is-scrolled { border-bottom-color: rgba(0, 0, 0, .08); }
.nav-inner { max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); height: 56px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); flex-shrink: 0; }
.brand img { width: 26px; height: 26px; border-radius: 7px; }
.brand-ia { color: var(--brand-blue); }
#navigation { display: flex; align-items: center; gap: 26px; margin-left: auto; }
#navigation a { font-size: 13.5px; color: rgba(29, 29, 31, .82); text-decoration: none; letter-spacing: -0.005em; white-space: nowrap; transition: color .2s; }
#navigation a:hover { color: var(--ink); }
#navigation .nav-app { color: var(--blue); }
.nav-cta { flex-shrink: 0; font-size: 13.5px; font-weight: 500; padding: 7px 15px; border-radius: 999px; background: var(--blue); color: #fff; text-decoration: none; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-hover); }
.menu-toggle { display: none; width: 40px; height: 40px; border: 0; background: none; padding: 0; cursor: pointer; position: relative; margin-right: -8px; }
.menu-toggle span { position: absolute; left: 11px; width: 18px; height: 1.6px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 19.5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 19.5px; transform: rotate(-45deg); }

/* ---------- Abertura ---------- */
.hero { padding-top: clamp(18px, 2.4vw, 28px); padding-bottom: clamp(32px, 4vw, 52px); overflow: hidden; }
.hero-kicker { display: block; text-align: center; margin: 0 auto 6px; }
.hero-copy { text-align: center; max-width: 980px; margin: clamp(10px, 2vw, 22px) auto 0; padding-inline: var(--gutter); }
.hero h1 { font-size: clamp(42px, 6.2vw, 72px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; }
.hero-sub { max-width: 720px; margin: 14px auto 0; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.4; color: var(--muted); letter-spacing: 0; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 10px 24px; flex-wrap: wrap; margin-top: 22px; }
.hero-product { max-width: 1100px; margin: 0 auto; padding-inline: var(--gutter); }
.stage-note { margin-top: 6px; text-align: center; font-size: 12px; color: var(--muted); }

.stage { position: relative; aspect-ratio: 16 / 7.2; }
.stage-glow { position: absolute; inset: 8% 6% 0; background: radial-gradient(60% 55% at 45% 55%, rgba(47, 111, 240, .28), transparent 70%), radial-gradient(40% 45% at 75% 40%, rgba(109, 91, 208, .22), transparent 70%), radial-gradient(35% 40% at 25% 30%, rgba(20, 184, 212, .2), transparent 70%); filter: blur(30px); }

/* notebook */
.laptop { position: absolute; left: 12%; top: 2%; width: 66%; }
.laptop-screen { position: relative; aspect-ratio: 16 / 10; background: #0d0d10; border-radius: 2.2% / 3.4%; padding: 1.6%; box-shadow: 0 0 0 1px rgba(0, 0, 0, .35), 0 40px 80px -30px rgba(11, 27, 51, .45); container-type: inline-size; }
.laptop-base { height: 0; padding-bottom: 2.6%; margin: 0 -7%; background: linear-gradient(#e3e4e8, #b9bbc2); border-radius: 0 0 40% 40% / 0 0 100% 100%; position: relative; }
.laptop-base::before { content: ""; position: absolute; left: 42%; right: 42%; top: 0; height: 40%; background: #a7a9b0; border-radius: 0 0 8px 8px; }

.app { position: absolute; inset: 1.6%; border-radius: 1.2cqw; overflow: hidden; background: #f6f7f9; display: grid; grid-template-columns: 19% 1fr; font-size: 1.35cqw; letter-spacing: -0.01em; color: var(--ink); }
.app-side { background: #fff; border-right: 1px solid #e7e8ec; padding: 2.4cqw 1.6cqw; display: flex; flex-direction: column; gap: .5cqw; }
.app-logo { display: flex; align-items: center; gap: .8cqw; font-weight: 700; font-size: 1.5cqw; margin-bottom: 1.8cqw; }
.app-logo img { width: 2.4cqw; height: 2.4cqw; border-radius: .5cqw; }
.app-nav { padding: .8cqw 1.1cqw; border-radius: .8cqw; color: #55565c; line-height: 1.25; }
.app-nav.is-on { background: #eaf0ff; color: var(--brand-blue); font-weight: 600; }
.app-main { padding: 2cqw 2.2cqw; display: flex; flex-direction: column; gap: 1.4cqw; min-width: 0; min-height: 0; }
.app-top { display: flex; align-items: flex-end; gap: 2.4cqw; }
.app-title small { display: block; font-size: 1.05cqw; color: #7a7b82; font-weight: 500; }
.app-title strong { display: block; font-size: 2.5cqw; letter-spacing: -0.03em; line-height: 1.1; }
.app-month { display: inline-flex; align-items: center; gap: 1cqw; padding: .6cqw 1.3cqw; background: #fff; border: 1px solid #e3e4e8; border-radius: 99px; font-size: 1.15cqw; font-weight: 600; color: #3a3b40; }
.app-month span { color: #9a9ba1; font-weight: 400; }
.app-cal { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); grid-template-rows: auto repeat(2, minmax(0, 1fr)); gap: .7cqw; }
.app-cal .d { font-size: .95cqw; font-weight: 600; color: #8b8c93; letter-spacing: .04em; }
.app-cal .c { min-width: 0; min-height: 0; display: flex; flex-direction: column; gap: .5cqw; background: #fff; border: 1px solid #eceef1; border-radius: .9cqw; padding: .55cqw; overflow: hidden; }
.app-cal .c.passado { background: #fafafb; }
.app-cal .n { align-self: flex-start; min-width: 1.8cqw; padding: .1cqw .45cqw; border-radius: 99px; font-size: 1cqw; font-weight: 600; color: #6b6c72; text-align: center; }
.app-cal .hoje .n { background: var(--brand-blue); color: #fff; }
.cal-card { min-width: 0; display: flex; flex-direction: column; gap: .35cqw; padding: .4cqw; border-radius: .7cqw; background: #fff; border: 1px solid #e6e7eb; box-shadow: 0 .2cqw .6cqw rgba(15, 23, 42, .06); }
.cal-card .ex { aspect-ratio: 4 / 5; border-radius: .5cqw; box-shadow: none; }
.cc-top { display: flex; align-items: center; gap: .35cqw; font-size: .8cqw; font-weight: 600; color: #6b6c72; }
.cc-top img { width: .9cqw; height: .9cqw; opacity: .8; }
.cal-card b { font-size: .85cqw; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cc-foot { display: flex; align-items: center; justify-content: space-between; gap: .3cqw; font-size: .8cqw; color: #6b6c72; font-variant-numeric: tabular-nums; }
.cc-foot em { font-style: normal; font-weight: 600; font-size: .72cqw; padding: .12cqw .45cqw; border-radius: 99px; background: #e8f0ff; color: #1f5fe0; }
.cal-card.pub .cc-foot em { background: #e3f6ea; color: #1a7f45; }

/* posts da Casa Lume nas miniaturas */
.ex-lume-dark { background: linear-gradient(160deg, #3a2a1d, #1f1610); color: #efe2cf; padding: 10%; justify-content: flex-end; gap: 4cqw; }
.ex-lume-dark small { font-size: 6cqw; font-weight: 700; letter-spacing: .24em; opacity: .75; }
.ex-lume-dark strong { font-family: var(--serif); font-weight: 500; font-size: 16cqw; }
.ex-lume-sage { background: linear-gradient(170deg, #dfe5d6, #b8c4a6); color: #2f3a24; padding: 10%; justify-content: space-between; }
.ex-lume-sage small { font-size: 7cqw; font-weight: 600; }
.ex-lume-sage strong { font-size: 19cqw; font-weight: 800; color: #26301c; }
.ex-lume-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.ex-lume-story span { position: relative; margin: auto 8% 10%; align-self: flex-start; padding: 3cqw 6cqw; border-radius: 3cqw; background: #fff; color: #2b2118; font-size: 9cqw; font-weight: 700; line-height: 1.1; }
.ex-lume-reel { background: radial-gradient(90% 70% at 30% 20%, #c9905d, #7a4a26 55%, #3a2212); padding: 10%; justify-content: flex-end; }
.ex-lume-reel strong { font-size: 15cqw; font-weight: 800; }
.ex-lume-reel .reel-play { top: 36%; }

/* celular */
.phone { position: relative; background: #0d0d10; border-radius: 13% / 6.2%; padding: 0; box-shadow: 0 0 0 1px rgba(0, 0, 0, .4), 0 30px 60px -20px rgba(11, 27, 51, .5); container-type: inline-size; }
.phone::before { content: ""; position: absolute; top: 4.2%; left: 50%; width: 30%; height: 3.4%; transform: translateX(-50%); background: #000; border-radius: 99px; z-index: 2; }
.phone-screen { position: relative; margin: 3.6cqw; aspect-ratio: 9 / 19.2; border-radius: 10.5% / 5%; overflow: hidden; background: #efeae2; display: flex; flex-direction: column; }
.wa-head { display: flex; align-items: center; gap: 3cqw; padding: 13cqw 5cqw 4cqw; background: #f6f6f6; border-bottom: 1px solid rgba(0, 0, 0, .06); font-size: 4.6cqw; line-height: 1.2; }
.wa-head b { display: block; font-weight: 600; letter-spacing: -0.02em; }
.wa-head small { display: block; font-size: 3.6cqw; color: #6b6b70; }
.wa-avatar { width: 10cqw; height: 10cqw; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, #e8c9a0, #b88a5a); }
.wa-body { flex: 1; padding: 5cqw 4cqw; display: flex; flex-direction: column; gap: 2.6cqw; font-size: 4.3cqw; line-height: 1.32; overflow: hidden; }
.wa { max-width: 84%; padding: 2.4cqw 3.4cqw; border-radius: 3.6cqw; background: #fff; box-shadow: 0 1px .5px rgba(0, 0, 0, .12); letter-spacing: -0.01em; }
.wa.in { align-self: flex-end; background: var(--wa-bubble); border-bottom-right-radius: 1cqw; }
.wa.out { align-self: flex-start; border-bottom-left-radius: 1cqw; }
.wa small { color: #5b6b5a; font-size: .86em; }
.wa-choices { display: flex; flex-wrap: wrap; gap: 1.8cqw; align-self: flex-start; max-width: 92%; }
.wa-compose { display: flex; align-items: center; gap: 2.4cqw; margin: 0 3cqw 6cqw; padding: 2.6cqw 4cqw; border-radius: 99px; background: #fff; color: #8a8a8f; font-size: 4cqw; }
.wa-compose::after { content: ""; margin-left: auto; width: 7cqw; height: 7cqw; border-radius: 50%; background: #1faa59; }
.wa-choices span { padding: 1.6cqw 3.2cqw; border-radius: 99px; background: #fff; color: #0a7cff; font-size: .92em; box-shadow: 0 1px .5px rgba(0, 0, 0, .1); }

.hero-phone { position: absolute; right: 7%; top: 10%; width: 18%; }
.float-post { position: absolute; left: 1%; bottom: 3%; width: 18%; background: #fff; border-radius: 16px; box-shadow: 0 24px 50px -18px rgba(11, 27, 51, .35), 0 0 0 1px rgba(0, 0, 0, .05); overflow: hidden; container-type: inline-size; }
.fp-head { display: flex; align-items: center; gap: 3cqw; padding: 4cqw 5cqw; font-size: 5.6cqw; }
.fp-avatar { width: 9cqw; height: 9cqw; border-radius: 50%; }
.float-post img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.fp-foot { display: flex; flex-direction: column; gap: 1cqw; padding: 4cqw 5cqw 5cqw; font-size: 5cqw; line-height: 1.3; }
.fp-foot span:first-child { font-weight: 600; }
.float-lead { position: absolute; z-index: 3; top: 7%; right: 0; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 16px; background: rgba(255, 255, 255, .86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 16px 40px -14px rgba(11, 27, 51, .35), 0 0 0 1px rgba(0, 0, 0, .05); font-size: 13px; line-height: 1.25; }
.float-lead b { display: block; font-weight: 600; }
.float-lead small { color: var(--muted); font-size: 12px; }
.person-avatar { display: inline-block; flex: none; aspect-ratio: 1; border-radius: 50%; background-image: url("/assets/marketing/pessoas-ilustrativas.jpg"); background-size: 200% 200%; background-repeat: no-repeat; background-color: #d6d9df; box-shadow: 0 0 0 2px #fff; }
.person-rafael { background-position: left top; }
.person-marina { background-position: right top; }
.person-paula { background-position: left bottom; }
.person-julia { background-position: right bottom; }
.float-lead .person-avatar { width: 34px; height: 34px; }
.float-lead small { display: flex; align-items: center; gap: 4px; }
.float-lead small img { width: 13px; height: 13px; }

/* ---------- Faixa de marcas ---------- */
.marquee { padding: 34px 0 44px; border-block: 1px solid rgba(0, 0, 0, .06); background: var(--surface); overflow: hidden; }
.marquee-title { text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-list { display: flex; gap: clamp(36px, 5vw, 64px); padding: 0 clamp(18px, 2.5vw, 32px); margin: 0; list-style: none; }
.marquee-list li { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: #3a3a3f; white-space: nowrap; }
.marquee-list img { height: 22px; width: auto; opacity: .88; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tile { position: relative; background: var(--surface); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); overflow: hidden; display: flex; flex-direction: column; gap: 24px; min-height: 380px; }
.tile-dark { background: var(--dark-2); color: var(--dark-ink); }
.tile-kicker { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: -0.005em; }
.tile-dark .tile-kicker { color: var(--dark-muted); }
.tile h3 { font-size: clamp(24px, 2.5vw, 32px); line-height: 1.12; letter-spacing: -0.03em; }
.tile-copy p:not(.tile-kicker) { margin-top: 12px; color: var(--muted); font-size: 17px; line-height: 1.45; }
.tile-dark .tile-copy p:not(.tile-kicker) { color: var(--dark-muted); }
.tile-content { grid-column: span 4; grid-row: span 2; min-height: 620px; }
.tile-insta, .tile-whats { grid-column: span 2; }
.tile-crm { grid-column: span 2; }
.tile-ads { grid-column: span 4; flex-direction: row; align-items: center; }
.tile-ads .tile-copy { flex: 1 1 46%; }
.tile-ai { grid-column: span 6; flex-direction: row; align-items: center; justify-content: space-between; min-height: 0; background: linear-gradient(120deg, #eef3ff, #f3efff 60%, #e9fbfd); }
.tile-ai .tile-copy { max-width: 620px; }

.fan { position: relative; flex: 1; min-height: 300px; margin-top: 4px; }
.fan-card { position: absolute; width: 38%; max-width: 250px; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .06); transition: transform .6s var(--ease); }
.fan-1 { left: 6%; top: 8%; transform: rotate(-9deg); }
.fan-2 { left: 31%; top: 0; z-index: 2; transform: rotate(0deg); }
.fan-3 { left: 56%; top: 8%; transform: rotate(9deg); }
.tile-content:hover .fan-1 { transform: rotate(-12deg) translate(-12px, 4px); }
.tile-content:hover .fan-3 { transform: rotate(12deg) translate(12px, 4px); }
.fan-card .ex { height: 100%; }
.fan .ex-lume-car strong { font-size: 11.5cqw; }
.fan .ex-aurora-type strong { font-size: 14cqw; }
.prompt { align-self: center; display: flex; align-items: center; gap: 10px; max-width: 100%; padding: 13px 20px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); color: #e7e7ea; font-size: 15px; backdrop-filter: blur(10px); }
.prompt-spark { color: #7fd4ff; font-size: 17px; }

.ig-flow { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.ig-comment { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.ig-comment p { background: var(--gray); padding: 10px 14px; border-radius: 16px; }
.ig-comment .person-avatar { width: 34px; height: 34px; }
.ig-dm { align-self: flex-end; max-width: 88%; padding: 12px 16px; border-radius: 20px 20px 6px 20px; background: linear-gradient(135deg, #7b3cf5, #d62976 60%, #fa7e1e); color: #fff; font-size: 15px; line-height: 1.38; }
.ig-dm-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ig-dm-head .person-avatar { width: 25px; height: 25px; }
.ig-dm-head b { display: block; font-size: 12px; }
.ig-dm small { display: block; font-size: 11.5px; opacity: .8; }

.mini-chat { container-type: inline-size; margin-top: auto; display: flex; flex-direction: column; gap: 9px; padding: 18px; border-radius: 22px; background: #efeae2; font-size: 15px; line-height: 1.35; }
.mini-chat-head { display: flex; align-items: center; gap: 9px; padding-bottom: 8px; border-bottom: 1px solid #dedbd5; }
.mini-chat-head .person-avatar { width: 30px; height: 30px; }
.mini-chat-head b, .mini-chat-head small { display: block; }
.mini-chat-head small { color: #777; font-size: 11px; }
.mini-chat .wa { padding: 9px 13px; border-radius: 14px; }
.mini-chat .wa-choices span { padding: 7px 13px; font-size: 14px; }

.lead-stack { margin-top: auto; display: flex; flex-direction: column; }
.lead-card, .pipe-card, .crm-card { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 12px 0; font-size: 15px; }
.lead-card { border-bottom: 1px solid #e5e7eb; }
.lead-card:last-child { border-bottom: 0; }
.lead-card .person-avatar, .pipe-card .person-avatar, .crm-card .person-avatar { width: 38px; height: 38px; }
.lead-person { min-width: 0; line-height: 1.25; }
.lead-person b, .lead-person small { display: block; }
.lead-person b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-person small { color: var(--muted); font-size: 12px; line-height: 1.3; }
.chip { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; padding: 5px 8px; border-radius: 99px; white-space: nowrap; }
.chip img { width: 13px; height: 13px; flex: none; }
.chip-google { background: #e6f0ff; color: #1a56db; }
.chip-insta { background: #fde8f1; color: #b8216b; }
.chip-meta { background: #ece9ff; color: #5b47c9; }
.chip-site { background: #e2f7fa; color: #0b7c90; }

.serp { flex: 1 1 54%; display: flex; flex-direction: column; gap: 12px; padding: 20px; border-radius: 22px; background: var(--gray); font-size: 14px; min-width: 0; }
.serp-bar { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: #fff; border-radius: 99px; box-shadow: 0 1px 3px rgba(0, 0, 0, .08); color: #333; }
.serp-ad, .serp-org { display: flex; flex-direction: column; gap: 3px; padding: 12px 14px; background: #fff; border-radius: 14px; line-height: 1.35; }
.serp-ad b, .serp-org b { color: #1a0dab; font-weight: 500; font-size: 16px; }
.serp small { color: #4d5156; font-size: 12px; }
.serp-ad span { color: #4d5156; }

.ai-logos { display: flex; align-items: center; gap: 14px; }
.ai-logos span:not(.ai-plus) { width: 72px; height: 72px; display: grid; place-items: center; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px -12px rgba(11, 27, 51, .3); }
.ai-plus { font-size: 26px; color: var(--muted); }

/* ---------- Exemplos (posts desenhados em CSS) ---------- */
.ex { position: relative; overflow: hidden; border-radius: 18px; display: flex; flex-direction: column; container-type: inline-size; color: #fff; }
.ex strong { letter-spacing: -0.03em; line-height: 1.02; }
.ex-feed { aspect-ratio: 4 / 5; }
.ex-story { aspect-ratio: 9 / 16; }
.ex-num { position: absolute; top: 7cqw; right: 7cqw; font-size: 5cqw; font-weight: 600; opacity: .7; }
.ex-tag { font-size: 5cqw; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.ex-arrow { position: absolute; right: 7cqw; bottom: 7cqw; width: 13cqw; height: 13cqw; border-radius: 50%; display: grid; place-items: center; font-size: 7cqw; background: currentColor; }
.ex-dots { position: absolute; left: 50%; bottom: 7cqw; transform: translateX(-50%); display: flex; gap: 1.8cqw; }
.ex-dots i { width: 2.2cqw; height: 2.2cqw; border-radius: 50%; background: currentColor; opacity: .3; }
.ex-dots i.on { opacity: 1; }

.ex-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ex-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .55)); }
.ex-photo strong { position: relative; z-index: 1; margin-top: auto; padding: 8cqw; font-size: 12.5cqw; font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }
.ex-brand { position: relative; z-index: 1; padding: 8cqw 8cqw 0; font-size: 4.2cqw; font-weight: 700; letter-spacing: .28em; }

.ex-lume-car { background: #efe7dc; color: #2b2118; padding: 9%; justify-content: center; gap: 5cqw; }
.ex-lume-car strong { font-family: var(--serif); font-weight: 500; font-size: 13.5cqw; letter-spacing: -0.025em; color: #2b2118; }
.ex-lume-car .ex-arrow { color: #2b2118; }
.ex-lume-car .ex-arrow::before { content: "→"; color: #efe7dc; position: absolute; }
.ex-lume-car .ex-arrow { font-size: 0; }
.ex-lume-car .ex-arrow::before { font-size: 7cqw; }

.ex-aurora-type { background: radial-gradient(120% 90% at 80% 100%, #ffd08a 0%, #ff8a3d 45%, #e2582b 100%); padding: 9%; justify-content: space-between; }
.ex-aurora-type small { font-size: 4.6cqw; font-weight: 600; letter-spacing: .02em; opacity: .9; }
.ex-aurora-type strong { font-size: 17cqw; font-weight: 800; letter-spacing: -0.05em; }
.ex-sun { position: absolute; right: -14cqw; top: -14cqw; width: 56cqw; height: 56cqw; border-radius: 50%; background: radial-gradient(circle, rgba(255, 244, 214, .95), rgba(255, 214, 140, .2) 60%, transparent 70%); }

.ex-coffee img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ex-coffee::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .1) 55%, rgba(40, 18, 6, .8)); }
.ex-coffee > *:not(img) { position: relative; z-index: 1; }
.st-bar { display: flex; gap: 1.5cqw; padding: 5cqw 5cqw 0; }
.st-bar i { flex: 1; height: 1cqw; border-radius: 1cqw; background: rgba(255, 255, 255, .45); }
.st-bar i:first-child { background: #fff; }
.st-sticker { align-self: flex-start; margin: auto 7cqw 4cqw; padding: 2.6cqw 4.6cqw; border-radius: 3cqw; background: #fff; color: #7a3b12; font-size: 5.4cqw; font-weight: 700; transform: rotate(-3deg); }
.ex-coffee strong { padding: 0 7cqw; font-size: 14cqw; font-weight: 800; }
.st-cta { align-self: center; margin: 7cqw 0 9cqw; padding: 3cqw 7cqw; border-radius: 99px; background: rgba(255, 255, 255, .92); color: #3a1c0a; font-size: 5.2cqw; font-weight: 600; }

.ex-reel { background: radial-gradient(90% 60% at 30% 20%, #3fb7a4 0%, #11625f 45%, #062a2c 100%); padding: 9% 8%; justify-content: flex-end; gap: 4cqw; }
.ex-reel small { font-size: 4.4cqw; font-weight: 700; letter-spacing: .24em; opacity: .85; }
.ex-reel strong { font-size: 13.5cqw; font-weight: 800; }
.reel-play { position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%); width: 20cqw; height: 20cqw; border-radius: 50%; display: grid; place-items: center; font-size: 7cqw; background: rgba(255, 255, 255, .18); backdrop-filter: blur(6px); padding-left: 1.4cqw; }
.reel-time { position: absolute; top: 7cqw; right: 7cqw; font-size: 4.4cqw; font-weight: 600; padding: 1.2cqw 3cqw; border-radius: 99px; background: rgba(0, 0, 0, .35); }
.reel-lines { position: absolute; top: 12%; left: -10%; width: 70%; display: flex; flex-direction: column; gap: 5cqw; transform: rotate(-24deg); opacity: .18; }
.reel-lines i { height: 3cqw; border-radius: 3cqw; background: #fff; }

.ex-smile { background: #fff; color: #0b1b33; padding: 9%; justify-content: center; gap: 5cqw; }
.ex-smile::before { content: ""; position: absolute; right: -18cqw; bottom: -18cqw; width: 70cqw; height: 70cqw; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #d8f3f8, #7fd4e6 55%, #14b8d4); opacity: .9; }
.ex-smile > * { position: relative; }
.ex-smile .ex-tag { color: #0b7c90; opacity: 1; }
.ex-smile strong { font-size: 12.5cqw; font-weight: 800; color: #0b1b33; }
.ex-smile .ex-num { color: #0b1b33; }
.ex-smile .ex-dots { color: #0b1b33; position: absolute; }

.ex-bella { background: linear-gradient(160deg, #fde2ec 0%, #f7c6d9 45%, #e79bbd 100%); color: #5a1733; padding: 9%; justify-content: space-between; }
.ex-bella small { font-family: var(--serif); font-size: 6cqw; font-style: italic; }
.ex-bella strong { font-family: var(--serif); font-size: 15cqw; font-weight: 500; color: #4a1029; letter-spacing: -0.035em; }
.bella-cta { align-self: flex-start; padding: 3cqw 5cqw; border-radius: 99px; background: #4a1029; color: #fde2ec; font-size: 5cqw; }

.ex-ad { background: #fff; color: var(--ink); }
.ad-label { padding: 5cqw 6cqw 3cqw; font-size: 4.2cqw; color: #65676b; }
.ex-ad img { width: 100%; flex: 1; min-height: 0; object-fit: cover; }
.ad-foot { display: flex; align-items: center; justify-content: space-between; gap: 3cqw; padding: 5cqw 6cqw; background: #f0f2f5; font-size: 4.6cqw; line-height: 1.25; }
.ad-foot small { display: block; color: #65676b; font-size: 3.8cqw; }
.ad-btn { flex-shrink: 0; padding: 2.4cqw 4cqw; border-radius: 2cqw; background: #e4e6eb; font-weight: 600; font-size: 4cqw; }

.gallery { position: relative; }
.gallery-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2)); padding: 8px max(var(--gutter), calc((100vw - var(--wrap)) / 2)) 28px; scrollbar-width: none; overscroll-behavior-x: contain; }
.gallery-track::-webkit-scrollbar { display: none; }
.example { --gh: clamp(380px, 48vw, 500px); margin: 0; flex: 0 0 auto; scroll-snap-align: start; display: flex; flex-direction: column; gap: 14px; }
.example-feed { width: calc(var(--gh) * .8); }
.example-story { width: calc(var(--gh) * .5625); }
.example .ex { width: 100%; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9); }
.example figcaption { font-size: 15px; color: var(--dark-muted); }
.example figcaption b { color: var(--dark-ink); font-weight: 600; }
.gallery-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 12px auto 0; padding-inline: var(--gutter); }
.gallery-controls > div { display: flex; gap: 12px; }
.gallery-note { font-size: 13px; color: #86868b; }
.round-btn { width: 44px; height: 44px; border-radius: 50%; border: 0; background: #333336; color: #f5f5f7; font-size: 26px; line-height: 1; display: grid; place-items: center; cursor: pointer; padding-bottom: 3px; transition: background-color .2s, opacity .2s; }
.round-btn:hover { background: #48484d; }
.round-btn:disabled { opacity: .35; cursor: default; }

/* ---------- Atendimento ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.split-copy .lead { max-width: 520px; }
.checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.4; }
.checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); }
.checks li::after { content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; }
.try-hint { margin-top: 28px; font-size: 14px; color: var(--muted); }
.split-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.scenario-tabs { width: min(100%, 480px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.scenario-tab { display: flex; align-items: center; gap: 8px; min-width: 0; min-height: 58px; padding: 8px; border: 1px solid #d9dde4; border-radius: 8px; background: #fff; cursor: pointer; text-align: left; font-size: 13px; font-weight: 600; line-height: 1.2; }
.scenario-tab.is-active { border-color: var(--blue); background: #edf3ff; box-shadow: inset 0 0 0 1px var(--blue); }
.scenario-tab .person-avatar { width: 32px; height: 32px; }
.scenario-tab > span:last-child { min-width: 0; }
.scenario-tab small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone-demo { width: min(340px, 84vw); }
.phone-demo .phone-screen { aspect-ratio: 9 / 18.6; }
.phone-demo .wa-body { overflow-y: auto; scrollbar-width: none; }
.phone-demo .wa-body::-webkit-scrollbar { display: none; }
.phone-demo .wa { animation: bubble .35s var(--ease) both; }
.wa-options { display: flex; flex-direction: column; gap: 2.2cqw; padding: 3cqw 4cqw 7cqw; background: #efeae2; }
.wa-options button { border: 0; border-radius: 3.4cqw; padding: 3.2cqw; background: #fff; color: #0a7cff; font-size: 4.3cqw; font-weight: 500; cursor: pointer; box-shadow: 0 1px .5px rgba(0, 0, 0, .12); transition: background-color .2s; }
.wa-options button:hover { background: #f4f8ff; }
@keyframes bubble { from { opacity: 0; transform: translateY(8px) scale(.98); } }

/* ---------- Origem do lead ---------- */
.journey { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: j; }
.journey-step { position: relative; background: var(--surface); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 10px; }
.journey-step h3 { font-size: 21px; letter-spacing: -0.025em; margin-top: 6px; }
.journey-step p { color: var(--muted); font-size: 16px; }
.step-n { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 700; color: #fff; background: var(--grad); }
.journey-card { container-type: inline-size; min-height: 116px; display: flex; align-items: center; justify-content: center; padding: 18px; border-radius: 20px; background: var(--gray); margin-top: 8px; font-size: 15px; }
.journey-card .wa { max-width: 100%; }
.journey-conversation { display: flex; align-items: center; gap: 10px; width: 100%; }
.journey-conversation .person-avatar { width: 36px; height: 36px; }
.mini-ad { width: 100%; display: flex; flex-direction: column; gap: 3px; padding: 12px 14px; border-radius: 14px; background: #fff; line-height: 1.3; }
.ad-source { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 12px; }
.ad-source img { width: 16px; height: 16px; }
.mini-ad b { color: #1a0dab; font-weight: 500; }
.mini-ad small { color: var(--muted); font-size: 12px; }
.crm-card { width: 100%; background: #fff; padding: 10px; border-radius: 8px; }

.pipeline { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pipe-col { background: rgba(255, 255, 255, .6); border: 1px solid rgba(0, 0, 0, .05); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.pipe-col h4 { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pipe-col h4 span { margin-left: auto; font-size: 13px; color: var(--muted); font-weight: 500; }
.pipe-card { background: #fff; padding: 12px 10px; border-radius: 8px; box-shadow: 0 1px 2px rgba(0, 0, 0, .05); }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-blue { background: var(--brand-blue); }
.dot-cyan { background: var(--brand-cyan); }
.dot-violet { background: var(--brand-violet); }

/* ---------- Conexões ---------- */
.hub { position: relative; max-width: 980px; margin: 0 auto; aspect-ratio: 16 / 9; }
.hub::before, .hub::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: 50%; transform: translate(-50%, -50%); border: 1px solid rgba(255, 255, 255, .09); }
.hub::before { width: 46%; aspect-ratio: 1; }
.hub::after { width: 72%; aspect-ratio: 1; border-color: rgba(255, 255, 255, .06); }
.hub-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--dark-ink); }
.hub-core img { width: 96px; height: 96px; border-radius: 26px; box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 0 80px 10px rgba(47, 111, 240, .45); }
.hub-list { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.hub-list li { --a: calc(var(--i) * 45deg - 90deg); position: absolute; left: calc(50% + cos(var(--a)) * 38%); top: calc(50% + sin(var(--a)) * 42%); width: 220px; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 18px; background: var(--dark-3); border: 1px solid rgba(255, 255, 255, .08); transform: translate(-50%, -50%); }
.hub-list img { width: 40px; height: 40px; padding: 8px; border-radius: 12px; background: #fff; flex-shrink: 0; }
.hub-list b { display: block; font-size: 15px; letter-spacing: -0.015em; }
.hub-list small { display: block; font-size: 12.5px; color: var(--dark-muted); line-height: 1.3; }
@supports not (left: calc(cos(0deg) * 1%)) {
  .hub { aspect-ratio: auto; }
  .hub::before, .hub::after { display: none; }
  .hub-core { position: static; transform: none; margin-bottom: 32px; }
  .hub-list { position: static; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
  .hub-list li { position: static; transform: none; width: auto; }
}

/* ---------- Páginas do app ---------- */
.app-links { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; }
.app-link { position: relative; display: flex; flex-direction: column; gap: 8px; min-height: 200px; padding: 28px; border-radius: var(--radius); background: var(--gray); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.app-link:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(11, 27, 51, .35); }
.app-link strong { font-size: 22px; line-height: 1.15; letter-spacing: -0.025em; }
.al-kicker { font-size: 13px; font-weight: 600; color: var(--muted); }
.al-text { color: var(--muted); font-size: 15px; }
.al-go { position: absolute; right: 22px; bottom: 20px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--ink); font-size: 17px; }
.app-link-main { background: var(--navy); color: #fff; }
.app-link-main .al-kicker, .app-link-main .al-text { color: #9fb3d9; }
.app-link-main strong { font-size: 30px; }
.app-link-main .al-go { background: var(--blue); color: #fff; }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.plan { background: var(--surface); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; }
.plan-dark { background: var(--dark-2); color: var(--dark-ink); }
.plan-kicker { font-size: 14px; font-weight: 600; color: var(--muted); }
.plan-dark .plan-kicker { color: #8fb4ff; }
.plan h3 { font-size: clamp(36px, 4vw, 48px); letter-spacing: -0.04em; margin-top: 6px; }
.plan-summary { margin-top: 14px; font-size: 19px; line-height: 1.4; font-weight: 500; letter-spacing: -0.02em; }
.plan-for { margin-top: 8px; font-size: 15px; color: var(--muted); }
.plan-dark .plan-for { color: var(--dark-muted); }
.plan .checks { margin: 28px 0 32px; padding-top: 28px; border-top: 1px solid var(--line); flex: 1; align-content: start; }
.plan-dark .checks { border-top-color: rgba(255, 255, 255, .12); }
.plan-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--muted); }
.plan-dark .plan-note { color: var(--dark-muted); }

/* ---------- Passos ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps li { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.steps h3 { font-size: 21px; letter-spacing: -0.025em; margin-top: 10px; }
.steps p { color: var(--muted); font-size: 16px; }
.steps::before { content: ""; position: absolute; left: 17px; right: 17px; top: 21px; height: 2px; background: linear-gradient(90deg, rgba(47, 111, 240, .35), rgba(109, 91, 208, .35)); z-index: 0; }
.steps .step-n { position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--bg); }

/* ---------- Dúvidas ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-intro { position: sticky; top: 96px; }
.faq-intro .btn-link { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #e8e8ed; font-size: 19px; font-weight: 400; transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 44px 24px 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

/* ---------- Chamada final ---------- */
.final { position: relative; overflow: hidden; background: var(--dark); color: var(--dark-ink); padding-block: clamp(110px, 15vw, 200px); text-align: center; }
.final-glow { position: absolute; left: 50%; bottom: -40%; width: 120%; max-width: 1400px; aspect-ratio: 2 / 1; transform: translateX(-50%); background: radial-gradient(50% 50% at 50% 50%, rgba(47, 111, 240, .55), rgba(109, 91, 208, .25) 45%, transparent 70%); filter: blur(40px); }
.final-inner { position: relative; }
.final h2 { font-size: clamp(38px, 6.4vw, 76px); }
.final .gradient-text { background: linear-gradient(90deg, #6ea0ff, #5fe0f0 50%, #a99bff); -webkit-background-clip: text; background-clip: text; }
.final .lead { color: var(--dark-muted); max-width: 560px; margin-inline: auto; }
.final .btn-large { margin-top: 38px; }
.final-number { margin-top: 18px; font-size: 14px; color: #86868b; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--gray); padding: 56px 0 36px; font-size: 13px; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.footer-brand p { margin-top: 14px; line-height: 1.5; }
.footer-grid h4 { font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.footer-grid nav, .footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { text-decoration: none; color: var(--muted); overflow-wrap: anywhere; }
.footer-grid a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom { display: flex; gap: 12px 40px; padding-top: 22px; align-items: baseline; }
.footer-bottom span { white-space: nowrap; }
.footer-bottom p { font-size: 12px; line-height: 1.5; color: #86868b; }

/* ---------- Contato flutuante ---------- */
.floating-contact { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 40; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .45); transition: opacity .3s, transform .3s var(--ease); }
.floating-contact img { filter: brightness(0) invert(1); }
.floating-contact[hidden] { display: inline-flex !important; opacity: 0; transform: translateY(20px); pointer-events: none; }

/* ---------- Revelar ao rolar (só com JS e sem pedido de menos movimento) ---------- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-reveal [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1100px) {
  #navigation { gap: 20px; }
  .hub-list li { width: 196px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; order: 3; }
  .nav-inner { gap: 12px; }
  .nav-cta { margin-left: auto; }
  #navigation { position: fixed; left: 0; right: 0; top: 56px; height: calc(100dvh - 56px); margin: 0; padding: 18px var(--gutter) 40px; flex-direction: column; align-items: stretch; gap: 0; background: rgba(251, 251, 253, .97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s; }
  #navigation.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .25s var(--ease); }
  #navigation a { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; padding: 12px 0; color: var(--ink); border-bottom: 1px solid rgba(0, 0, 0, .06); }
  #navigation .nav-app { color: var(--blue); border-bottom: 0; margin-top: 8px; }
  body.menu-open { overflow: hidden; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-content { grid-column: span 2; grid-row: auto; min-height: 560px; }
  .tile-insta, .tile-whats, .tile-crm { grid-column: span 1; }
  .tile-crm { grid-column: span 2; }
  .tile-ads { grid-column: span 2; }
  .tile-ai { grid-column: span 2; }
  .split { grid-template-columns: 1fr; }
  .split-copy { text-align: center; }
  .split-copy .lead { margin-inline: auto; }
  .split-copy .checks { max-width: 380px; margin-inline: auto; text-align: left; }
  .app-links { grid-template-columns: repeat(2, 1fr); }
  .app-link-main { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .faq { grid-template-columns: 1fr; }
  .faq-intro { position: static; text-align: center; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }

  .hub { aspect-ratio: auto; }
  .hub::before, .hub::after { display: none; }
  .hub-core { position: static; transform: none; margin: 0 auto 36px; }
  .hub-list { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hub-list li { position: static; transform: none; width: auto; }
}

@media (min-width: 761px) {
  .hero-product { max-width: min(1100px, 100vh); }
}

@media (max-width: 760px) {
  .stage { aspect-ratio: 4 / 3.2; }
  .laptop { left: -4%; top: 3%; width: 90%; }
  .hero-phone { right: 1%; top: 8%; width: 33%; }
  .float-post { display: none; }
  .float-lead { top: 1%; bottom: auto; left: 0; right: auto; padding: 7px 10px; font-size: 11px; }
  .float-lead small { font-size: 11px; }
  .float-lead .person-avatar { width: 27px; height: 27px; }
  .journey, .pipeline { grid-template-columns: 1fr; }
  .tile-ads { flex-direction: column; align-items: stretch; }
  .tile-ai { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-cta { padding: 6px 12px; font-size: 13px; }
  .brand { font-size: 16px; }
  .hero-kicker { font-size: 14px; }
  .hero h1 { font-size: clamp(36px, 9.8vw, 48px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { gap: 6px 18px; }
  .hero-actions .btn { min-height: 44px; padding: 10px 18px; font-size: 15px; }
  .hero-actions .btn-link { font-size: 15px; }
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .tile-content, .tile-insta, .tile-whats, .tile-crm, .tile-ads, .tile-ai { grid-column: span 1; }
  .tile { min-height: 0; }
  .tile-content { min-height: 520px; }
  .fan { min-height: 250px; }
  .fan-card { width: 44%; }
  .fan-1 { left: 2%; }
  .fan-2 { left: 28%; }
  .fan-3 { left: 54%; }
  .prompt { font-size: 13.5px; border-radius: 18px; }
  .example { --gh: 400px; }
  .app-links { grid-template-columns: 1fr; }
  .app-link-main { grid-column: auto; }
  .app-link { min-height: 150px; }
  .plans { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hub-list { gap: 10px; }
  .hub-list li { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
  .hub-list img { width: 36px; height: 36px; padding: 7px; }
  .faq-list summary { font-size: 17px; }
  .faq-list details p { padding-right: 0; font-size: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .floating-contact span { display: none; }
  .floating-contact { padding: 14px; }
  .gallery-controls { flex-direction: column-reverse; align-items: flex-start; }
}

@media (max-width: 380px) {
  .nav-cta { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero h1 { font-size: 31px; line-height: 1.07; }
  .scenario-tab { justify-content: center; padding: 7px 5px; gap: 5px; font-size: 11px; }
  .scenario-tab .person-avatar { width: 25px; height: 25px; }
  .scenario-tab small { display: none; }
  .lead-card, .pipe-card, .crm-card { grid-template-columns: 34px minmax(0, 1fr) auto; gap: 6px; font-size: 13px; }
  .lead-card .person-avatar, .pipe-card .person-avatar, .crm-card .person-avatar { width: 34px; height: 34px; }
  .chip { font-size: 10px; padding: 4px 6px; }
  .chip img { width: 11px; height: 11px; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero { padding-top: 40px; }
  .hero h1 { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-list[aria-hidden="true"] { display: none; }
  .marquee-list { flex-wrap: wrap; justify-content: center; row-gap: 18px; }
}

/* ---------- Aviso de cookies e rodapé ---------- */
.cookie-banner { position: fixed; z-index: 60; left: 50%; bottom: max(16px, env(safe-area-inset-bottom)); transform: translateX(-50%); width: min(720px, calc(100% - 32px)); display: flex; align-items: center; gap: 16px 24px; padding: 16px 18px 16px 22px; border-radius: 22px; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); box-shadow: 0 20px 50px -18px rgba(11, 27, 51, .4), 0 0 0 1px rgba(0, 0, 0, .06); font-size: 14px; line-height: 1.45; color: var(--ink); }
.cookie-banner p { flex: 1; }
.cookie-banner b { margin-right: 6px; }
.cookie-banner a { color: var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button { border: 0; cursor: pointer; border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 500; }
.cookie-no { background: var(--ink); color: #fff; }
.cookie-yes { background: var(--blue); color: #fff; }
.cookie-no:hover { background: #3a3a3f; }
.cookie-yes:hover { background: var(--blue-hover); }
.footer-link { background: none; border: 0; padding: 0; font: inherit; color: var(--muted); text-align: left; cursor: pointer; }
.footer-link:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom { flex-wrap: wrap; }
.footer-id { flex-basis: 100%; order: -1; color: var(--muted); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 16px; bottom: max(12px, env(safe-area-inset-bottom)); }
  .cookie-actions button { flex: 1; }
}

/* ---------- Página de privacidade ---------- */
.legal { padding-block: clamp(40px, 7vw, 80px) clamp(72px, 10vw, 120px); }
.legal-wrap { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }
.legal h1 { font-size: clamp(36px, 5.4vw, 56px); line-height: 1.06; letter-spacing: -0.035em; }
.legal-lead { margin-top: 18px; font-size: clamp(18px, 1.8vw, 21px); line-height: 1.45; color: var(--muted); }
.legal-date { margin-top: 12px; font-size: 14px; color: var(--muted); }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 8px; }
.legal-toc a { padding: 7px 13px; border-radius: 999px; background: var(--gray); color: var(--ink); text-decoration: none; font-size: 14px; }
.legal-toc a:hover { background: #e8e8ed; }
.legal section { margin-top: 44px; scroll-margin-top: 80px; }
.legal h2 { font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.025em; margin-bottom: 12px; }
.legal h3 { font-size: 19px; letter-spacing: -0.02em; margin: 22px 0 8px; }
.legal p, .legal li { font-size: 17px; line-height: 1.6; }
.legal p + p { margin-top: 12px; }
.legal ul { margin: 12px 0 0; padding-left: 22px; display: grid; gap: 8px; }
.legal a { color: var(--blue); }
.legal .btn { margin-top: 6px; }
.legal-table { margin-top: 18px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.legal-table table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15px; }
.legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { font-size: 13px; color: var(--muted); font-weight: 600; background: var(--gray); }
.legal-back { margin-left: auto; font-size: 14px; color: var(--blue); text-decoration: none; }
.legal-back:hover { text-decoration: underline; }
.legal ~ .site-footer .footer-bottom p a { color: var(--muted); }
@media (max-width: 600px) { .legal-back { display: none; } .nav-cta { margin-left: auto; } }
