/* ============================================================
   Franquia NexFarm3D — Design System
   Industrial-tech premium · branco-limpo · números em mono (credibilidade)
   ============================================================ */

:root {
  --brand: #1488e6;
  --brand-deep: #0a64bd;
  --brand-700: #0b73d6;
  --brand-soft: #e9f3fe;
  --brand-tint: #f4f9ff;

  --ink: #0b1322;
  --ink-2: #46506a;
  --ink-3: #79839a;

  --paper: #ffffff;
  --surface: #f4f7fb;
  --surface-2: #eaf0f8;
  --ink-bg: #0b1322;
  --ink-bg-2: #111c30;

  --line: #e5ebf3;
  --line-2: #d6deea;

  --ok: #11a36b;
  --warn: #c98a16;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(13,28,54,.05), 0 2px 8px rgba(13,28,54,.04);
  --shadow-md: 0 6px 18px rgba(13,28,54,.08), 0 2px 6px rgba(13,28,54,.05);
  --shadow-lg: 0 24px 60px rgba(13,28,54,.14), 0 8px 22px rgba(13,28,54,.08);
  --shadow-brand: 0 10px 26px rgba(20,136,230,.34);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--paper);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.qz-lock { overflow: hidden; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.lp-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  border: 1px solid transparent; border-radius: 13px; padding: 13px 20px;
  color: #fff; background: var(--brand); text-decoration: none;
  white-space: normal; text-align: center; line-height: 1.2;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20,136,230,.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); box-shadow: none; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); background: var(--brand-tint); }
