/* ============================================================
   YSked — Landing BARBEARIA (/sistema-de-agendamento-para-barbearia/)
   Direção: premium escuro warm + dourado/âmbar.
   Fontes: Archivo (display) · Hanken Grotesk (corpo) · JetBrains Mono.
   Página estática dedicada (carregada só nesta rota), no mesmo padrão
   de seo.css. Tokens em :root seguem os Design Tokens do handoff.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* ---- Escala escura warm ---- */
  --bg:        #100c08;
  --bg-2:      #16110b;
  --surface:   #1b1610;
  --surface-2: #221b13;
  --raise:     #2a2117;

  --line:      rgba(224, 164, 73, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --hair:      rgba(255, 255, 255, 0.10);

  --text:      #f4ede1;
  --muted:     #b6a78f;
  --muted-2:   #897c69;

  /* ---- Dourado / âmbar (acento) — fosco: menos saturado, menos neon ---- */
  --gold:      #d3a55f;
  --gold-br:   #e6c489;
  --gold-ink:  #c08a35;
  --gold-deep: #a96e1e;
  --gold-soft: rgba(224, 164, 73, 0.09);
  --gold-glow: rgba(224, 164, 73, 0.20);

  --ok: #58c08a;
  --wa: #25d366;

  /* ---- Raios ---- */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* ---- Sombras (profundas, warm) ---- */
  --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --sh-md: 0 18px 40px -16px rgba(0, 0, 0, 0.65), 0 4px 12px -6px rgba(0, 0, 0, 0.5);
  --sh-lg: 0 44px 90px -30px rgba(0, 0, 0, 0.8), 0 14px 30px -16px rgba(0, 0, 0, 0.6);
  --sh-gold: 0 14px 36px -10px var(--gold-glow);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  letter-spacing: -0.004em;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 32px;
}

/* utilitário: palavra dourada */
.gold { color: var(--gold-br); }

/* ============================================================ Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px; border-radius: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(170deg, var(--gold-br), var(--gold));
  color: #2a1c08;
  box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--hair);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-br); transform: translateY(-2px); }

.btn--wa {
  background: rgba(37, 211, 102, 0.12); color: #7ef0a8; border-color: rgba(37, 211, 102, 0.3);
}
.btn--wa:hover { background: rgba(37, 211, 102, 0.2); }

.btn--sm { height: 44px; padding: 0 18px; font-size: 15px; border-radius: 10px; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 17px; }

/* ============================================================ Eyebrow / pills */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-br);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.badge {
  display: inline-flex; align-items: center; gap: 9px; height: 36px;
  padding: 0 16px 0 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--sh-sm); font-size: 13.5px; font-weight: 500; color: var(--muted);
  white-space: nowrap;
}
.badge b { color: var(--gold-br); font-weight: 700; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 4px rgba(88, 192, 138, 0.16); }

.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  color: var(--muted); font-size: 14.5px; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust .chk { display: inline-grid; place-items: center; width: 19px; height: 19px;
  border-radius: 50%; background: var(--gold-soft); color: var(--gold-br); }
.trust .chk svg { width: 11px; height: 11px; }

