/* =====================================================================
   LP Trinks IA — v1
   ===================================================================== */

:root {
  --bg:          #FAF2E6;
  --bg-alt:      #F2E2D2;
  --surface:     #FFFFFF;
  --ink:         #1E1E1E;
  --ink-2:       rgba(30,30,30,0.66);
  --ink-3:       rgba(30,30,30,0.42);
  --line:        rgba(30,30,30,0.10);
  --line-2:      rgba(30,30,30,0.18);
  --accent:      #ec5702;
  --accent-ink:  #FFFFFF;
  --accent-soft: #ffdfc9;
  --accent-dk:   #b53500;
  --lime:        #C5FF71;
  --whatsapp:    #25D366;

  --font-display: "Inter Tight", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-body:    "Inter Tight", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-serif:   "Instrument Serif", "Newsreader", Georgia, serif;
  --font-mono:    ui-monospace, "SF Mono", Menlo, "Cascadia Mono", monospace;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

html, body { background: var(--bg); color: var(--ink); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; }
.section-eyebrow img { height: 20px; width: auto; flex-shrink: 0; }
.beta-modal-brand img { height: 28px; width: auto; display: block; }

/* ─────────────── Type ─────────────── */
.t-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  padding-bottom: 0.22em;
}
.t-section-title em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }

.t-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ─────────────── Section eyebrow ─────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.section-eyebrow--dim { color: color-mix(in oklab, var(--bg) 70%, transparent); }
.section-eyebrow--cta { color: color-mix(in oklab, var(--accent-ink) 75%, transparent); }

/* ─────────────── Layout ─────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(56px, 6vw, 96px); }

/* ─────────────── Header ─────────────── */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.hdr.scrolled {
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.hdr-left { display: flex; align-items: center; gap: 16px; }
.hdr-stone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
  padding-left: 16px; border-left: 1px solid var(--line);
}
.hdr-stone .sq { width: 8px; height: 8px; border-radius: 2px; background: var(--ink); }
@media (max-width: 980px) { .hdr-stone { display: none; } }
.logo-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 22px; letter-spacing: -0.02em;
}
.logo-img { height: 28px; width: auto; display: block; }
.ia-pill { height: 24px; width: auto; display: block; }
.hdr-nav { display: flex; align-items: center; gap: 28px; }
.hdr-nav a {
  color: var(--accent); font-size: 14.5px; font-weight: 700;
  position: relative; z-index: 0;
  transition: color .25s ease;
}
.hdr-nav a:hover { color: var(--ink); }
.hdr-nav a::before {
  content: '';
  position: absolute;
  left: -6px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 32px;
  background-image: url('../imagens/shape-active.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.hdr-nav a.is-active::before { opacity: 1; }
.hdr-nav a.is-active { color: var(--ink); }
.hdr-actions { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.hdr-menu-btn {
  display: none;
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--line-2); border-radius: 10px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0;
}
.hdr-menu-btn span {
  display: block; width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.hdr-menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hdr-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.hdr-menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.hdr-mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 48;
  background: color-mix(in oklab, var(--bg) 97%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; padding: 80px 24px 48px;
}
.hdr-mobile-nav.is-open { display: flex; animation: mnav-in .22s ease; }
@keyframes mnav-in { from { opacity: 0; } to { opacity: 1; } }
.hdr-mobile-nav a:not(.btn) {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  letter-spacing: -0.025em; color: var(--ink); text-align: center;
  transition: color .2s ease;
}
.hdr-mobile-nav a:not(.btn):hover { color: var(--accent); }
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px;
  width: 38px; height: 38px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.mobile-nav-close:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 760px) {
  .hdr-nav { display: none; }
  .hdr-menu-btn { display: flex; }
  .hdr-actions .btn-primary { display: none; }
}

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 500; font-size: 15px;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .14s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn-accent  { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover  { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-lg { font-size: 16.5px; padding: 16px 26px; }

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  background: var(--bg);
  padding: 0;
  margin-top: -72px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 72vw; max-width: 76%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: kenburns 28s ease-in-out infinite alternate;
  filter: saturate(0.85) contrast(0.95);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 25%, rgba(0,0,0,0.12) 35%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.80) 62%, #000 75%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 25%, rgba(0,0,0,0.12) 35%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.80) 62%, #000 75%, #000 100%);
}
.hero-bg-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, transparent 0%, color-mix(in oklab, var(--accent) 16%, transparent) 65%, color-mix(in oklab, var(--accent) 30%, transparent) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-bg-fade {
  position: absolute; top: 0; bottom: 0; right: 0; left: 0;
  z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--bg) 35%, transparent) 0%,
    transparent 18%, transparent 72%,
    color-mix(in oklab, var(--bg) 60%, transparent) 100%);
}
.hero-bg-grain {
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  z-index: 2; pointer-events: none; opacity: .22;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  mix-blend-mode: overlay;
}
@media (max-width: 820px) {
  .hero-bg-photo, .hero-bg-fade, .hero-bg-grain { display: none; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 40% 30% at 0% 100%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: calc(72px + clamp(8px, 1.6vw, 16px)) var(--pad-x) clamp(20px, 2.4vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 clamp(40px, 6vw, 96px);
  min-height: 480px;
}
.hero-copy-badge { grid-column: 1; grid-row: 1; align-self: end; padding-bottom: 20px; }
.hero-copy-text  { grid-column: 1; grid-row: 2; align-self: start; }
.hero-visual     { grid-column: 2; grid-row: 1 / 3; align-self: center; }

@media (max-width: 820px) {
  .hero-inner {
    display: flex; flex-direction: column;
    gap: 24px; min-height: 0;
    padding-top: calc(72px + 20px);
    padding-bottom: 32px;
  }
  .hero-copy-badge { order: 1; padding-bottom: 0; align-self: stretch; display: flex; justify-content: center; margin-top: -12px; }
  .hero-visual     { order: 2; }
  .hero-copy-text  { order: 3; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink);
  padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 999px;
  background: var(--surface);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 30%, transparent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 30%, transparent); }
  50%      { box-shadow: 0 0 0 10px color-mix(in oklab, var(--accent) 0%, transparent); }
}