.btn-outline { background: #fff; color: var(--brand-deep); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 15px; font-size: 14px; border-radius: 11px; }
.btn-lg { padding: 15px 24px; font-size: 16px; }
.btn-xl { padding: 18px 30px; font-size: 17.5px; border-radius: 15px; }
.btn-block { width: 100%; }

/* ---------- Logo ---------- */
.nexlogo { display: inline-flex; align-items: center; gap: 10px; }
.nexlogo-mark { flex: none; display: block; }
.nexlogo-word { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: var(--ink); }
.nexlogo-3d { color: var(--brand); }
.nexlogo.light .nexlogo-word { color: #fff; }
.nexlogo.light .nexlogo-3d { color: #6cc0ff; }

/* ---------- Header ---------- */
.lp-header {
  position: relative; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.lp-header-in { display: flex; align-items: center; gap: 18px; height: 66px; }
.lp-header-tag { font-size: 13px; color: var(--ink-3); font-weight: 600; flex: 1; }
@media (max-width: 760px) { .lp-header-tag { display: none; } .lp-header-in { justify-content: space-between; } }

/* ---------- Hero ---------- */
.lp-hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 84px) 0 clamp(48px, 8vw, 96px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 82% 0%, rgba(20,136,230,.12), transparent 55%),
    radial-gradient(80% 70% at 0% 0%, rgba(20,136,230,.06), transparent 60%),
    linear-gradient(transparent 0 0);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(80% 70% at 75% 12%, #000, transparent 72%);
  mask-image: radial-gradient(80% 70% at 75% 12%, #000, transparent 72%);
  opacity: .55;
}
.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero-copy { max-width: 560px; min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .02em;
  color: var(--brand-deep); background: var(--brand-soft); border: 1px solid #d4e8fb;
  padding: 7px 13px; border-radius: 100px; text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(20,136,230,.18); }
.hero-title { font-size: clamp(33px, 5vw, 56px); font-weight: 800; margin: 20px 0 0; }
.hero-sub { font-size: clamp(16px, 1.6vw, 18.5px); margin-top: 18px; color: var(--ink-2); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 13px; box-shadow: var(--shadow-sm);
}
.pill svg { color: var(--brand); }

/* ---------- Hero visual (impressora cut-out, imersivo) ---------- */
.hero-visual { position: relative; min-width: 0; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.hero-glow { position: absolute; z-index: 0; width: 80%; height: 80%; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(20,136,230,.40), rgba(20,136,230,.12) 46%, transparent 72%); }
.hero-printer { position: relative; z-index: 2; max-width: 84%; max-height: 470px; width: auto; height: auto; filter: drop-shadow(0 34px 54px rgba(11,19,34,.30)); }
.hv-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #36e08e; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hv-chip { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-lg); padding: 12px 14px; }
.hv-chip--rev { right: -16px; top: 26px; display: grid; gap: 1px; }
.hv-chip-l { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.hv-chip-v { font-family: var(--font-mono); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -.03em; }
.hv-chip-trend { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--ok); }
.hv-chip--days { left: -18px; bottom: 26px; text-align: center; }
.hv-chip--days .hv-chip-v { color: var(--brand-deep); }
.hv-chip--days .hv-chip-l { display: block; }
.float-a { animation: floaty 5s ease-in-out infinite; }
.float-b { animation: floaty 6s ease-in-out infinite .6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 900px) {
  .hero-in { grid-template-columns: minmax(0,1fr); }
  .hero-copy { max-width: 640px; }
  .hero-visual { min-height: 340px; }
  .hero-printer { max-height: 330px; }
  .hv-chip--rev { right: 8px; top: 10px; }
  .hv-chip--days { left: 8px; bottom: 10px; }
}
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hv-chip { padding: 9px 11px; }
  .hv-chip-v { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { .float-a, .float-b { animation: none; } }

/* ---------- BLOCÃO AZUL (bloco arredondado imersivo no branco) ---------- */
.lp-blockwrap { padding: clamp(20px, 4vw, 40px) 0; }
.lp-blockwrap--pad { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 96px); }
.blue-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: clamp(20px, 3vw, 34px);
  box-shadow: 0 30px 70px rgba(20,136,230,.30), inset 0 1px 0 rgba(255,255,255,.18);
}
.bb-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(90% 100% at 50% 0, #000, transparent 78%);
  mask-image: radial-gradient(90% 100% at 50% 0, #000, transparent 78%);
}
.blue-block::after {
  content: ''; position: absolute; right: -8%; top: -40%; width: 46%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 62%); pointer-events: none;
}

/* Métricas dentro do blocão */
.metrics-block { padding: clamp(28px, 3.6vw, 46px) clamp(20px, 3vw, 40px); }
.metrics-row { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.metric { text-align: center; position: relative; }
.metric + .metric::before { content: ''; position: absolute; left: -8px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.22); }
.metric-v { display: block; font-family: var(--font-mono); font-weight: 700; font-size: clamp(21px, 2.8vw, 31px); color: #fff; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.metric-l { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 600; }
@media (max-width: 680px) { .metrics-row { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 22px 12px; } .metric:nth-child(odd)::before { display: none; } }

/* Hero — anéis pulsando atrás da impressora */
.hero-rings { position: absolute; z-index: 1; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 78%; height: 78%; }
.hero-rings i { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1px solid rgba(20,136,230,.28); animation: ringpulse 3.4s ease-out infinite; }
.hero-rings i:nth-child(2) { animation-delay: 1.1s; }
.hero-rings i:nth-child(3) { animation-delay: 2.2s; }
@keyframes ringpulse { 0% { transform: scale(.5); opacity: .7; } 100% { transform: scale(1.15); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-rings { display: none; } }

/* ---------- Sections ---------- */
.lp-section { padding: clamp(56px, 8vw, 104px) 0; }
.lp-section--surface { background: var(--surface); }
.lp-section--ink { background: var(--ink-bg); background-image: radial-gradient(90% 80% at 80% 0%, rgba(20,136,230,.18), transparent 55%); }
.section-head { max-width: 660px; margin: 0 auto clamp(34px, 4vw, 54px); text-align: center; }
.section-eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-eyebrow.light { color: #6cc0ff; }
.section-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; }
.lp-section--ink .section-title { color: #fff; }
.section-sub { margin-top: 14px; font-size: 17px; color: var(--ink-2); }
.lp-section--ink .section-sub { color: #aeb9cd; }

/* ---------- Mercado em números (tiles) ---------- */
.market-tiles { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.mtile { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 22px; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mtile::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--brand), var(--brand-deep)); }
.mtile:hover { transform: translateY(-4px); border-color: #cfe6fb; box-shadow: var(--shadow-md); }
.mtile-v { display: block; font-family: var(--font-mono); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); color: var(--brand-deep); letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.mtile-l { display: block; margin-top: 10px; font-size: 13.5px; color: var(--ink-2); font-weight: 600; line-height: 1.4; }
.market-foot { max-width: 760px; margin: 28px auto 0; text-align: center; font-size: 15.5px; color: var(--ink-2); font-weight: 600; }
@media (max-width: 820px) { .market-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .market-tiles { grid-template-columns: 1fr; } }

/* ---------- Software (Farm Manager) ---------- */
.software-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(0,.9fr); gap: clamp(24px,3.5vw,48px); align-items: center; }
.software-side { display: grid; gap: 14px; min-width: 0; }
.sfeat { display: flex; gap: 13px; align-items: flex-start; }
.sfeat-ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-deep); display: inline-flex; align-items: center; justify-content: center; }
.sfeat-t { font-size: 16.5px; font-weight: 700; }
.sfeat-d { margin-top: 3px; font-size: 14px; color: var(--ink-2); }
.software-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
@media (max-width: 880px) { .software-grid { grid-template-columns: minmax(0,1fr); } .software-thumbs { grid-template-columns: 1fr; } }

/* ---------- Browser frame (mostra software real com cara de produto) ---------- */
.brframe { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.brframe-bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: #f7fafd; border-bottom: 1px solid var(--line); }
.brframe-dots { display: inline-flex; gap: 6px; flex: none; }
.brframe-dots i { width: 10px; height: 10px; border-radius: 50%; background: #d6deea; }
.brframe-dots i:nth-child(1) { background: #ff5f57; } .brframe-dots i:nth-child(2) { background: #febc2e; } .brframe-dots i:nth-child(3) { background: #28c840; }
.brframe-url { flex: 1; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); font-weight: 500; background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 4px 10px; max-width: 280px; }
.brframe-url svg { color: var(--ok); }
.brframe-tag { flex: none; display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--brand-deep); background: var(--brand-soft); padding: 3px 9px; border-radius: 100px; }
.brframe-img { width: 100%; height: auto; display: block; border: none; box-shadow: none; }

/* ---------- Banda imersiva (bloco arredondado com foto) ---------- */
.lp-band { position: relative; overflow: hidden; border-radius: clamp(20px, 3vw, 34px); padding: clamp(48px,7vw,92px) clamp(26px,4vw,64px); box-shadow: var(--shadow-lg); isolation: isolate; }
.lp-band-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.lp-band-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8,16,30,.92) 0%, rgba(8,16,30,.66) 48%, rgba(10,100,189,.46) 100%); }
.lp-band .bb-grid { z-index: -1; mask-image: none; -webkit-mask-image: none; opacity: .5; }
.lp-band-in { position: relative; max-width: 600px; }
.band-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #bfe0ff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.lp-band-in h2 { color: #fff; font-size: clamp(26px,3.6vw,40px); font-weight: 800; }
.lp-band-in p { color: rgba(255,255,255,.9); font-size: 17px; margin: 14px 0 26px; }

/* ---------- Problema → Solução ---------- */
.ps-grid { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 18px; align-items: stretch; }
.ps-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.ps-problem { background: #fbfcfe; }
.ps-solution { border-color: #cfe6fb; box-shadow: 0 10px 30px rgba(20,136,230,.1); }
.ps-kicker { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.ps-kicker.accent { color: var(--brand); }
.ps-card h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; }
.ps-card p { margin-top: 12px; color: var(--ink-2); }
.ps-arrow { display: flex; align-items: center; justify-content: center; color: var(--brand); }
@media (max-width: 820px) { .ps-grid { grid-template-columns: 1fr; } .ps-arrow { transform: rotate(90deg); padding: 4px 0; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-n { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: #fff; background: var(--brand); width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; box-shadow: var(--shadow-brand); }
.step-t { font-size: 18px; font-weight: 700; margin-top: 16px; }
.step-d { margin-top: 7px; font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Gifts ---------- */
.gifts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.gift { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
.gift:hover { transform: translateY(-3px); border-color: #cfe6fb; }
.gift-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-deep); display: inline-flex; align-items: center; justify-content: center; }
.gift-t { font-size: 16px; font-weight: 700; }
.gift-d { margin-top: 4px; font-size: 14px; color: var(--ink-2); }
@media (max-width: 820px) { .gifts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gifts { grid-template-columns: 1fr; } }

/* ---------- Showcase (image slots) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.showcase-img { border-radius: var(--r-lg); }
.figure-img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.figure-ph {
  position: relative; overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--brand-deep); background: linear-gradient(135deg, #f0f6fe, #e7f0fb);
  border: 1px dashed #bcd6f2; border-radius: var(--r-lg);
}
.figure-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(20,136,230,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(20,136,230,.1) 1px, transparent 1px); background-size: 26px 26px; opacity: .6; }
.figure-label { position: relative; font-size: 13px; font-weight: 600; color: var(--brand-deep); max-width: 70%; text-align: center; }
@media (max-width: 620px) { .showcase { grid-template-columns: 1fr; } }

/* ---------- Plans (4 modelos) ---------- */
.plans { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured { border-color: var(--brand); box-shadow: 0 18px 44px rgba(20,136,230,.18); }
.plan-flag { position: absolute; top: -12px; left: 22px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); padding: 5px 12px; border-radius: 100px; box-shadow: var(--shadow-brand); }
.plan-name { font-size: 21px; font-weight: 800; }
.plan-tag { margin-top: 6px; font-size: 13.5px; color: var(--ink-2); min-height: 56px; line-height: 1.4; }
.plan-rows { margin: 18px 0; display: grid; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-row { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.plan-row svg { color: var(--brand); flex: none; }
.plan-invest-l { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.plan-invest { font-family: var(--font-mono); font-weight: 700; font-size: 22px; color: var(--brand-deep); margin: 2px 0 18px; letter-spacing: -.02em; }
.plan .btn { margin-top: auto; }
.plans-disc { margin-top: 24px; text-align: center; font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr 1fr; max-width: 620px; margin: 0 auto; } .plan-tag { min-height: 0; } }
@media (max-width: 520px) { .plans { grid-template-columns: 1fr; max-width: 420px; } .plan-flag { left: 22px; } }

/* ---------- For whom ---------- */
.forwhom-wrap { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(24px,4vw,52px); align-items: center; }
.forwhom-img { border-radius: var(--r-lg); aspect-ratio: 4 / 3.7; box-shadow: var(--shadow-md); }
.section-head--left { text-align: left; margin: 0 0 22px; max-width: none; }
@media (max-width: 860px) { .forwhom-wrap { grid-template-columns: minmax(0,1fr); } .forwhom-img { aspect-ratio: 16/10; order: -1; } }
.forwhom { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.fw { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.fw-ic { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; }
.fw-t { font-size: 18px; font-weight: 700; margin-top: 16px; }
.fw-d { margin-top: 7px; font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 680px) { .forwhom { grid-template-columns: 1fr; } }

/* ---------- Diffs (ink section) ---------- */
.diffs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.diff { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 24px; backdrop-filter: blur(2px); }
.diff-ic { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(20,136,230,.18); color: #6cc0ff; }
.diff-t { color: #fff; font-size: 17px; font-weight: 700; margin-top: 15px; }
.diff-d { margin-top: 7px; font-size: 14px; color: #9fabc2; }
@media (max-width: 820px) { .diffs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .diffs { grid-template-columns: 1fr; } }

/* ---------- CTA final (blocão azul) ---------- */
.cta-block { padding: clamp(46px, 6vw, 80px) clamp(24px,4vw,56px); text-align: center; }
.cta-final-in { position: relative; max-width: 720px; margin: 0 auto; }
.cta-block h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; }
.cta-block p { color: rgba(255,255,255,.92); margin: 16px 0 28px; font-size: 17px; }
.cta-white { background: #fff; color: var(--brand-deep); border: none; box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.cta-white:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.cta-final-note { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,.88); font-weight: 600; }

/* ---------- Footer ---------- */
.lp-footer { background: var(--ink-bg); color: #9fabc2; padding: 56px 0 40px; }
.lp-footer-in { display: grid; gap: 24px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand { display: grid; gap: 12px; max-width: 420px; align-content: start; }
.footer-brand p { font-size: 14px; color: #9fabc2; }
.footer-links { display: grid; gap: 11px; align-content: start; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #cdd6e6; text-decoration: none; transition: color .15s; }
.footer-links a svg { color: #6cc0ff; }
.footer-links a:hover { color: #fff; }
.footer-disc { font-size: 12px; color: #6c778f; border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-top: 1px solid var(--line); display: none; }
@media (max-width: 720px) { .mobile-cta { display: block; } body { padding-bottom: 78px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .ptile-bar span, .hv-live-dot { animation: none; } }

/* ============================================================
   QUIZ MODAL
   ============================================================ */
.qz-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(8,16,30,.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 20px; animation: qzfade .25s ease; }
@keyframes qzfade { from { opacity: 0; } to { opacity: 1; } }
.qz-panel { width: 100%; max-width: 468px; max-height: 92vh; background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; animation: qzpop .32s cubic-bezier(.2,.8,.2,1); }
@keyframes qzpop { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.qz-chrome { display: flex; align-items: center; gap: 12px; padding: 16px 18px 10px; }
.qz-back, .qz-close { background: none; border: none; color: var(--ink-3); padding: 4px; border-radius: 8px; display: inline-flex; transition: color .15s, background .15s; }
.qz-back:hover, .qz-close:hover { color: var(--ink); background: var(--surface); }
.qz-progress { flex: 1; height: 6px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.qz-progress-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--brand), var(--brand-deep)); transition: width .4s cubic-bezier(.4,0,.2,1); }
.qz-stage { flex: 1; overflow-y: auto; padding: 6px 26px 28px; -webkit-overflow-scrolling: touch; }
.qz-screen { display: flex; flex-direction: column; min-height: 100%; animation: qzslide .32s ease; }
@keyframes qzslide { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.qz-q-title { font-size: 22px; font-weight: 700; margin-top: 8px; }
.qz-q-sub { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); margin-bottom: 18px; }
.qz-cards { display: flex; flex-direction: column; gap: 9px; }
.qz-spacer { flex: 1; min-height: 14px; }

.qz-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #fff; border: none; border-radius: 14px; padding: 16px; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: var(--shadow-brand); transition: transform .18s, box-shadow .2s; }
.qz-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20,136,230,.42); }
.qz-cta--wa { background: linear-gradient(135deg, #25D366, #1da851); box-shadow: 0 10px 26px rgba(37,211,102,.34); }
.qz-skip { display: block; margin: 12px auto 0; background: none; border: none; color: var(--ink-3); font-size: 13.5px; font-weight: 600; text-decoration: underline; }
.qz-motivo { width: 100%; border: 1.5px solid var(--line-2); border-radius: 14px; padding: 14px; font-family: var(--font-body); font-size: 15px; color: var(--ink); resize: none; transition: border-color .15s; }
.qz-motivo:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }

/* Option cards */
.opt-card { display: flex; align-items: center; gap: 13px; width: 100%; text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 15px; transition: border-color .16s, transform .12s, box-shadow .16s, background .16s; }
@media (hover: hover) { .opt-card:hover { border-color: var(--brand); transform: translateX(3px); box-shadow: var(--shadow-sm); } }
.opt-card.selected { border-color: var(--brand); background: var(--brand-tint); }
.opt-card.tapped { transform: scale(.985); }
.opt-ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-deep); display: inline-flex; align-items: center; justify-content: center; }
.opt-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.opt-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.25; }
.opt-sub { font-size: 12.5px; color: var(--ink-3); }
.opt-chev { color: var(--line-2); display: inline-flex; }
@media (hover: hover) { .opt-card:hover .opt-chev { color: var(--brand); } }

/* Explain */
.explain { margin-top: 14px; }
.explain-toggle { display: flex; align-items: center; gap: 7px; width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 11px; padding: 11px 13px; color: var(--ink-2); font-size: 13.5px; font-weight: 600; transition: background .15s; }
.explain-toggle:hover { background: var(--surface-2); }
.explain-toggle span { flex: 1; text-align: left; }
.explain-toggle svg:last-child { transition: transform .2s; }
.explain-toggle.open svg:last-child { transform: rotate(180deg); }
.explain-panel { margin-top: 8px; padding: 13px; background: var(--brand-tint); border: 1px solid #d9ebfc; border-radius: 11px; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* Capture */
.qz-fields { display: flex; flex-direction: column; gap: 13px; }
.qz-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.qz-field input { width: 100%; border: 1.5px solid var(--line-2); border-radius: 13px; padding: 14px; font-family: var(--font-body); font-size: 16px; color: var(--ink); transition: border-color .15s; }
.qz-field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.qz-phone { display: flex; align-items: stretch; border: 1.5px solid var(--line-2); border-radius: 13px; overflow: hidden; transition: border-color .15s; }
.qz-phone:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.qz-phone-prefix { display: inline-flex; align-items: center; gap: 5px; padding: 0 12px; background: var(--surface); border-right: 1px solid var(--line-2); font-size: 14px; font-weight: 600; color: var(--ink-2); }
.qz-phone input { flex: 1; border: none; padding: 14px; font-size: 16px; font-family: var(--font-body); color: var(--ink); }
.qz-phone input:focus { outline: none; }
.qz-error { margin-top: 12px; background: #fdecec; border: 1px solid #f6c9c9; color: #c0392b; border-radius: 11px; padding: 11px 13px; font-size: 13.5px; font-weight: 600; }

/* Loading */
.qz-loading { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; padding: 40px 0; text-align: center; }
.qz-spinner { width: 52px; height: 52px; border-radius: 50%; border: 4px solid var(--brand-soft); border-top-color: var(--brand); animation: spin 0.85s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.qz-loading-hi { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.qz-loading-phase { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 4px; animation: qzfade .3s; }
.qz-loading-dots { display: flex; gap: 7px; justify-content: center; margin-top: 14px; }
.qz-loading-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); transition: background .3s; }
.qz-loading-dots span.on { background: var(--brand); }

/* Result */
.qz-result { display: flex; flex-direction: column; min-height: 100%; }
.qz-result-head { text-align: center; }
.qz-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; padding: 6px 13px; border-radius: 100px; }
.qz-chip.ok { color: var(--ok); background: #e7faf1; }
.qz-chip.warn { color: var(--warn); background: #fdf4e2; }
.qz-result-title { font-size: 22px; font-weight: 700; margin-top: 12px; }
.qz-result-title b { color: var(--brand-deep); }
.qz-plan { margin-top: 20px; background: linear-gradient(160deg, #fff, var(--brand-tint)); border: 1.5px solid #cfe6fb; border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-md); }
.qz-plan-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qz-plan-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.qz-plan-name b { font-weight: 800; }
.qz-plan-badge { font-size: 11px; font-weight: 700; color: var(--brand-deep); background: var(--brand-soft); padding: 4px 9px; border-radius: 100px; white-space: nowrap; }
.qz-plan-tag { margin-top: 6px; font-size: 13.5px; color: var(--ink-2); }
.qz-plan-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.qz-plan-stats > div { text-align: center; }
.qz-plan-k { display: block; font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -.02em; line-height: 1.2; }
.qz-plan-l { font-size: 10.5px; color: var(--ink-3); font-weight: 600; }
.qz-result-body { margin-top: 18px; font-size: 14.5px; color: var(--ink-2); }
.qz-result-note { text-align: center; margin-top: 12px; font-size: 12.5px; color: var(--ink-3); }

.trust-strip { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--ink-3); font-weight: 600; }

@media (max-width: 520px) {
  .qz-overlay { padding: 0; }
  .qz-panel { max-width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
}

/* ============================================================
   v3 — header enxuto, métricas com ícone, banda azul, print anim
   ============================================================ */

/* Header só com a logo */
.lp-header-in--logo { justify-content: flex-start; }

/* Métricas: ícone + números maiores/mais pesados + setinhas subindo */
.metric-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 13px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.metric-v { font-size: clamp(26px, 3.4vw, 40px) !important; text-shadow: 0 2px 10px rgba(0,0,0,.12); }
.metric-l { margin-top: 4px; }
.bb-rise { position: absolute; top: 0; bottom: 0; width: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; pointer-events: none; z-index: 1; }
.bb-rise--l { left: 6px; } .bb-rise--r { right: 6px; }
.bb-rise i { width: 13px; height: 13px; border-top: 3px solid rgba(255,255,255,.85); border-right: 3px solid rgba(255,255,255,.85); transform: rotate(-45deg); animation: riseup 1.8s ease-in-out infinite; }
.bb-rise i:nth-child(2) { animation-delay: .25s; } .bb-rise i:nth-child(3) { animation-delay: .5s; }
@keyframes riseup { 0% { opacity: 0; transform: rotate(-45deg) translate(5px,5px); } 45% { opacity: .95; } 100% { opacity: 0; transform: rotate(-45deg) translate(-5px,-5px); } }
@media (max-width: 680px) { .bb-rise { display: none; } }
@media (prefers-reduced-motion: reduce) { .bb-rise i { animation: none; opacity: .7; } }

/* Banda azul total (sem foto) */
.band-block { padding: clamp(40px,5vw,72px) clamp(26px,4vw,56px); }
.band-block-in { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: clamp(24px,4vw,48px); align-items: center; }
.band-anim { display: flex; align-items: center; justify-content: center; min-height: 210px; }
@media (max-width: 820px) { .band-block-in { grid-template-columns: minmax(0,1fr); } .band-anim { min-height: 160px; } }

/* Animação de impressão 3D (placeholder on-brand até o Lottie) */
.printanim { position: relative; width: 240px; height: 210px; }
.printanim::before { content: ''; position: absolute; inset: 0; border-radius: 18px; background: radial-gradient(circle at 50% 60%, rgba(255,255,255,.16), transparent 65%); }
.pa-gantry { position: absolute; top: 14px; left: 10%; right: 10%; height: 6px; border-radius: 6px; background: rgba(255,255,255,.5); }
.pa-nozzle { position: absolute; top: 18px; width: 16px; height: 22px; border-radius: 3px 3px 7px 7px; background: #fff; box-shadow: 0 6px 14px rgba(0,0,0,.18); animation: panozzle 2.6s ease-in-out infinite; }
.pa-base { position: absolute; bottom: 26px; left: 14%; right: 14%; height: 8px; border-radius: 8px; background: rgba(255,255,255,.55); }
.pa-build { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); width: 96px; display: flex; flex-direction: column-reverse; gap: 4px; }
.pa-layer { height: 9px; border-radius: 4px; background: rgba(255,255,255,.92); transform-origin: center; opacity: 0; animation: palayer 3.6s ease-in-out infinite; animation-delay: calc(var(--i) * .28s); }
.pa-layer:nth-child(odd) { background: rgba(255,255,255,.78); }
@keyframes palayer { 0%, 8% { opacity: 0; transform: scaleX(.2); } 18%, 80% { opacity: 1; transform: scaleX(1); } 96%, 100% { opacity: 0; } }
@keyframes panozzle { 0%,100% { left: 26%; } 50% { left: 60%; } }
@media (prefers-reduced-motion: reduce) { .pa-layer, .pa-nozzle { animation: none; opacity: 1; } .pa-layer { transform: none; } }

/* ============================================================
   v3 — Farm Manager rebuild (MacBook + linhas alternadas)
   ============================================================ */
.fm-hero { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: clamp(28px,4vw,56px); align-items: center; }
.fm-feats { display: grid; gap: 16px; min-width: 0; }

/* MacBook frame envolvendo o painel real */
.macbook { position: relative; padding: 0 5%; }
.macbook-screen { background: #0b1322; border: 12px solid #161d2b; border-radius: 16px 16px 4px 4px; overflow: hidden; box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.04); }
.macbook-img { display: block; width: 100%; height: auto; border: none !important; box-shadow: none !important; }
.macbook-deck { position: relative; height: 16px; margin: 0 -7%; background: linear-gradient(#d7dde6, #aeb7c6); border-radius: 0 0 12px 12px; box-shadow: 0 16px 30px rgba(13,28,54,.20); }
.macbook-deck::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60%; height: 4px; background: linear-gradient(#9aa4b5, #c2cad7); border-radius: 0 0 8px 8px; }
.macbook-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 86px; height: 7px; background: #aab4c4; border-radius: 0 0 7px 7px; }
@media (max-width: 880px) { .fm-hero { grid-template-columns: minmax(0,1fr); } }

/* Linhas print real + explicação */
.fm-rows { display: grid; gap: clamp(26px,3.5vw,46px); margin-top: clamp(40px,5vw,68px); }
.fm-row { display: flex; align-items: center; gap: clamp(22px,4vw,48px); }
.fm-row--rev { flex-direction: row-reverse; }
.fm-shot { flex: 1 1 0; min-width: 0; }
.fm-text { flex: .92 1 0; min-width: 0; }
.fm-row-k { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-deep); background: var(--brand-soft); border: 1px solid #d4e8fb; padding: 6px 12px; border-radius: 100px; }
.fm-row-t { font-size: clamp(20px,2.4vw,27px); font-weight: 800; margin-top: 14px; }
.fm-row-d { margin-top: 10px; font-size: 15.5px; color: var(--ink-2); }
@media (max-width: 760px) {
  .fm-row, .fm-row--rev { flex-direction: column; }
  .fm-shot, .fm-text { flex: 1 1 auto; width: 100%; }
}

/* Fecho da seção */
.fm-close { margin-top: clamp(40px,5vw,70px); text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(21px,3.2vw,36px); color: var(--ink); letter-spacing: -.02em; }
.fm-close::after { content: ''; display: block; width: 64px; height: 4px; border-radius: 4px; margin: 16px auto 0; background: linear-gradient(90deg, var(--brand), var(--brand-deep)); }

/* Problema/Solução em bullets (cards simétricos) */
.ps-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.ps-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.ps-ic { flex: none; width: 24px; height: 24px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.ps-list--bad .ps-ic { background: #fdecec; color: #d0463b; }
.ps-list--good .ps-ic { background: #e7faf1; color: var(--ok); }

/* ============================================================
   v3.1 — hero farm, mobile image-first, métricas mobile, CTA fixo global
   ============================================================ */
/* Hero visual = farm (não impressora) */
.hero-farm { position: relative; z-index: 2; width: 100%; max-width: 520px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6); }
.hero-farm img { width: 100%; aspect-ratio: 4 / 3.1; object-fit: cover; display: block; }
.hero-farm-tag { position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: 11.5px; color: #fff; background: rgba(8,16,30,.58); backdrop-filter: blur(6px); padding: 6px 11px; border-radius: 100px; }
.hero-visual { min-height: 0; }

/* Mobile: imagem ANTES da headline */
@media (max-width: 900px) {
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-farm { max-width: 100%; }
  .hero-copy { max-width: 100%; }
}

/* Fix métricas no mobile (não quebrar feio) */
@media (max-width: 600px) {
  .metric-v { font-size: clamp(17px, 5vw, 22px) !important; line-height: 1.15; }
  .metric-ic { width: 40px; height: 40px; margin-bottom: 8px; }
}

/* Moldura: tag encostada à direita (URL removida) */
.brframe-tag { margin-left: auto; }

/* CTA fixo em TODAS as telas (o único CTA agora) */
.mobile-cta { display: block; }
body { padding-bottom: 86px; }
@media (min-width: 721px) {
  .mobile-cta { padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); }
  .mobile-cta .btn { max-width: 470px; margin: 0 auto; }
}

/* ============================================================
   Mercado — recorte de jornal (editorial / Times)
   ============================================================ */
.news {
  --paper-news: #f7f4ea;
  position: relative; max-width: 1000px; margin: 0 auto;
  background: var(--paper-news);
  background-image: radial-gradient(rgba(11,19,34,.022) 1px, transparent 1px);
  background-size: 4px 4px;
  padding: clamp(34px,4vw,56px) clamp(24px,4vw,60px);
  border: 1px solid #e2dcc9;
  box-shadow: 0 30px 70px rgba(13,28,54,.16), 0 6px 16px rgba(13,28,54,.08);
  transform: rotate(-.5deg);
  color: #1a1610;
}
.news > * { transform: rotate(.5deg); }
/* dentes de recorte (topo e base) */
.news::before, .news::after {
  content: ''; position: absolute; left: -1px; right: -1px; height: 14px; z-index: 4;
  background:
    linear-gradient(45deg, var(--paper) 49%, transparent 50%) 0 0 / 16px 16px repeat-x,
    linear-gradient(-45deg, var(--paper) 49%, transparent 50%) 0 0 / 16px 16px repeat-x;
}
.news::before { top: -1px; }
.news::after { bottom: -1px; transform: scaleY(-1); }

.news-masthead { display: flex; align-items: center; gap: 18px; }
.news-rule { flex: 1; height: 3px; background: #1a1610; box-shadow: 0 3px 0 #1a1610; }
.news-name { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; font-size: clamp(28px,5vw,52px); letter-spacing: .01em; color: #1a1610; text-transform: uppercase; text-align: center; line-height: 1; }
.news-dateline { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; margin-top: 12px; padding: 8px 0; border-top: 1px solid #1a1610; border-bottom: 1px solid #1a1610; font-family: 'Playfair Display', Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #5a5040; }
.news-headline { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: clamp(24px,3.4vw,38px); line-height: 1.08; color: #1a1610; text-align: center; margin: 22px 0 20px; }
.news-cols { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: clamp(24px,3vw,40px); align-items: start; }
.news-lead { font-family: Georgia, 'Times New Roman', serif; font-size: 16.5px; line-height: 1.62; color: #2a2418; text-align: justify; column-gap: 28px; }
.news-lead p { margin: 0; } .news-lead p + p { margin-top: 12px; text-indent: 1.4em; }
.news-drop { float: left; font-family: 'Playfair Display', Georgia, serif; font-weight: 900; font-size: 62px; line-height: .72; padding: 6px 10px 0 0; color: #1a1610; }
.news-figbox { border: 2px solid #1a1610; padding: 18px 18px 20px; background: rgba(255,255,255,.4); }
.news-figbox-h { display: block; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 1px solid #c9c0a8; color: #1a1610; }
.news-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
.news-fig-v { display: block; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: clamp(22px,2.6vw,30px); color: var(--brand-deep); letter-spacing: -.01em; line-height: 1; }
.news-fig-l { display: block; margin-top: 5px; font-family: Georgia, serif; font-size: 11.5px; line-height: 1.35; color: #5a5040; }
.news-chart { display: flex; align-items: flex-end; gap: 7px; height: 70px; margin-top: 18px; padding-top: 16px; border-top: 1px solid #c9c0a8; position: relative; }
.news-chart span { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--brand), var(--brand-deep)); transform-origin: bottom; transform: scaleY(0); animation: growbar .9s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i) * .12s + .2s); }
.news-chart em { position: absolute; right: 0; top: -2px; font-family: Georgia, serif; font-style: italic; font-size: 11px; color: #8a7f68; }
@keyframes growbar { to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .news-chart span { transform: scaleY(1); animation: none; } }
@media (max-width: 760px) { .news-cols { grid-template-columns: minmax(0,1fr); } .news { transform: none; } .news > * { transform: none; } }

/* CTA final — texto à esquerda + animação à direita */
.cta-block { padding: clamp(40px,5vw,72px) clamp(28px,4vw,60px); display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,.78fr); gap: clamp(24px,4vw,48px); align-items: center; text-align: left; }
.cta-final-in { position: relative; text-align: left; max-width: 640px; margin: 0; }
.cta-final-in .cta-final-note { justify-content: flex-start; }
.cta-anim { display: flex; align-items: center; justify-content: center; min-height: 180px; }
@media (max-width: 820px) {
  .cta-block { grid-template-columns: minmax(0,1fr); text-align: center; }
  .cta-final-in { text-align: center; margin: 0 auto; }
  .cta-final-in .cta-final-note { justify-content: center; }
  .cta-anim { order: -1; min-height: 130px; }
}

/* ============================================================
   v3.2 — feedback Lucas: cartoons, ps red/green, jornal cinza, FM laranja, pra-quem azul, CTA fixo
   ============================================================ */

/* Ícones cartoon no "O que recebe" */
.gift-img { flex: none; width: 58px; height: 58px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow-sm); }
@media (max-width: 520px) { .gift-img { width: 52px; height: 52px; } }

/* Problema = vermelho · Solução = verde · fonte branca */
.ps-problem { background: linear-gradient(150deg, #ef4444, #c0362f); border-color: transparent; box-shadow: 0 16px 38px rgba(196,51,46,.26); }
.ps-solution { background: linear-gradient(150deg, #19b866, #0e8b4c); border-color: transparent; box-shadow: 0 16px 38px rgba(14,139,76,.26); }
.ps-problem .ps-kicker, .ps-solution .ps-kicker { color: rgba(255,255,255,.82); }
.ps-problem h3, .ps-solution h3 { color: #fff; }
.ps-problem .ps-list li, .ps-solution .ps-list li { color: #fff; }
.ps-problem .ps-ic, .ps-solution .ps-ic { background: rgba(255,255,255,.2); color: #fff; }
.ps-arrow { color: var(--ink-3); }

/* Jornal — papel CINZA, full-width, sem rotação/dentes (mais autoridade) */
.news { --paper-news: #e7e7e3; max-width: 100%; transform: none; padding: clamp(34px,4vw,60px) clamp(28px,5vw,74px); border: 1px solid #ccc9c1; background-color: #e7e7e3; box-shadow: 0 22px 54px rgba(13,28,54,.15), 0 4px 12px rgba(13,28,54,.07); }
.news > * { transform: none; }
.news::before, .news::after { display: none !important; }
.news-name { font-size: clamp(32px,6vw,64px); }
.news-headline { font-size: clamp(26px,4vw,44px); margin-top: 26px; }
.news-fig-v { font-size: clamp(26px,3vw,36px); }

/* Farm Manager = BLOCÃO LARANJA forte (coração da página) */
#software { background: transparent; }
.orange-block { position: relative; overflow: hidden; border-radius: clamp(20px,3vw,34px); padding: clamp(36px,4.5vw,64px) clamp(22px,3vw,52px); background: linear-gradient(150deg, #fb923c 0%, #f97316 55%, #ea580c 100%); box-shadow: 0 30px 70px rgba(234,88,12,.30), inset 0 1px 0 rgba(255,255,255,.22); }
.fm-block .section-eyebrow { color: #ffe6cf; }
.fm-block .section-title { color: #fff; }
.fm-block .section-sub { color: rgba(255,255,255,.95); }
.fm-block .sfeat-ic { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); color: #fff; }
.fm-block .sfeat-t { color: #fff; }
.fm-block .sfeat-d { color: rgba(255,255,255,.94); }
.fm-block .fm-row-k { color: #fff; background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.28); }
.fm-block .fm-row-t { color: #fff; }
.fm-block .fm-row-d { color: #fff; }
.fm-block .fm-grid-h { color: #fff; }
.fm-block .fm-gitem { background: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.fm-block .fm-gic { background: #ffe6cf; color: #c2410c; }
.fm-block .fm-close { color: #fff; }
.fm-block .fm-close::after { background: rgba(255,255,255,.92); }
.fm-block .brframe-tag { color: #c2410c; background: #ffe6cf; }
.fm-block .macbook-screen { box-shadow: var(--shadow-lg), 0 0 64px rgba(0,0,0,.18); }
@media (max-width: 680px) { .orange-block::after { display: none; } }

/* Pra quem é — bloco AZUL */
.forwhom-block { padding: clamp(34px,4vw,60px); }
.forwhom-block .forwhom-wrap { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(24px,4vw,52px); align-items: center; }
.forwhom-block .section-title { color: #fff; }
.forwhom-block .forwhom-img { border-radius: var(--r-lg); aspect-ratio: 4 / 3.6; box-shadow: var(--shadow-lg); object-fit: cover; }
.forwhom-block .fw { background: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.forwhom-block .fw-ic { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: #fff; box-shadow: var(--shadow-brand); }
@media (max-width: 860px) { .forwhom-block .forwhom-wrap { grid-template-columns: minmax(0,1fr); } .forwhom-block .forwhom-img { order: -1; aspect-ratio: 16/10; } }

/* CTA fixo — centralizado (flex resolve, margin:auto não centra inline-flex) */
.mobile-cta { display: flex; justify-content: center; align-items: center; }
.mobile-cta .btn { width: 100%; max-width: 480px; margin: 0; }

/* Balance de texto — evita palavra órfã quebrando feio depois do ponto */
h1, h2, h3, h4, .hero-title, .section-title, .news-headline, .ps-card h3, .fm-row-t, .plan-name { text-wrap: balance; }
.hero-sub, .section-sub, .news-lead, .gift-d, .fw-d, .sfeat-d, .fm-row-d, .ps-list li, .cta-block p, .lp-band-in p { text-wrap: pretty; }

/* Farm Manager — grid de mais funções (tópicos laranja) */
.fm-grid { margin-top: clamp(40px,5vw,64px); }
.fm-grid-h { text-align: center; font-size: clamp(19px,2.4vw,26px); font-weight: 800; margin-bottom: clamp(22px,3vw,32px); }
.fm-grid-items { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.fm-gitem { display: flex; gap: 13px; background: #fff; border: 1px solid #f4e4d4; border-radius: var(--r); padding: 20px; box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s; }
.fm-gitem:hover { transform: translateY(-3px); border-color: #fdba74; }
.fm-gic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: #ffe6cf; color: #c2410c; display: inline-flex; align-items: center; justify-content: center; }
.fm-git { font-size: 16px; font-weight: 700; }
.fm-gid { margin-top: 4px; font-size: 14px; color: var(--ink-2); }
@media (max-width: 820px) { .fm-grid-items { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fm-grid-items { grid-template-columns: 1fr; } }

/* ============================================================
   v3.3 — destaque de texto, persona cartoons, ilustrações, hero farm maior
   ============================================================ */
/* Marca-texto / destaque (seções claras) */
.hl { font-weight: 700; color: var(--ink); background: linear-gradient(transparent 58%, #cfe6fb 58%); padding: 0 2px; border-radius: 2px; }
.hero-sub b, .section-sub b { color: var(--ink); font-weight: 700; }

/* Hero farm maior e mais imersiva (só desktop — não quebrar empilhamento mobile) */
@media (min-width: 901px) { .hero-in { grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr); } }
.hero-farm { max-width: 600px; }
.hero-farm img { aspect-ratio: 4 / 3.5; }
@media (max-width: 900px) { .hero-farm { max-width: 100%; } .hero-farm img { aspect-ratio: 16 / 11; } }

/* Persona cartoons no "Pra quem é" */
.fw-img { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow-sm); }

/* Ilustração na banda (maior, no lugar da animação) */
.band-illu { display: flex; align-items: center; justify-content: center; }
.band-illu img { width: 100%; max-width: 440px; background: #fff; border-radius: var(--r-xl); box-shadow: 0 22px 54px rgba(0,0,0,.24); }
@media (max-width: 820px) { .band-illu img { max-width: 340px; } }

/* Ilustração no CTA final */
.cta-illu { display: flex; align-items: center; justify-content: center; }
.cta-illu img { width: 100%; max-width: 340px; background: #fff; border-radius: var(--r-xl); box-shadow: 0 18px 44px rgba(0,0,0,.2); }
@media (max-width: 820px) { .cta-illu { order: -1; } .cta-illu img { max-width: 250px; } }

/* MacBook mockup no "O que recebe" */
.recebe-mockup { max-width: 780px; margin: 30px auto 0; }

/* ============================================================
   v3.4 — banner geolocalização + hero full-bleed no mobile
   ============================================================ */
.geo-banner { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 9px 16px; background: var(--ink-bg); color: #cdd6e6; font-family: var(--font-display); font-weight: 600; font-size: 13px; text-align: center; position: relative; z-index: 40; }
.geo-banner svg { color: #6cc0ff; flex: none; }
.geo-banner b { color: #fff; }
.geo-dot { width: 7px; height: 7px; border-radius: 50%; background: #36e08e; box-shadow: 0 0 0 3px rgba(54,224,142,.2); animation: pulse 1.6s infinite; flex: none; }
@media (max-width: 520px) { .geo-banner { font-size: 12px; padding: 8px 12px; gap: 6px; } }

/* Mobile: imagem da farm FULL-BLEED, cobrindo ~meia tela */
@media (max-width: 760px) {
  .lp-hero { padding-top: 0; }
  .hero-visual { order: -1; margin: 0 0 18px; min-height: 0; }
  .hero-glow { display: none; }
  .hero-farm { margin: 0 -24px; width: calc(100% + 48px); max-width: none; border-radius: 0; border: none; box-shadow: none; }
  .hero-farm.float-a { animation: none; }
  .hero-farm img { aspect-ratio: auto; height: 52vh; min-height: 300px; object-fit: cover; border-radius: 0; }
  .hv-chip--rev { right: 14px; top: 14px; }
  .hv-chip--days { left: 14px; bottom: 14px; }
}

/* ============================================================
   v4 — vídeo motion no hero + fileira de cards + pill buttons (estilo Zoom)
   ============================================================ */
/* Hero media: vídeo motion em todas as telas */
.hero-media { width: 100%; display: block; }
.hero-farm .hero-media--video { aspect-ratio: 16 / 10; object-fit: cover; background: #eef5fe; }

/* Fileira de cards abaixo do hero */
.lp-herocards-wrap { padding: clamp(4px,1vw,14px) 0 clamp(28px,4vw,52px); }
.herocards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.herocard { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 15px 17px; box-shadow: var(--shadow-md); transition: transform .2s ease, box-shadow .2s ease; }
.herocard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.herocard-img { width: 46px; height: 46px; border-radius: 12px; flex: none; }
.herocard-t { font-size: 15px; font-weight: 700; line-height: 1.15; }
.herocard-d { font-size: 12.5px; color: var(--ink-2); margin-top: 3px; }
@media (max-width: 820px) { .herocards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .herocards { grid-template-columns: 1fr; } }

/* Botões pill (igual Zoom) */
.btn, .btn-sm, .btn-lg, .btn-xl { border-radius: 100px; }

/* Mais respiro entre seções */
.lp-section { padding: clamp(62px, 8.5vw, 116px) 0; }

/* ============================================================
   v4.1 — fix faixa branca nas métricas + vídeo robusto no mobile
   ============================================================ */
/* Faixa branca = glow ::after + divisórias estreitas no mobile */
@media (max-width: 680px) {
  .blue-block::after { display: none; }
  .metric::before { display: none !important; }
}
/* Vídeo no mobile: garante tamanho e fundo on-brand (não branco) se o poster falhar */
@media (max-width: 760px) {
  .hero-farm .hero-media--video { aspect-ratio: 16 / 10; width: 100%; min-height: 210px; background: #eef5fe; }
}
.metric-v { white-space: nowrap; }
.hero-accent { color: var(--brand); }

/* ============================================================
   v4.3 — texto das linhas numa JANELA DE NOTAS do Mac (leitura no claro)
   ============================================================ */
/* sombra leve só no que fica direto no laranja (título/sub da seção, features, fecho) */
.fm-block .section-title, .fm-block .sfeat-t, .fm-block .fm-close { text-shadow: 0 1px 3px rgba(120,45,0,.26); }
.fm-block .section-sub, .fm-block .sfeat-d { text-shadow: 0 1px 2px rgba(120,45,0,.20); }

/* janela de notas (texto das linhas) */
.macnote { background: #fffdf7; border: 1px solid rgba(0,0,0,.06); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 54px rgba(120,45,0,.26); }
.macnote-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f3efe4; border-bottom: 1px solid #e6dfcd; }
.macnote-dots { display: inline-flex; gap: 6px; flex: none; }
.macnote-dots i { width: 11px; height: 11px; border-radius: 50%; background: #d6deea; }
.macnote-dots i:nth-child(1){background:#ff5f57}.macnote-dots i:nth-child(2){background:#febc2e}.macnote-dots i:nth-child(3){background:#28c840}
.macnote-title { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: #9a7b3a; }
.macnote-title svg { color: #c2410c; }
.macnote-body { padding: clamp(22px,2.6vw,32px); }
.fm-block .macnote-body .fm-row-t { color: var(--ink); margin-top: 0; text-shadow: none; }
.fm-block .macnote-body .fm-row-d { color: var(--ink-2); font-size: 16px; line-height: 1.55; margin-top: 12px; text-shadow: none; }

/* Features do Farm Manager dentro da janela de notas */
.fm-feats-body { display: grid; gap: 18px; }
.fm-block .macnote-body .sfeat-t { color: var(--ink); text-shadow: none; }
.fm-block .macnote-body .sfeat-d { color: var(--ink-2); text-shadow: none; }
.fm-block .macnote-body .sfeat-ic { background: #ffe6cf; border: 1px solid transparent; color: #c2410c; }

/* ============================================================
   Badge giratório "selo de oferta" na borda do vídeo do hero
   ============================================================ */
.hero-badge { position: absolute; z-index: 6; top: -18px; right: -18px; width: 128px; height: 128px; filter: drop-shadow(0 14px 30px rgba(11,19,34,.32)); }
.hero-badge-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-badge-dash { transform-box: fill-box; transform-origin: center; animation: hbspin 11s linear infinite; }
/* texto PARADO e legível no centro */
.hero-badge-core { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; line-height: 1; }
.hb-from { font-family: var(--font-display); font-weight: 700; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.hb-price { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -.02em; margin-top: 6px; }
@keyframes hbspin { to { transform: rotate(360deg); } }
@media (max-width: 900px) { .hero-badge { top: 6px; right: 6px; width: 92px; height: 92px; } .hb-from { font-size: 8.5px; letter-spacing: .1em; } .hb-price { font-size: 18px; margin-top: 4px; } }
@media (prefers-reduced-motion: reduce) { .hero-badge-dash { animation: none; } }
/* quebra de linha só no mobile (balance no botão fixo) */
.brm { display: none; }
@media (max-width: 720px) { .brm { display: inline; } }

/* Resultado NEGATIVO do quiz (abaixo de R$ 22 mil — desqualificado, sem WhatsApp) */
.qz-result--block { align-items: center; text-align: center; }
.qz-block-ic { width: 78px; height: 78px; border-radius: 50%; background: #fdecec; color: #d0463b; display: flex; align-items: center; justify-content: center; margin: 14px auto 20px; box-shadow: 0 8px 22px rgba(208,70,59,.18); }
.qz-block-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 14px; letter-spacing: -.02em; }
.qz-block-body { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.qz-block-body + .qz-block-body { margin-top: 10px; }
.qz-block-body b { color: var(--ink); font-weight: 700; }