/* ============================================================ Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, background .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(165deg, var(--gold-br), var(--gold-deep));
  display: grid; place-items: center; color: #2a1c08;
  font-family: var(--font-display); font-weight: 900; font-size: 20px; letter-spacing: -0.04em;
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255, 255, 255, 0.4); position: relative;
}
.brand .word { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.03em; color: var(--text); }
.brand .word b { color: var(--gold-br); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.nav-links a { padding: 8px 14px; border-radius: 9px; font-size: 15px; font-weight: 500;
  color: var(--muted); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta .signin { font-size: 15px; font-weight: 600; color: var(--text); padding: 8px 12px; border-radius: 9px; }
.nav-cta .signin:hover { background: rgba(255, 255, 255, 0.05); }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; }
.hero .glow {
  position: absolute; pointer-events: none; z-index: 0;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  right: -16%; top: -28%;
  background: radial-gradient(closest-side, var(--gold-glow), transparent 70%);
  opacity: .55; filter: blur(8px);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(120% 80% at 60% 0%, #000 25%, transparent 70%);
          mask-image: radial-gradient(120% 80% at 60% 0%, #000 25%, transparent 70%);
  opacity: .5;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 54px; align-items: center; padding-block: 48px 76px;
}
.h-copy { position: relative; z-index: 3; }
.h1-xl { font-size: clamp(42px, 5vw, 62px); margin: 18px 0 0; line-height: 1.0; }
.h1-xl .gold { display: inline; }
.h-sub { margin-top: 18px; font-size: 17.5px; line-height: 1.48; color: var(--muted); max-width: 34em; }
.offer-line {
  margin-top: 16px; max-width: 36em; padding: 11px 15px; border-radius: var(--r-sm);
  background: rgba(88, 192, 138, 0.09); border: 1px solid rgba(88, 192, 138, 0.22);
  color: #a6dfbd; font-size: 15.5px; font-weight: 600;
}
.offer-line strong { color: #d0f1dd; }
.h-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-help {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  color: #7ef0a8; font-size: 14.5px; font-weight: 700;
  text-decoration: underline; text-decoration-color: rgba(126, 240, 168, 0.38);
  text-underline-offset: 4px;
}
.hero-help::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12); }
.hero-help:hover { color: #a7f5c3; }
.h-trust { margin-top: 28px; }

/* colagem visual do hero */
.h-visual { position: relative; z-index: 2; min-height: 520px; }
.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  width: 86%;
  margin-left: auto;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 30%, rgba(16, 12, 8, 0.55) 100%);
}

/* placeholder de foto + img (fallback quando a foto não carrega) */
.photo { position: relative; background:
    repeating-linear-gradient(135deg, #1d1812 0 14px, #221b13 14px 28px);
}
.photo .ph-label {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-2); text-align: center; padding: 20px;
}
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* celular flutuante sobre a foto do hero */
.hero-phone {
  position: absolute; left: -6%; bottom: 28px; z-index: 4;
  width: 218px; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.float-chip {
  position: absolute; right: -4%; top: 40px; z-index: 5;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--sh-md); padding: 12px 14px; display: flex; align-items: center; gap: 11px; max-width: 248px;
}
.float-chip .wa-ic { width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: rgba(37, 211, 102, 0.15); color: var(--wa); display: grid; place-items: center; }
.float-chip .wa-ic svg { width: 19px; height: 19px; }
.float-chip .ft { font-size: 12.5px; line-height: 1.35; }
.float-chip .ft b { display: block; color: var(--text); font-weight: 700; }
.float-chip .ft span { color: var(--muted-2); }

/* ============================================================ Mock de celular */
.phone { width: 100%; border-radius: 34px; background: #060504; padding: 8px;
  box-shadow: var(--sh-lg); }