.hero h1 {
  margin: 20px 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: pretty;
  padding-bottom: 0.12em;
}
.hero h1 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--accent); }
.hero h1 .hl {
  position: relative; display: inline-block;
  background: linear-gradient(180deg, transparent 64%, var(--lime) 64% 90%, transparent 90%);
  padding: 0 4px; white-space: nowrap;
}

.hero-body { font-size: 16px; color: var(--ink-2); max-width: 52ch; line-height: 1.55; margin: 0 0 24px; }
.hero-body b { color: var(--ink); font-weight: 600; }

.hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-cta-row .btn-accent { box-shadow: 0 14px 30px -10px color-mix(in oklab, var(--accent) 50%, transparent); }

.beta-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 500;
  font-family: var(--font-body); letter-spacing: 0;
  margin-bottom: 24px;
}
.beta-badge .gif-mark {
  width: 22px; height: 22px; border-radius: 999px; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #FFFFFF; font-weight: 700; font-size: 11px; font-family: var(--font-mono);
}

.hero-visual {
  position: relative; min-height: 420px; width: 100%;
}
@media (max-width: 820px) {
  .hero-visual {
    min-height: 360px; border-radius: 20px;
    background-image: var(--hero-img);
    background-size: cover; background-position: center;
    overflow: visible;
  }
}

/* Stamp */
.hero-stamp {
  position: absolute; top: 8px; right: -12px;
  width: 124px; height: 124px; border-radius: 999px;
  background: var(--accent); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; text-align: center;
  transform: rotate(-8deg); z-index: 5;
  box-shadow: 0 0 0 1px var(--accent) inset, 0 0 0 3px rgba(255,255,255,0.85) inset, 0 0 0 4px var(--accent) inset, 0 20px 40px -12px rgba(26,22,18,0.4);
  animation: stampfade 1s ease-out .3s both, stampwobble 8s ease-in-out 1.5s infinite;
  font-family: var(--font-mono);
}
.hero-stamp-inner { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px; }
.hero-stamp .lg { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; letter-spacing: -0.015em; text-transform: uppercase; }
.hero-stamp .sm { font-size: 8.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: .85; }
.hero-stamp .dot-row { display: flex; gap: 4px; margin: 3px 0 2px; }
.hero-stamp .dot-row span { width: 2.5px; height: 2.5px; border-radius: 999px; background: #FFFFFF; opacity: .7; }
@keyframes stampfade {
  from { transform: rotate(-8deg) scale(.94); opacity: 0; }
  to   { transform: rotate(-8deg) scale(1); opacity: 1; }
}
@keyframes stampwobble {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(-6deg); }
}
@media (max-width: 820px) {
  .hero-stamp { top: 8px; right: 8px; width: 100px; height: 100px; }
  .hero-stamp .lg { font-size: 14px; }
  .hero-stamp .sm { font-size: 7.5px; }
}

