/* ===========================================================
   ZYNK — Centro de Ajuda · Folha de estilo
   Cores e tipografia da marca (sistema "ZYNK").
   =========================================================== */

:root {
  /* Neutras */
  --bg:      #F4F3EE;
  --surface: #FFFFFF;
  --ink:     #0E2818;
  --ink2:    #3C4A41;
  --muted:   #6B7A70;
  --muted2:  #A7B2AA;
  --line:    #E7E3D8;

  /* Marca */
  --grass:   #1FB658;
  --grassDk: #158A42;
  --grassBg: #E8F7EE;
  --cream:   #F5E9C8;
  --gold:    #E8C766;
  --goldDk:  #9C7A2A;
  --orange:  #E8853B;
  --warn:    #E07A3A;
  --warnBg:  #FBEbDD;
  --err:     #D93B3B;

  --radius:  18px;
  --radius-sm: 12px;
  --shadow:  0 1px 2px rgba(14,40,24,.04), 0 8px 24px rgba(14,40,24,.06);
  --maxw:    980px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
#solucao, #funcionalidades, #como-funciona, #pedir-convite { scroll-margin-top: 68px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

.display { font-family: "Archivo Black", "Inter", sans-serif; font-weight: 400; letter-spacing: -0.02em; }
.mono    { font-family: "Space Grotesk", "Inter", sans-serif; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand { display: flex; align-items: center; gap: 9px; }
.zmark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--grass);
  display: grid; place-items: center; flex: none;
}
.zmark svg { width: 17px; height: 17px; display: block; }
.wordmark { font-family: "Archivo Black", sans-serif; font-size: 19px; letter-spacing: -.01em; color: #fff; }
.wordmark .dot { color: var(--grass); }
.brand__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grass); opacity: .85; margin-left: 2px;
}
.topbar__spacer { flex: 1; }
.btn-chapters {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; font-weight: 600; font-size: 14px;
  padding: 9px 14px; border-radius: 999px; cursor: pointer;
}
.btn-chapters:hover { background: rgba(255,255,255,.14); }
.btn-chapters svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 56px 20px 64px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 28% -10%, rgba(31,182,88,.42), rgba(31,182,88,0) 60%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 720px; margin: 0 auto; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,182,88,.16);
  border: 1px solid rgba(31,182,88,.35);
  color: #8FE7B0;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; margin-bottom: 22px;
}
.badge-pill .ping { width: 7px; height: 7px; border-radius: 50%; background: var(--grass); box-shadow: 0 0 0 4px rgba(31,182,88,.25); }
.hero__title {
  font-family: "Archivo Black", sans-serif;
  font-size: 52px; line-height: 1.02; letter-spacing: -.02em;
  margin: 0 0 18px;
}
.hero__title .dot { color: var(--grass); }
.hero__sub { font-size: 19px; color: #C9D2CC; margin: 0 0 30px; max-width: 540px; }
.search {
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 14px 16px; max-width: 520px;
}
.search svg { width: 19px; height: 19px; color: #9FB0A6; flex: none; }
.search input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font-size: 16px; font-family: inherit;
}
.search input::placeholder { color: #8C9A90; }

/* ---------- Layout / secções ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
main { padding-bottom: 40px; }

.section { margin-top: 34px; }
.section__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.section__label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cartão de capítulo ---------- */
.card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(14,40,24,.07), 0 14px 34px rgba(14,40,24,.09); border-color: #DAD5C7; }
.card__num {
  position: relative; flex: none;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grassBg);
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px;
  color: var(--grassDk);
}
.card__icon {
  position: absolute; right: -6px; bottom: -6px;
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  border: 2px solid var(--surface);
}
.card__icon svg { width: 13px; height: 13px; }
.card__body { flex: 1; min-width: 0; }
.card__title { font-weight: 700; font-size: 16.5px; color: var(--ink); margin: 0 0 3px; }
.card__desc { font-size: 14px; color: var(--muted); margin: 0; }
.card__arrow { flex: none; color: var(--muted2); }
.card__arrow svg { width: 20px; height: 20px; display: block; }

/* Variante: Hall da Fama (dourado) */
.card--special .card__num { background: #FaF3DE; color: var(--goldDk); }
.card--special .card__icon { background: var(--goldDk); }

/* Variante: Precisas de ajuda (laranja) */
.card--help .card__num { background: #FCEDE1; color: var(--orange); }
.card--help .card__icon { background: var(--orange); }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 44px 20px 56px; }
.footer__brand { font-family: "Archivo Black", sans-serif; font-size: 20px; color: var(--ink); }
.footer__brand .dot { color: var(--grass); }
.footer__tag { font-size: 13px; color: var(--muted); margin-top: 8px; }
.footer__legal { font-size: 13px; margin-top: 12px; }
.footer__legal a { color: var(--grassDk); font-weight: 600; }
.footer__legal a:hover { text-decoration: underline; }

/* ===========================================================
   PÁGINA DE CAPÍTULO
   =========================================================== */
.chap-header {
  background: var(--ink); color: #fff;
  padding: 30px 20px 38px;
  position: relative; overflow: hidden;
}
.chap-header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 12% -20%, rgba(31,182,88,.30), rgba(31,182,88,0) 55%);
}
.chap-header__inner { position: relative; max-width: 760px; margin: 0 auto; }
.breadcrumb { display: inline-flex; align-items: center; gap: 7px; color: #9FB0A6; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.breadcrumb:hover { color: #fff; }
.breadcrumb svg { width: 16px; height: 16px; }
.chap-kicker { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--grass); margin-bottom: 8px; }
.chap-title { font-family: "Archivo Black", sans-serif; font-size: 38px; line-height: 1.05; letter-spacing: -.02em; margin: 0; }