.phone-screen { background: #15110c; border-radius: 27px; overflow: hidden; position: relative; }
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 20px; background: #060504; border-radius: 999px; z-index: 4; }
.pb-head { background: linear-gradient(160deg, #2a2014, #16110b); color: #fff; padding: 34px 16px 16px; position: relative; }
.pb-biz { display: flex; align-items: center; gap: 10px; }
.pb-biz .logo { width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(165deg, var(--gold-br), var(--gold-deep)); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; color: #2a1c08; }
.pb-biz .nm { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.pb-biz .mt { font-size: 11px; color: rgba(255, 255, 255, 0.55); }
.pb-body { padding: 14px 14px 18px; background: #fbf7f0; }
.pb-label { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #9c8d76; margin-bottom: 8px; }
.pb-svc { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px;
  border: 1px solid #e7ddca; border-radius: 11px; font-size: 13px; font-weight: 700; color: #2a2014;
  margin-bottom: 7px; background: #fff; }
.pb-svc.on { border-color: var(--gold); background: var(--gold-soft); }
.pb-svc small { font-family: var(--font-mono); color: #9c8d76; font-weight: 500; font-size: 11.5px; }
.pb-svc.on small { color: var(--gold-deep); }
.pb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 2px; }
.pb-slot { text-align: center; padding: 9px 0; border: 1px solid #e7ddca; border-radius: 9px;
  font-size: 12.5px; font-weight: 700; font-family: var(--font-mono); color: #6f6452; background: #fff; }
.pb-slot.on { background: var(--gold); color: #2a1c08; border-color: var(--gold); }
.pb-slot.off { color: #b9ad97; opacity: .55; text-decoration: line-through; }
.pb-cta { margin-top: 14px; height: 46px; border-radius: 12px;
  background: linear-gradient(170deg, var(--gold-br), var(--gold)); color: #2a1c08;
  display: grid; place-items: center; font-weight: 800; font-size: 14.5px; }

/* ============================================================ Mock de painel */
.mock { background: #fbf7f0; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden; width: 100%; }
.mock-top { display: flex; align-items: center; gap: 8px; padding: 12px 15px;
  border-bottom: 1px solid #ece3d2; background: #f3ecdf; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: #d8cdb8; }
.mock-url { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: #8a7c66;
  background: #fff; border: 1px solid #e7ddca; border-radius: 7px; padding: 5px 12px;
  display: inline-flex; align-items: center; gap: 7px; }
.mock-url svg { width: 11px; height: 11px; color: var(--gold-deep); }
.mock-body { display: grid; grid-template-columns: 60px 1fr; min-height: 340px; }
.mock-rail { border-right: 1px solid #ece3d2; padding: 16px 0; display: flex; flex-direction: column;
  align-items: center; gap: 13px; background: #f3ecdf; }
.mock-rail .rlogo { width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(165deg, var(--gold-br), var(--gold-deep)); }
.mock-rail .ri { width: 30px; height: 30px; border-radius: 8px; background: #e6dcc8; }
.mock-rail .ri.on { background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold); }
.mock-main { padding: 16px 18px 20px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-head .day { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #2a2014; }
.mock-head .day small { color: #9c8d76; font-weight: 600; font-size: 12px; margin-left: 6px; }
.mock-head .pn { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #6f6452;
  font-weight: 700; background: #fff; border: 1px solid #e7ddca; border-radius: 999px; padding: 5px 11px; }
.mock-head .pn .av { width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(165deg, var(--gold-br), var(--gold-deep)); }
.slotline { display: grid; grid-template-columns: 44px 1fr; gap: 12px; }
.slotline + .slotline { margin-top: 7px; }
.slotline .t { font-family: var(--font-mono); font-size: 11.5px; color: #a89a82; padding-top: 11px; }
.slotline .cell { border-top: 1px dashed #e0d5c0; min-height: 38px; padding-top: 6px; }
.appt { border-radius: 10px; padding: 9px 12px; font-size: 13px; font-weight: 700; color: #2a2014;
  background: var(--gold-soft); border: 1px solid color-mix(in srgb, var(--gold) 40%, white);
  border-left: 3px solid var(--gold); display: flex; align-items: center; justify-content: space-between; }
.appt small { font-family: var(--font-mono); font-weight: 500; color: var(--gold-deep); font-size: 11px; }
.appt.alt { background: #e9f8ef; border-color: #c2e8d2; border-left-color: var(--ok); color: #1c5a3c; }
.appt.alt small { color: #2c9c66; }

/* ============================================================ Captura real do painel */
.dashboard-shot { background: #100c08; }
.dashboard-shot .mock-body { display: none; }
.dashboard-shot .dashboard-shot-top {
  border-color: var(--line);
  background: #1b1610;
}
.dashboard-shot .dashboard-shot-dots i:nth-child(1) { background: #fb7185; }
.dashboard-shot .dashboard-shot-dots i:nth-child(2) { background: #fbbf24; }
.dashboard-shot .dashboard-shot-dots i:nth-child(3) { background: #34d399; }
.dashboard-shot .mock-url {
  overflow: hidden;
  color: var(--muted-2);
  background: #100c08;
  border-color: var(--line);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dashboard-shot img { display: block; width: 100%; height: auto; }

/* ============================================================ Faixa de serviços */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip .wrap { display: flex; align-items: center; gap: 16px 40px; flex-wrap: wrap; padding-block: 24px; }
.strip .lbl { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-2); }
.svc-tag { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 800;
  font-size: 15px; letter-spacing: .02em; color: var(--muted); }
.svc-tag::before { content: "\2702"; color: var(--gold); margin-right: 10px; font-size: 13px; opacity: .85; }

/* ============================================================ Confiança */
.confidence { padding-block: 72px; background: var(--surface); border-bottom: 1px solid var(--line); }
.confidence-grid { display: grid; grid-template-columns: .8fr 1.45fr; gap: 58px; align-items: center; }
.confidence-intro h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 38px); }
.confidence-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.confidence-item {
  min-height: 120px; padding: 22px; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--line);
}
.confidence-item b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--text); }
.confidence-item span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.45; }

/* ============================================================ Seções */
section { position: relative; }
.section { padding-block: 96px; }
.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(32px, 4vw, 50px); margin-top: 16px; }
.section-sub { margin-top: 16px; font-size: 18px; color: var(--muted); }

/* dores e solução */
.pain-section { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pain-card {
  min-height: 190px; padding: 25px 23px; border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
}
.pain-card > span {
  display: inline-flex; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .1em; color: var(--gold-br);
}
.pain-card h3 { margin-top: 34px; font-size: 20px; line-height: 1.22; }
.solution-box {
  margin-top: 22px; padding: 34px; border-radius: var(--r-lg);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center;
  background: var(--gold-soft); border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--line));
}
.solution-box h3 { margin-top: 12px; font-size: clamp(24px, 2.8vw, 34px); }
.solution-box ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 20px; }
.solution-box li { position: relative; padding-left: 25px; color: var(--text); font-size: 15px; font-weight: 600; }
.solution-box li::before {
  content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold-br); font-weight: 900;
}

/* cards de benefício */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px 30px; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bcard::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease;
  background: radial-gradient(120% 80% at 0% 0%, var(--gold-soft), transparent 60%); }
.bcard:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); box-shadow: var(--sh-md); }
.bcard:hover::before { opacity: 1; }
.bcard > * { position: relative; z-index: 1; }
.bcard .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--gold-soft);
  color: var(--gold-br); display: grid; place-items: center; margin-bottom: 18px;
  border: 1px solid var(--line); }
.bcard .ic svg { width: 24px; height: 24px; }
.bcard h3 { font-size: 20px; font-weight: 800; }
.bcard p { margin-top: 9px; font-size: 15px; color: var(--muted); }

/* passos */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; }
.step .num { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 19px; color: var(--gold-br);
  background: var(--surface-2); border: 1px solid var(--line); margin-bottom: 18px; box-shadow: var(--sh-sm); }
.step h3 { font-size: 18px; font-weight: 800; }
.step p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 60px; right: -12px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px); }

/* linhas de recurso (highlight) */
.highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.highlight + .highlight { margin-top: 96px; }
.highlight.rev .h-text { order: 2; }
.highlight .h-text h3 { font-size: clamp(28px, 3.2vw, 40px); margin-top: 16px; }
.highlight .h-text p { margin-top: 16px; font-size: 17px; color: var(--muted); }
.h-list { margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.h-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px;
  color: var(--text); font-weight: 500; }
.h-list .chk { flex: none; width: 23px; height: 23px; border-radius: 50%; background: var(--gold-soft);
  color: var(--gold-br); display: grid; place-items: center; margin-top: 1px; border: 1px solid var(--line); }
.h-list .chk svg { width: 12px; height: 12px; }

.panel-visual { position: relative; }
.panel-visual.framed { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 28px; overflow: hidden; }
.panel-visual.framed::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px; mask-image: radial-gradient(80% 80% at 50% 0%, #000, transparent 80%); }
.panel-visual.framed > * { position: relative; z-index: 1; }

/* mock de bio do instagram */
.ig-mock { width: 290px; margin-inline: auto; background: #15110c; border-radius: 30px;
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--sh-lg); }
.ig-top { padding: 16px 16px 12px; display: flex; gap: 14px; align-items: center; background: #1b1610; }
.ig-av { width: 58px; height: 58px; border-radius: 50%; flex: none; padding: 2px;
  background: conic-gradient(from 200deg, var(--gold-br), var(--gold-deep), var(--gold-br)); }
.ig-av .ph { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--raise); position: relative; }
.ig-av .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-meta .h { font-weight: 800; font-size: 15px; font-family: var(--font-display); }
.ig-meta .s { font-size: 12px; color: var(--muted-2); }
.ig-bio { padding: 0 16px 14px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.ig-link { margin: 0 16px 16px; display: flex; align-items: center; gap: 9px; padding: 11px 14px;
  border-radius: 12px; background: linear-gradient(170deg, var(--gold-br), var(--gold)); color: #2a1c08;
  font-weight: 800; font-size: 13.5px; }
.ig-link svg { width: 15px; height: 15px; }
.ig-link .ar { margin-left: auto; }

/* ============================================================ Planos */
.pricing { background: var(--bg-2); border-top: 1px solid var(--line); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 32px; display: flex; flex-direction: column; box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s; }
.plan.featured { border-color: transparent; box-shadow: var(--sh-lg), 0 0 0 2px var(--gold);
  transform: translateY(-8px); background: var(--surface-2); position: relative; overflow: hidden; }
.plan.featured::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 70% at 50% 0%, var(--gold-soft), transparent 55%); }
.plan > * { position: relative; z-index: 1; }
.plan .pname { font-family: var(--font-display); font-weight: 800; font-size: 17px; display: flex;
  align-items: center; gap: 10px; color: var(--text); }
.plan .tag { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #2a1c08; background: linear-gradient(170deg, var(--gold-br), var(--gold)); padding: 3px 9px; border-radius: 999px; }
.plan .pdesc { margin-top: 6px; font-size: 14px; color: var(--muted); min-height: 40px; }
.plan .price { margin-top: 18px; display: flex; align-items: baseline; gap: 4px; }
.plan .price .cur { font-size: 19px; font-weight: 700; color: var(--text); align-self: flex-start; margin-top: 6px; }
.plan .price .amt { font-family: var(--font-display); font-weight: 900; font-size: 48px; letter-spacing: -0.03em; color: var(--text); }
.plan .price .per { font-size: 14px; color: var(--muted-2); font-weight: 500; }
.plan .billed { font-size: 12.5px; color: var(--muted-2); margin-top: 4px; min-height: 18px; }
.plan .trial-pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; padding: 5px 11px;
  border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--ok); white-space: nowrap;
  background: rgba(88, 192, 138, 0.12); border: 1px solid rgba(88, 192, 138, 0.25); align-self: flex-start; }
.plan .trial-pill svg { width: 12px; height: 12px; }
.plan .btn { margin-top: 22px; width: 100%; }
.plan ul { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.plan li .chk { flex: none; width: 19px; height: 19px; border-radius: 50%; background: var(--gold-soft);
  color: var(--gold-br); display: grid; place-items: center; margin-top: 1px; }
.plan li .chk svg { width: 11px; height: 11px; }
.plan li.inherits { color: var(--muted-2); font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.pricing-foot { text-align: center; margin-top: 32px; font-size: 14.5px; color: var(--muted-2); }

/* ============================================================ Faixa de CTA */
.cta-band { padding-block: 28px 96px; }
.cta-inner { position: relative; overflow: hidden; border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px); color: var(--text);
  background: radial-gradient(130% 130% at 85% 0%, rgba(224, 164, 73, 0.20), transparent 55%), linear-gradient(160deg, #221b13, #14100b);
  border: 1px solid var(--line);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.cta-inner::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: radial-gradient(70% 90% at 100% 0%, #000, transparent 70%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(30px, 3.6vw, 46px); }
.cta-inner p { margin-top: 14px; color: var(--muted); font-size: 18px; max-width: 42ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .note { font-size: 13px; color: var(--muted-2); text-align: center; }

/* ============================================================ Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 58px 36px; }
.footer .top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer .blurb { margin-top: 16px; font-size: 14.5px; color: var(--muted); max-width: 34ch; }
.footer h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px; font-weight: 500; }
.footer .fcol a { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted);
  padding: 5px 0; transition: color .15s; }
.footer .fcol a:hover { color: var(--gold-br); }
.footer .fcol a svg { width: 15px; height: 15px; opacity: .8; }
.footer .bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 46px;
  padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted-2); }
.footer .bottom a:hover { color: var(--gold-br); }

/* ============================================================ Reveal on scroll
   Estado base é VISÍVEL (seguro p/ no-JS / reduced-motion / SSR / print).
   O estado escondido inicial só é aplicado quando o JS adiciona body.anim
   E sob prefers-reduced-motion: no-preference; a transição garante que o
   estado final sempre resolva para opacity:1. Nunca prender em opacity:0. */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  body.anim .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1);
    will-change: opacity, transform;
  }
  body.anim .reveal.in { opacity: 1; transform: none; }
  /* preserva o destaque "sobe 8px" do plano featured após o reveal (só no desktop;
     em <=1080 os planos viram 1 coluna e o featured fica reto). */
}
@media (min-width: 1081px) and (prefers-reduced-motion: no-preference) {
  body.anim .plan.featured.reveal.in { transform: translateY(-8px); }
}

/* ============================================================ Responsivo */
@media (max-width: 1080px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan.featured { transform: none; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; padding-block: 52px 64px; }
  .h-visual { min-height: 0; max-width: 460px; }
  .confidence-grid, .solution-box { grid-template-columns: 1fr; }
  .highlight, .highlight.rev .h-text { grid-template-columns: 1fr; order: 0; }
  .cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 20px; }
  .nav { height: 66px; gap: 14px; }
  .nav-cta .signin { display: none; }
  .nav-cta .btn { height: 40px; padding-inline: 14px; font-size: 14px; }
  .hero .wrap { gap: 30px; padding-block: 28px 52px; }
  .badge { height: auto; min-height: 34px; white-space: normal; line-height: 1.3; }
  .h1-xl { font-size: clamp(35px, 10.5vw, 42px); margin-top: 17px; }
  .h-sub { margin-top: 17px; font-size: 16px; line-height: 1.45; }
  .offer-line { margin-top: 15px; padding: 10px 12px; font-size: 14px; }
  .h-actions { margin-top: 20px; flex-direction: column; gap: 10px; }
  .h-actions .btn { width: 100%; height: 52px; padding-inline: 16px; font-size: 15.5px; }
  .hero-help { margin-top: 14px; }
  .h-trust { margin-top: 20px; gap: 8px 14px; font-size: 13.5px; }
  .h-visual { margin-top: 64px; }
  .confidence { padding-block: 54px; }
  .confidence-grid { gap: 30px; }
  .confidence-items { grid-template-columns: 1fr; }
  .confidence-item { min-height: 0; }
  .section { padding-block: 72px; }
  .pain-grid, .benefits, .steps { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; }
  .pain-card h3 { margin-top: 22px; }
  .solution-box { padding: 26px 22px; gap: 26px; }
  .solution-box ul { grid-template-columns: 1fr; }
  .footer .top, .footer .bottom { grid-template-columns: 1fr; flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-phone { width: 168px; left: 0; }
  .float-chip { right: 0; }
}