/* Phone wrap */
.hero-phone-wrap {
  position: absolute; left: 30px; right: auto; bottom: 0;
  width: 210px;
  transform: rotate(-2deg);
  filter: drop-shadow(0 30px 50px rgba(26,22,18,0.45));
  z-index: 6;
}
@media (max-width: 820px) {
  .hero-phone-wrap { left: 50%; right: auto; bottom: -24px; width: 180px; transform: rotate(-2deg) translateX(-50%); }
}

/* Play button */
.hero-play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--accent); color: #FFFFFF; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 12px 24px -6px rgba(26,22,18,0.5);
  transition: transform .2s ease, background .2s ease;
  animation: playPulse 2.4s infinite;
}
.hero-play-btn:hover { transform: translate(-50%, -50%) rotate(2deg) scale(1.1); }
.hero-play-btn svg { margin-left: 2px; }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 12px 24px -6px rgba(26,22,18,0.5); }
  50%      { box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 12px 24px -6px rgba(26,22,18,0.5), 0 0 0 14px color-mix(in oklab, var(--accent) 15%, transparent); }
}

/* Video wrap */
.hero-video-wrap {
  position: absolute; left: 0; right: auto; bottom: 0;
  width: 460px; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden;
  z-index: 6;
  box-shadow: 0 40px 70px -20px rgba(26,22,18,0.55);
  background: #000;
  display: none;
}
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-close {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(0,0,0,0.65); color: #FFFFFF; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 11; font-size: 14px; line-height: 1; backdrop-filter: blur(8px);
}
.hero-video-close:hover { background: rgba(0,0,0,0.9); }
@media (max-width: 820px) {
  .hero-video-wrap { left: auto; right: 0; bottom: 0; width: 90%; max-width: 360px; }
}

/* Stats row */
.hero-stats-row {
  width: 100%; background: var(--bg);
  position: relative; z-index: 5;
  border-top: 1px solid var(--line);
  padding: 22px 0 clamp(22px, 2.4vw, 32px);
  margin-top: 48px;
}
.hero-stats-row::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: -56px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none; z-index: -1;
}
.hero-stats-inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding-inline: var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .hero-stats-inner { grid-template-columns: repeat(2, 1fr); } }
.hero-stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero-stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px); letter-spacing: -0.03em; line-height: 0.95;
  color: var(--ink); display: block;
}
.hero-stat .num em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--accent); }
.hero-stat .lbl {
  margin-top: 8px;
  font-family: var(--font-mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2);
}

/* ─────────────── Benefits / Pilares ─────────────── */
.bens { background: var(--bg); }
.bens-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 8px;
}
.bens-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 24px;
}
@media (max-width: 1000px) { .bens-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .bens-grid { grid-template-columns: 1fr; } }
.ben {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px; position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.ben:hover { transform: translateY(-2px); border-color: var(--line-2); }
.ben-top { display: flex; align-items: center; justify-content: flex-end; }
.ben-num { font-family: var(--font-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--ink-3); }
.ben h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; letter-spacing: -0.018em; }
.ben p  { margin: 0 0 8px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; flex: 1; }
.ben-wave {
  width: 62%; height: auto; display: block; margin: 0 auto;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  transform-origin: center bottom;
}
.ben:hover .ben-wave { transform: scale(1.03); }

/* ─────────────── How it works ─────────────── */
.how { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.how .section-eyebrow--dim { color: color-mix(in oklab, var(--bg) 70%, transparent); }
.how-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.how-header p { color: color-mix(in oklab, var(--bg) 72%, transparent); max-width: 44ch; margin: 0; font-size: 17px; }
.how h2 { color: var(--bg); }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
@media (max-width: 1000px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .how-steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 26px 22px 24px;
  border: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
  border-radius: var(--radius);
  background: color-mix(in oklab, var(--bg) 4%, transparent);
  min-height: 320px;
  display: flex; flex-direction: column;
  transition: background .25s ease, transform .25s ease; overflow: hidden;
}
.step:hover { background: color-mix(in oklab, var(--bg) 8%, transparent); transform: translateY(-2px); }
.step .step-num {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.step .step-num::before { content: ""; width: 16px; height: 1px; background: var(--accent); display: inline-block; }
.step h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1; margin: 0 0 12px; color: var(--bg); }
.step p { color: color-mix(in oklab, var(--bg) 72%, transparent); font-size: 14.5px; line-height: 1.5; margin: 0 0 auto; }
.step .step-visual { margin-top: 22px; height: 56px; display: flex; align-items: flex-end; color: var(--bg); }

/* ─────────────── Timeline ─────────────── */
.tl { background: var(--bg-alt); position: relative; overflow: hidden; }
.tl-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.tl-head h2 { font-size: clamp(40px, 5.4vw, 76px); }
.tl-head p  { color: var(--ink-2); max-width: 60ch; margin: 0; font-size: 17px; }
.tl-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 20px;
}
@media (max-width: 1000px) { .tl-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tl-track { grid-template-columns: 1fr; } }