.prose { max-width: 760px; margin: 0 auto; padding: 34px 20px 10px; }
.prose .lead { font-size: 19px; color: var(--ink2); margin: 0 0 26px; }
.h2num { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: var(--ink); margin: 34px 0 16px; }
.h2num span { font-family: "Space Grotesk", sans-serif; color: var(--grass); }
.prose p { margin: 0 0 16px; }

/* Passos numerados */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.step {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow);
}
.step__num {
  flex: none; width: 30px; height: 30px; border-radius: 9px;
  background: var(--grass); color: #fff;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 15px;
}
.step__title { font-weight: 700; color: var(--ink); margin: 3px 0 3px; }
.step__desc  { color: var(--muted); font-size: 15px; margin: 0; }

/* Caixas (callouts) */
.callout {
  display: flex; gap: 13px; align-items: flex-start;
  border-radius: var(--radius); padding: 16px 18px; margin: 22px 0;
}
.callout__icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; }
.callout__icon svg { width: 16px; height: 16px; }
.callout__title { font-weight: 700; margin: 0 0 3px; }
.callout__text { margin: 0; font-size: 15px; }
.callout--tip    { background: var(--grassBg); border: 1px solid #CDEBD9; }
.callout--tip .callout__icon { background: var(--grass); color: #fff; }
.callout--tip .callout__title { color: var(--grassDk); }
.callout--warn   { background: var(--warnBg); border: 1px solid #F1D6BE; }
.callout--warn .callout__icon { background: var(--warn); color: #fff; }
.callout--warn .callout__title { color: #B5601F; }
.callout--ticket { background: var(--cream); border: 1px dashed #D8C58C; }
.callout--ticket .callout__icon { background: var(--goldDk); color: #fff; }
.callout--ticket .callout__title { color: var(--goldDk); }

/* Placeholder de imagem */
.imgph {
  border: 2px dashed #CFCBBC; border-radius: var(--radius);
  background: #FBFAF6; color: var(--muted);
  padding: 30px 18px; text-align: center; font-size: 14px; margin: 22px 0;
}
.imgph svg { width: 26px; height: 26px; opacity: .5; margin-bottom: 8px; }

/* Navegação anterior / seguinte */
.pager { display: grid; gap: 12px; margin: 36px 0 10px; }
@media (min-width: 640px) { .pager { grid-template-columns: 1fr 1fr; } }
.pager__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.pager__item:hover { transform: translateY(-2px); }
.pager__dir { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pager__title { font-weight: 700; color: var(--ink); margin-top: 4px; }
.pager__item--next { text-align: right; }

/* ===========================================================
   DRAWER (menu lateral de capítulos)
   =========================================================== */
.drawer { position: fixed; inset: 0; z-index: 50; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__overlay {
  position: absolute; inset: 0; background: rgba(14,40,24,.5);
  opacity: 0; transition: opacity .25s ease;
}
.drawer.open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(360px, 86vw);
  background: var(--bg);
  box-shadow: -12px 0 40px rgba(14,40,24,.18);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.drawer__close { background: none; border: 0; cursor: pointer; color: var(--ink); padding: 6px; border-radius: 8px; }
.drawer__close:hover { background: rgba(14,40,24,.06); }
.drawer__close svg { width: 20px; height: 20px; display: block; }
.drawer__list { list-style: none; margin: 0; padding: 10px; overflow-y: auto; }
.drawer__item { display: flex; align-items: center; gap: 13px; padding: 12px 12px; border-radius: 12px; color: var(--ink2); }
.drawer__item:hover { background: rgba(14,40,24,.05); }
.drawer__item.active { background: var(--grassBg); color: var(--grassDk); font-weight: 700; }
.drawer__item .n { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--muted); width: 22px; text-align: center; flex: none; }
.drawer__item.active .n { color: var(--grassDk); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

.step__num svg { width: 16px; height: 16px; }


/* ---------- Screenshots (mockup de ecrã) ---------- */
.shot {
  display: block;
  width: 260px;
  max-width: 78%;
  margin: 26px auto;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(14,40,24,.18), 0 2px 8px rgba(14,40,24,.10);
}
@media (max-width: 480px) { .shot { width: 72%; } }

/* ===========================================================
   HOMEPAGE / LANDING (lp-*)
   =========================================================== */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 10px; font-weight: 700; font-size: 14px; z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--grass); outline-offset: 2px; }

/* ---- Topbar (landing variant) ---- */
.lp-nav { display: none; align-items: center; gap: 26px; margin-left: 8px; }
.lp-nav a { color: #C9D2CC; font-size: 14.5px; font-weight: 600; }
.lp-nav a:hover { color: #fff; }
@media (min-width: 860px) { .lp-nav { display: flex; } }

.lp-menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
}
.lp-menu-btn svg { width: 18px; height: 18px; }
@media (min-width: 860px) { .lp-menu-btn { display: none; } }

.lp-mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 18px 16px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a {
  color: #E7ECE9; font-weight: 600; font-size: 15.5px; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 860px) { .lp-mobile-menu { display: none !important; } }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15.5px;
  padding: 14px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--grass); color: #06210F; box-shadow: 0 8px 20px rgba(31,182,88,.28); }
.btn--primary:hover { background: #29C566; }
.btn--ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(14,40,24,.22); }
.btn--dark:hover { background: #163826; }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 14px; }

/* ---- Hero (landing) ---- */
.lp-hero { padding: 40px 20px 0; }
.lp-hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 40px; align-items: center;
  padding-bottom: 48px;
}
@media (min-width: 900px) {
  .lp-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 24px; padding-bottom: 70px; }
}
.lp-hero__title { font-family: "Archivo Black", sans-serif; font-size: 44px; line-height: 1.04; letter-spacing: -.02em; margin: 0 0 18px; }
@media (min-width: 640px) { .lp-hero__title { font-size: 58px; } }
.lp-hero__title .dot { color: var(--grass); }
.lp-hero__sub { font-size: 18px; color: #C9D2CC; max-width: 480px; margin: 0 0 30px; }
.lp-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.lp-hero__note { font-size: 13.5px; color: #A9B8AF; }
.lp-hero__visual { position: relative; display: flex; justify-content: center; }
.lp-hero__visual .shot { margin: 0; width: 240px; }
.lp-hero__visual .shot--back {
  position: absolute; top: 34px; left: 6%; z-index: 0;
  opacity: .55; filter: saturate(.85);
  transform: rotate(-6deg);
}
.lp-hero__visual .shot--front { position: relative; z-index: 1; }
@media (max-width: 899px) { .lp-hero__visual { display: none; } }

.lp-trustbar {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0 26px; max-width: var(--maxw); margin: 0 auto;
}
.lp-trustbar span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: #A9B8AF; font-weight: 600; }
.lp-trustbar svg { width: 16px; height: 16px; color: var(--grass); flex: none; }

/* ---- Secções gerais ---- */
.lp-section { padding: 74px 20px; }
.lp-section--tight { padding: 56px 20px; }
.lp-section--surface { background: var(--surface); }
.lp-section--ink { background: var(--ink); color: #fff; }
.lp-inner { max-width: var(--maxw); margin: 0 auto; }
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grassDk); margin: 0 0 12px;
}
.lp-section--ink .lp-eyebrow { color: #8FE7B0; }
.lp-h2 {
  font-family: "Archivo Black", sans-serif; letter-spacing: -.02em; line-height: 1.08;
  font-size: 30px; margin: 0 0 14px; max-width: 640px;
}
@media (min-width: 640px) { .lp-h2 { font-size: 38px; } }
.lp-lede { font-size: 17.5px; color: var(--ink2); max-width: 560px; margin: 0 0 8px; }
.lp-section--ink .lp-lede { color: #C9D2CC; }
.lp-head { margin-bottom: 40px; }
.lp-head--center { text-align: center; }
.lp-head--center .lp-h2, .lp-head--center .lp-lede { margin-left: auto; margin-right: auto; }

/* ---- Problema / Solução ---- */
.lp-compare { display: grid; gap: 18px; }
@media (min-width: 720px) { .lp-compare { grid-template-columns: 1fr 1fr; gap: 22px; } }
.lp-compare__card { border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); }
.lp-compare__card--bad { background: #FBF6F0; border-color: #F1D6BE; }
.lp-compare__card--good { background: var(--grassBg); border-color: #CDEBD9; }
.lp-compare__tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.lp-compare__card--bad .lp-compare__tag { color: #B5601F; }
.lp-compare__card--good .lp-compare__tag { color: var(--grassDk); }
.lp-compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lp-compare__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--ink2); }
.lp-compare__list svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.lp-compare__card--bad svg { color: #C4602A; }
.lp-compare__card--good svg { color: var(--grassDk); }

/* ---- Funcionalidades ---- */
.lp-features { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lp-features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .lp-features { grid-template-columns: repeat(3, 1fr); } }
.lp-feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-feature:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(14,40,24,.09); }
.lp-feature__icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--grassBg);
  color: var(--grassDk); display: grid; place-items: center; margin-bottom: 16px;
}
.lp-feature__icon svg { width: 23px; height: 23px; }
.lp-feature__title { font-weight: 800; font-size: 17px; color: var(--ink); margin: 0 0 6px; }
.lp-feature__desc { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---- Como funciona ---- */
.lp-how { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .lp-how { grid-template-columns: .95fr 1.05fr; gap: 40px; } }
.lp-how__steps { display: grid; gap: 22px; counter-reset: lpstep; }
.lp-how__step { display: flex; gap: 16px; }
.lp-how__num {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 17px;
}
.lp-how__step:nth-child(2) .lp-how__num { background: var(--grassDk); }
.lp-how__step:nth-child(3) .lp-how__num { background: var(--goldDk); }
.lp-how__title { font-weight: 800; font-size: 17.5px; color: var(--ink); margin: 4px 0 4px; }
.lp-how__desc { font-size: 15px; color: var(--muted); margin: 0; }
.lp-how__shots { display: flex; justify-content: center; gap: -20px; position: relative; min-height: 320px; }
.lp-how__shots .shot { position: absolute; }
.lp-how__shots .shot:nth-child(1) { left: 6%; top: 26px; transform: rotate(-7deg); opacity: .7; z-index: 1; width: 200px; }
.lp-how__shots .shot:nth-child(2) { left: 50%; top: 0; transform: translateX(-50%); z-index: 3; width: 230px; }
.lp-how__shots .shot:nth-child(3) { right: 4%; top: 26px; transform: rotate(7deg); opacity: .7; z-index: 1; width: 200px; }
@media (max-width: 640px) { .lp-how__shots { display: none; } }

/* ---- Prova social ---- */
.lp-testimonials { display: grid; gap: 16px; }
@media (min-width: 720px) { .lp-testimonials { grid-template-columns: repeat(3, 1fr); } }
.lp-testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px; box-shadow: var(--shadow);
}
.lp-testimonial__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.lp-testimonial__stars svg { width: 15px; height: 15px; fill: var(--gold); }
.lp-testimonial__quote { font-size: 15px; color: var(--ink2); margin: 0 0 16px; line-height: 1.55; }
.lp-testimonial__who { display: flex; align-items: center; gap: 10px; }
.lp-testimonial__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grassBg); color: var(--grassDk);
  display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: none;
}
.lp-testimonial__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.lp-testimonial__meta { font-size: 12.5px; color: var(--muted); }

/* ---- CTA final ---- */
.lp-final {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: 54px 30px; text-align: center;
  max-width: var(--maxw); margin: 0 auto;
}
.lp-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 140% at 50% 120%, rgba(31,182,88,.45), rgba(31,182,88,0) 60%);
  pointer-events: none;
}
.lp-final__inner { position: relative; }
.lp-final .lp-h2 { margin-left: auto; margin-right: auto; color: #fff; }
.lp-final .lp-lede { color: #C9D2CC; margin-left: auto; margin-right: auto; }
.lp-final__ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---- Footer (landing, estendido) ---- */
.lp-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 50px 20px 30px; }
.lp-footer__top { display: grid; gap: 32px; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 720px) { .lp-footer__top { grid-template-columns: 1.3fr 1fr 1fr; } }
.lp-footer__brand { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.lp-footer__desc { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.lp-footer__col h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.lp-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lp-footer__col a { font-size: 14.5px; color: var(--ink2); font-weight: 600; }
.lp-footer__col a:hover { color: var(--grassDk); }
.lp-footer__social { display: flex; gap: 10px; margin-top: 6px; }
.lp-footer__social a {
  width: 36px; height: 36px; border-radius: 10px; background: var(--grassBg); color: var(--grassDk);
  display: grid; place-items: center;
}
.lp-footer__social svg { width: 17px; height: 17px; }
.lp-footer__bottom {
  max-width: var(--maxw); margin: 34px auto 0; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
}

/* ---- Reveal on scroll ----
   Por omissão o conteúdo está sempre visível (funciona sem JS).
   Só fica oculto-antes-de-animar quando o JS confirma que está ativo
   (classe "js" adicionada no <html> logo no arranque). */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