/* Plan / pricing cards */
.plan-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 28px 22px 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.plan-card--featured {
  border-color: var(--accent);
  box-shadow: 0 20px 40px -22px color-mix(in oklab, var(--accent) 55%, transparent);
}
.plan-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 10px 20px -8px color-mix(in oklab, var(--accent) 60%, transparent), 0 0 0 3px var(--bg-alt);
  z-index: 2;
}
.plan-icon {
  width: 48px; height: 48px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.plan-name {
  margin: 4px 0 0; font-family: var(--font-display); font-weight: 700;
  font-size: 19px; letter-spacing: -0.01em; color: var(--accent);
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 2.6vw, 32px); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.plan-price span { font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--ink-2); }
.plan-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: color-mix(in oklab, var(--lime) 38%, transparent);
  color: color-mix(in oklab, var(--ink) 88%, transparent);
  font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
}
.plan-note { margin: 0; font-size: 13px; line-height: 1.4; color: var(--ink-3); }

/* ─────────────── CTA / Form ─────────────── */
.cta { background: var(--accent); color: var(--accent-ink); position: relative; overflow: hidden; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; } }
.cta h2 { color: var(--accent-ink); font-size: clamp(42px, 6vw, 84px); }
.cta-lede { color: color-mix(in oklab, var(--accent-ink) 88%, transparent); font-size: 18px; max-width: 44ch; margin-top: 20px; }
.cta-bullets { margin: 28px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; color: color-mix(in oklab, var(--accent-ink) 92%, transparent); font-size: 14.5px; }
.cta-bullets li { display: flex; align-items: center; gap: 10px; }
.cta-bullets li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: color-mix(in oklab, var(--accent-ink) 25%, transparent); flex-shrink: 0; background-image: radial-gradient(circle at center, var(--accent-ink) 0 3px, transparent 4px); }
.form-card {
  background: var(--bg); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35); position: relative;
  min-width: 0; overflow: hidden;
}
.form-card .form-eyebrow { margin-bottom: 8px; }
.form-card h3 { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.05; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.form-row  { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); }
.form-field input {
  width: 100%;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  padding: 14px; font: inherit; font-size: 15px; border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent); }
.form-field select {
  width: 100%;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  padding: 14px 36px 14px 14px; font: inherit; font-size: 15px; border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent); }
.form-submit { margin-top: 8px; width: 100%; }
.form-fineprint { margin-top: 14px; font-size: 12px; color: var(--ink-3); }

/* ── Multi-step form ── */
.form-slides {
  position: relative;
  width: 100%;
}
.form-track {
  position: relative;
  width: 100%;
}
/* passo 1 — fluxo normal; define altura do container */
.form-slide:first-child {
  width: 100%;
  transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1);
  -webkit-transition: opacity .35s ease, -webkit-transform .35s cubic-bezier(.4,0,.2,1);
}
/* passo 2 — absoluto sobre o passo 1 */
.form-slide:nth-child(2) {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  -webkit-transform: translateX(28px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.4,0,.2,1);
  -webkit-transition: opacity .35s ease, -webkit-transform .35s cubic-bezier(.4,0,.2,1);
}
/* transição para passo 2 */
.form-track.at-step-2 .form-slide:first-child {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-28px);
  -webkit-transform: translateX(-28px);
}
.form-track.at-step-2 .form-slide:nth-child(2) {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.form-slide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.form-step-badge {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
  margin-top: 6px;
}
.form-back-btn {
  background: none; border: none; padding: 0;
  font: inherit; font-size: 13px; color: var(--ink-2);
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
}
.form-back-btn:hover { color: var(--ink); }

.form-questions { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.form-question-label {
  font-size: 13px; color: var(--ink); font-weight: 500;
  line-height: 1.45; margin: 0 0 8px;
}
.form-select {
  width: 100%;
  padding: 12px 14px;
  font: inherit; font-size: 14px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: var(--surface); color: var(--ink);
  outline: none; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent); }
#btnConfirmarInscricao { margin-top: 24px; }
.form-success { text-align: center; padding: 28px 8px 8px; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--lime); color: #1E1E1E;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; font-weight: 700;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-2); }

/* ─────────────── Footer ─────────────── */
.ftr { background: var(--bg); border-top: 1px solid var(--line); padding-block: 48px; }
.ftr-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ftr-grid .left { display: flex; align-items: center; gap: 18px; color: var(--ink-2); font-size: 13px; }
.ftr-grid .right { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 13px; }
.stone-seal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line-2); border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.stone-seal .dot { width: 8px; height: 8px; border-radius: 2px; background: var(--ink); }

/* ─────────────── Beta Modal ─────────────── */
.beta-modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(14,11,9,0.74);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  align-items: center; justify-content: center; padding: 24px;
}
.beta-modal-backdrop.is-open { display: flex; animation: bm-fadein .22s ease; }
@keyframes bm-fadein { from { opacity: 0; } to { opacity: 1; } }
.beta-modal {
  background: var(--bg); border-radius: 20px;
  width: 100%; max-width: 520px; max-height: calc(100vh - 48px); overflow-y: auto;
  padding: clamp(28px, 3.4vw, 40px);
  position: relative; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55);
  animation: bm-slidein .32s cubic-bezier(.2,.7,.2,1);
}
@keyframes bm-slidein {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.beta-modal-brand { margin-bottom: 18px; }
.beta-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 999px;
  background: transparent; color: var(--ink); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.beta-modal-close:hover { background: var(--ink); color: var(--bg); }
.beta-modal-title {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.025em; line-height: 1.05; padding-bottom: 0.2em;
}
.beta-modal-title em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--accent); }
.beta-modal-lede { margin: 8px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.beta-modal .form-grid { margin-top: 22px; }
.beta-modal .form-submit { margin-top: 22px; width: 100%; }

/* ─────────────── WhatsApp Chat Mock ─────────────── */
.wa-phone {
  width: 100%; aspect-ratio: 10/19;
  background: #0E1418; border-radius: 28px; padding: 8px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06) inset, 0 0 0 5px #1A1A1A;
  position: relative; overflow: hidden;
}
.wa-screen {
  width: 100%; height: 100%; background: #ECE5DD; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  font-family: -apple-system, "Helvetica Neue", "SF Pro Text", sans-serif;
}
.wa-status {
  height: 26px; background: #075E54;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 16px; font-size: 11px; color: #fff; font-weight: 600;
}
.wa-status .right { display: inline-flex; gap: 5px; align-items: center; }
.wa-status .right span { display: inline-block; width: 14px; height: 9px; border: 1px solid #fff; border-radius: 2px; position: relative; }
.wa-status .right span::after { content: ""; position: absolute; right: -3px; top: 2px; width: 1px; height: 3px; background: #fff; }
.wa-status .right span::before { content: ""; position: absolute; inset: 1px; background: #fff; width: 80%; }
.wa-header {
  background: #075E54; color: #fff; padding: 8px 12px 10px;
  display: flex; align-items: center; gap: 10px;
}
.wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #ec5702), color-mix(in oklab, var(--accent, #ec5702) 70%, #fff));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff; border: 2px solid rgba(255,255,255,.15);
}
.wa-h-info { flex: 1; min-width: 0; }
.wa-h-info .name { font-size: 14px; font-weight: 600; line-height: 1.15; display: flex; align-items: center; gap: 4px; }
.wa-h-info .name .verif { width: 12px; height: 12px; background: #34B7F1; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 8px; color: #fff; }
.wa-h-info .sub { font-size: 11px; opacity: .8; }
.wa-h-icons { display: flex; gap: 14px; opacity: .9; font-size: 14px; }
.wa-body {
  flex: 1; min-height: 0; overflow: hidden; padding: 10px 8px 8px;
  background-color: #ECE5DD;
  background-image: radial-gradient(circle at 20% 30%, rgba(0,0,0,.025) 1px, transparent 1.5px), radial-gradient(circle at 70% 60%, rgba(0,0,0,.02) 1px, transparent 1.5px), radial-gradient(circle at 40% 80%, rgba(0,0,0,.02) 1px, transparent 1.5px);
  background-size: 26px 26px, 32px 32px, 22px 22px;
  display: flex; flex-direction: column;
}
.wa-scroll {
  flex: 1; min-height: 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 5px;
}
.wa-msg-row { display: flex; align-items: flex-end; gap: 4px; max-width: 88%; }
.wa-msg-row.in  { align-self: flex-start; }
.wa-msg-row.out { align-self: flex-end; flex-direction: row-reverse; }
.wa-bubble {
  background: #fff; color: #1F2C34; padding: 6px 10px 16px; border-radius: 8px;
  font-size: 13.5px; line-height: 1.32; position: relative; max-width: 100%;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13); word-wrap: break-word;
  animation: msgIn .35s cubic-bezier(.2,.7,.2,1) both;
}
.wa-msg-row.out .wa-bubble { background: #DCF8C6; color: #1F2C34; }
.wa-time { position: absolute; right: 8px; bottom: 3px; font-size: 9.5px; color: rgba(0,0,0,.45); display: flex; align-items: center; gap: 3px; }
.wa-time .ticks { color: #34B7F1; font-size: 11px; line-height: 1; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-typing {
  align-self: flex-start; background: #fff; padding: 8px 12px; border-radius: 8px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,.13); display: inline-flex; gap: 3px;
}
.wa-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #9AAFB5;
  animation: waBounce 1s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .12s; }
.wa-typing span:nth-child(3) { animation-delay: .24s; }
@keyframes waBounce { 0%, 80%, 100% { transform: translateY(0); opacity: .6; } 40% { transform: translateY(-4px); opacity: 1; } }
.wa-day { align-self: center; background: rgba(255,255,255,.7); color: #1F2C34; font-size: 10.5px; padding: 3px 8px; border-radius: 6px; margin: 4px auto 8px; font-weight: 500; }
.wa-input { background: #F0F0F0; padding: 6px 8px; display: flex; align-items: center; gap: 8px; }
.wa-input .pill { flex: 1; background: #fff; padding: 8px 12px; border-radius: 20px; color: #9AAFB5; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.wa-input .mic { width: 32px; height: 32px; background: #075E54; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; }
.wa-notch { position: absolute; left: 50%; top: 12px; transform: translateX(-50%); width: 70px; height: 16px; background: #000; border-radius: 0 0 10px 10px; z-index: 2; }
.wa-card {
  background: #F7F7F2; border-radius: 6px; padding: 8px 10px; margin: 4px 0 6px;
  border-left: 3px solid var(--accent, #ec5702); font-size: 12px;
}
.wa-card .head { font-weight: 600; color: #1F2C34; font-size: 12px; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.wa-card .head .ico { width: 14px; height: 14px; border-radius: 3px; background: var(--accent, #ec5702); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; }
.wa-card .row { display: flex; justify-content: space-between; color: #5A6B73; font-size: 11.5px; line-height: 1.5; }

/* ─────────────── Mobile small (≤540px) ─────────────── */
@media (max-width: 540px) {

  /* Hero copy */
  .beta-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 0; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); margin: 16px 0 16px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .hero-visual { min-height: 0 !important; }
  .hero-phone-wrap { display: none !important; }
  .hero-video-wrap {
    display: block !important;
    position: relative; left: auto; right: auto; bottom: auto;
    width: 100%; max-width: 100%;
    border-radius: 16px;
  }
  .hero-video-close { display: none; }
  .hero-stamp { display: none; }

  /* Stats: mantém 2x2, reduz gap e fonte */
  .hero-stats-inner { gap: 14px; }
  .hero-stat .num { font-size: clamp(28px, 8vw, 40px); }
  .hero-stat .lbl { font-size: 10px; }

  /* Section headers */
  .bens-header, .how-header, .tl-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .t-lede, .how-header p, .tl-head p { font-size: 16px; }

  /* Ben cards */
  .ben { min-height: auto; padding: 18px 16px 14px; gap: 10px; }
  .ben h3 { font-size: 22px; }
  .ben p { font-size: 14px; }

  /* How steps */
  .step { min-height: auto; padding: 20px 16px 20px; }
  .step h3 { font-size: 26px; }

  /* Planos */
  .plan-card { padding: 26px 18px 20px; }
  .tl-head { margin-bottom: 32px; }
  .tl-track { gap: 28px; }

  /* CTA / Form */
  .cta h2 { font-size: clamp(36px, 10vw, 56px); }
  .form-grid { grid-template-columns: 1fr; }
  .form-card h3 { font-size: 24px; }

  /* Footer */
  .ftr-grid { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .ftr-grid .left { flex-direction: column; align-items: center; gap: 8px; }
  .ftr-grid .right { flex-direction: column; align-items: center; gap: 8px; }
}
