/* ============================================================
   VISTARE — pré-lançamento · luxo editorial
   Paleta quente (areia/greige/taupe + creme) + terracota queimado
   Display: Bodoni Moda · Corpo: Hanken Grotesk
   ============================================================ */

:root {
  /* — Cromático — Sálvia & Argila · luxo de estúdio de arquitetura —
     Verde profundo = tom nobre (faixas escuras) · Argila = acento quente */
  --paper:      #ECE7D9;   /* greige neutro, levemente esverdeado */
  --paper-2:    #E4DDCC;   /* superfície mais escura              */
  --sand:       #DFD6C0;   /* areia                               */
  --taupe:      #C7BCA1;   /* taupe greige                        */
  --cream:      #FBF8F0;   /* creme luminoso (cards claros)       */
  --ivory:      #FDFBF4;   /* marfim mais claro                   */
  --ink:        #23291F;   /* verde-quase-preto (texto títulos)   */
  --ink-soft:   #474C3D;   /* texto corpo (verde-grafite)         */
  --muted:      #847E6D;   /* secundário                          */
  --espresso:   #16221B;   /* faixas escuras — pinheiro profundo  */
  --espresso-2: #25342B;   /* sálvia escura                       */
  --line:       rgba(35,41,31,.16);
  --line-soft:  rgba(35,41,31,.085);

  /* — Latão envelhecido: acento metálico FINO (só filetes/ornamentos) — */
  --brass:      #A98C54;
  --brass-soft: rgba(169,140,84,.42);

  /* — Acento (tweakable) — só --accent é definido; o resto deriva */
  --accent:     #A85A3C;   /* argila terracota                    */
  --accent-deep: color-mix(in srgb, var(--accent) 74%, #160d08);
  --accent-tint: color-mix(in srgb, var(--accent) 12%, transparent);
  --accent-warm: color-mix(in srgb, var(--accent) 80%, #e0a060);

  /* — Tipografia (display tweakable) — */
  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* — Textura — */
  --grain: .55;            /* intensidade do grão (tweakable) */

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--paper);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Profundidade do fundo — gradientes suaves, nada chapado */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 12% -8%, #FBF5E9 0%, rgba(251,245,233,0) 44%),
    radial-gradient(130% 100% at 110% 2%, #E7D8BD 0%, rgba(231,216,189,0) 50%),
    radial-gradient(150% 120% at 86% 114%, #DCCBAC 0%, rgba(220,203,172,0) 54%),
    radial-gradient(100% 80% at 50% 50%, rgba(168,90,60,.035) 0%, rgba(168,90,60,0) 60%),
    var(--paper);
}

/* Grão fino de papel/linho */
.grain {
  position: fixed;
  inset: -120px;
  z-index: 2147483000;
  pointer-events: none;
  opacity: var(--grain);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--cream); }

/* — Tipografia base — */
h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  letter-spacing: -.012em;
  text-wrap: balance;
}
em { font-style: italic; }
p { margin: 0; }

a { color: inherit; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: .65;
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: .65;
}

/* — Layout — */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  background: linear-gradient(180deg, rgba(243,236,223,.86), rgba(243,236,223,.5));
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .42em;
}
.logo .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  align-self: center;
}
.nav-cta {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  text-decoration: none;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .35s ease, color .35s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.4rem);
  line-height: 1.0;
  font-weight: 500;
}
.hero h1 em {
  color: var(--accent);
  font-weight: 500;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 30em;
  line-height: 1.6;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

/* — Formulário — */
.lead-form { margin-top: 38px; max-width: 30rem; }
.field-row {
  display: flex;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 14px 34px -22px rgba(42,36,30,.5);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 18px 40px -22px rgba(168,90,60,.55);
}
.field-row input[type=email] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
}
.field-row input::placeholder { color: var(--muted); }
.btn-primary {
  flex-shrink: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  color: var(--cream);
  background: color-mix(in srgb, var(--accent) 86%, #160d08);
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent) 35%, transparent);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s ease, transform .2s ease, box-shadow .3s ease;
  box-shadow: 0 10px 24px -12px rgba(168,90,60,.7);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 30rem;
}
.consent input { margin-top: 3px; accent-color: var(--accent); flex-shrink: 0; }
.consent a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }

.form-note {
  margin-top: 16px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.form-note strong { color: var(--ink); font-weight: 600; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--ink);
  max-width: 30rem;
  animation: rise .6s cubic-bezier(.2,.7,.3,1) both;
}
.form-success.show { display: flex; }
.form-success .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: .8rem;
}
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* — Imagem hero + card flutuante — */
.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--taupe);
  box-shadow: 0 50px 90px -50px rgba(42,36,30,.7), 0 2px 0 rgba(255,255,255,.4) inset;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,36,30,0) 55%, rgba(42,36,30,.22));
  pointer-events: none;
}
.photo-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(251,247,239,.4);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.photo-tag {
  position: absolute;
  top: 28px; left: 28px;
  z-index: 3;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(42,36,30,.42);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(251,247,239,.25);
  padding: 7px 14px;
  border-radius: 999px;
}
.hero-photo .photo-tag { top: 20px; left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; max-width: calc(100% - 32px); text-align: center; }

/* Card flutuante de assinaturas */
.sign-card {
  position: absolute;
  left: -32px;
  bottom: 40px;
  z-index: 4;
  width: min(290px, 78%);
  background: rgba(251,247,239,.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 30px 60px -34px rgba(42,36,30,.75);
}
.sign-card .sc-label {
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sign-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.sign-row + .sign-row { border-top: 1px solid var(--line-soft); }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--cream);
  flex-shrink: 0;
}
.avatar.a { background: var(--accent); }
.avatar.b { background: #5C6B57; }
.sign-row .who { flex: 1; line-height: 1.2; }
.sign-row .who b { display: block; color: var(--ink); font-weight: 600; font-size: .92rem; }
.sign-row .who span { font-size: .72rem; color: var(--muted); }
.sign-row .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: .68rem;
  flex-shrink: 0;
}

/* ============================================================
   FAIXA DE CONFIANÇA
   ============================================================ */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251,247,239,.4);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 8px;
  justify-content: center;
}
.trust-item + .trust-item { border-left: 1px solid var(--line-soft); }
.trust-item .ti-ico {
  flex-shrink: 0;
  color: var(--accent);
}
.trust-item span {
  font-size: clamp(.92rem, 1.1vw, 1.02rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .005em;
}

/* ============================================================
   SECÇÕES GENÉRICAS
   ============================================================ */
.section-pad { padding: clamp(72px, 10vw, 132px) 0; }
.section-head { max-width: 40rem; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  margin-top: 22px;
}
.section-head h2 em { color: var(--accent); }
.section-head p { margin-top: 20px; font-size: 1.08rem; color: var(--ink-soft); }

/* ============================================================
   COMO FUNCIONA — linhas editoriais alternadas com foto
   ============================================================ */
.how {
  margin-top: clamp(54px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 120px);
}
.how-row {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
/* alterna o lado da foto */
.how-row:nth-child(even) .how-media { order: 2; }

/* — Texto do passo — */
.how-text { max-width: 27rem; }
.how-row:nth-child(even) .how-text { margin-left: auto; }
.how-num {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.how-num .n {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: .9;
  color: var(--accent);
  font-feature-settings: "lnum" 1;
}
.how-num .n-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brass-soft), transparent);
}
.how-text h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-top: 20px;
  line-height: 1.12;
}
.how-text h3 em { color: var(--accent); }
.how-text p { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }

/* — Mídia do passo — */
.how-media { position: relative; }
.how-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--taupe);
  box-shadow: 0 44px 80px -50px rgba(33,27,20,.7), 0 2px 0 rgba(255,255,255,.35) inset;
}
.how-photo img { width: 100%; height: 100%; object-fit: cover; }
.how-photo .photo-frame { inset: 12px; }
.how-photo .photo-tag {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 5;
  white-space: nowrap;
}

/* — Card de vidro do momento colaborativo — */
.moment {
  position: absolute;
  z-index: 6;
  width: min(280px, 80%);
  background: rgba(252,248,240,.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 30px 60px -34px rgba(33,27,20,.8);
}
.how-row:nth-child(odd) .moment { right: -28px; bottom: 36px; }
.how-row:nth-child(even) .moment { left: -28px; bottom: 36px; }
.moment .m-label {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.moment .m-label .dotg {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4FA66B;
  box-shadow: 0 0 0 3px rgba(79,166,107,.18);
}
/* linha WhatsApp */
.m-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.m-msg .wa {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1FA855;
  display: grid; place-items: center;
}
.m-bubble {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 4px 12px 12px 12px;
  padding: 8px 11px;
  font-size: .82rem;
  line-height: 1.35;
  color: var(--ink);
}
.m-bubble b { font-weight: 600; }
.m-bubble .m-time { display: block; font-size: .62rem; color: var(--muted); margin-top: 3px; }

/* duas pessoas registrando */
.m-pair { display: flex; flex-direction: column; gap: 10px; }
.m-person { display: flex; align-items: center; gap: 11px; }
.m-person .avatar { width: 30px; height: 30px; font-size: .85rem; }
.m-person .who { flex: 1; line-height: 1.15; }
.m-person .who b { display: block; color: var(--ink); font-weight: 600; font-size: .85rem; }
.m-person .who span { font-size: .68rem; color: var(--muted); }
.m-person .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; font-size: .62rem;
}
.m-progress {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .72rem; color: var(--muted);
}
.m-progress .room { color: var(--ink); font-weight: 600; }
.m-bars { display: flex; gap: 3px; margin-top: 8px; }
.m-bars i { height: 3px; flex: 1; border-radius: 2px; background: var(--line); }
.m-bars i.on { background: var(--accent); }

/* documento assinado */
.m-doc { display: flex; align-items: center; gap: 13px; }
.m-doc .pdf {
  flex-shrink: 0;
  width: 38px; height: 46px;
  border-radius: 4px;
  background: linear-gradient(160deg, #fff, var(--sand));
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 6px 14px -8px rgba(33,27,20,.5);
}
.m-doc .pdf::before {
  content: "";
  position: absolute; top: 0; right: 0;
  border-width: 0 11px 11px 0;
  border-style: solid;
  border-color: var(--taupe) var(--paper) var(--paper) var(--taupe);
}
.m-doc .pdf::after {
  content: "PDF";
  position: absolute; bottom: 6px; left: 0; right: 0;
  text-align: center;
  font-size: .5rem; letter-spacing: .06em; font-weight: 700;
  color: var(--accent);
}
.m-doc .d-info b { display: block; color: var(--ink); font-size: .84rem; font-weight: 600; white-space: nowrap; }
.m-doc .d-sign { display: flex; gap: 14px; margin-top: 7px; }
.m-doc .d-sign span { font-size: .72rem; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }
.m-doc .d-sign span::before {
  content: "✓"; color: var(--accent); font-size: .68rem;
}

/* ============================================================
   DIFERENCIAL — comparação
   ============================================================ */
.compare {
  margin-top: clamp(48px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
.cmp-card {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.cmp-card.weak { background: linear-gradient(165deg, rgba(252,248,240,.55), rgba(225,213,190,.45)); }
.cmp-card.strong {
  background:
    radial-gradient(62% 52% at 90% 6%, rgba(168,90,60,.26), transparent 62%),
    linear-gradient(165deg, var(--espresso-2), var(--espresso));
  border-color: transparent;
  color: #E9DBC4;
}
.cmp-card .cmp-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}
.cmp-card.weak .cmp-tag { color: var(--muted); }
.cmp-card.strong .cmp-tag { color: var(--accent-warm); }
.cmp-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .9rem;
}
.cmp-card.weak .cmp-mark { background: rgba(131,117,103,.18); color: var(--muted); }
.cmp-card.strong .cmp-mark { background: var(--accent); color: var(--cream); }
.cmp-card h3 {
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  margin-top: 22px;
  line-height: 1.12;
}
.cmp-card.strong h3 { color: #FBF7EF; }
.cmp-card.strong h3 em { color: var(--accent-warm); }
.cmp-card p {
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.cmp-card.weak p { color: var(--ink-soft); }
.cmp-card.strong p { color: #CBBA9D; }
.cmp-foot {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
  max-width: 38rem;
  margin-left: auto; margin-right: auto;
}
.cmp-foot em { color: var(--accent); }

/* ============================================================
   CREDIBILIDADE — bloco editorial com imagem
   ============================================================ */
.cred {
  position: relative;
  background: linear-gradient(168deg, var(--espresso-2), var(--espresso) 60%, #160f0a);
  color: #CBBA9D;
  isolation: isolate;
}
/* filete de latão no topo da faixa escura */
.cred::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 18%, var(--brass) 82%, transparent);
  opacity: .55;
}
/* brilho terracota sutil */
.cred::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 60% at 88% 8%, rgba(168,90,60,.22), transparent 60%);
}
.cred-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.cred-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--taupe);
  box-shadow: 0 50px 90px -56px rgba(42,36,30,.7);
  position: relative;
}
.cred-photo img { width: 100%; height: 100%; object-fit: cover; }
.cred-photo .photo-frame { inset: 12px; border-color: rgba(176,138,82,.4); }
.cred .kicker { color: var(--accent-warm); }
.cred .kicker .rn { color: var(--accent-warm); }
.cred .kicker .kline { background: var(--accent-warm); }
.cred-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.1; margin-top: 22px; color: #FBF6EC; }
.cred-head h2 em { color: var(--accent-warm); }
.cred-points { margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.cred-point { display: flex; gap: 16px; }
.cred-point .cp-mark {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: .9rem;
  margin-top: 2px;
}
.cred-point p { font-size: 1.04rem; color: #C4B398; }
.cred-point p strong { color: #FBF6EC; font-weight: 600; }
.cred-disclaimer {
  margin-top: 30px;
  font-size: .84rem;
  font-style: italic;
  color: #9C8D78;
  font-family: var(--display);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final {
  position: relative;
  text-align: center;
  padding: clamp(80px, 11vw, 150px) 0;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(168,90,60,.10), transparent 60%),
    linear-gradient(180deg, var(--paper-2), var(--sand));
}
.final .eyebrow { margin-bottom: 24px; }
.final h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
}
.final h2 em { color: var(--accent); }
.final-sub {
  margin: 24px auto 0;
  max-width: 34rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}
.final .lead-form { margin: 40px auto 0; }
.final .consent { margin-left: auto; margin-right: auto; justify-content: center; }
.final .form-note { text-align: center; }
.final .form-success { margin-left: auto; margin-right: auto; }
/* CTA standalone (hero + final): respiro, tamanho e presença */
.hero-cta { margin-top: 32px; }
.hero-cta .btn-primary, .final .reveal > .btn-primary { display: inline-block; padding: 18px 42px; font-size: 1.06rem; box-shadow: 0 16px 34px -14px rgba(168,90,60,.78); }
.hero-cta .form-note { margin-top: 15px; }
.final .reveal > .btn-primary { margin-top: 40px; }
.final .form-note { margin-top: 18px; }
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.scarcity .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(168,90,60,.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(168,90,60,.5); }
  70% { box-shadow: 0 0 0 9px rgba(168,90,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,90,60,0); }
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--espresso-2), var(--espresso));
  color: #B7A78F;
  padding: clamp(48px, 6vw, 72px) 0 40px;
}
.footer::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 20%, var(--brass) 80%, transparent);
  opacity: .5;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer .logo { color: var(--cream); }
.footer .logo .dot { background: var(--accent); }
.footer-tag { margin-top: 16px; max-width: 24rem; font-size: .96rem; color: #A99B89; line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; gap: 12px; text-align: right; font-size: .9rem; }
.footer-links a { color: #C9BCA8; text-decoration: none; transition: color .25s ease; }
.footer-links a:hover { color: var(--cream); }
.footer-fine {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,247,239,.12);
  font-size: .78rem;
  color: #8A7C6B;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: space-between;
}

/* ============================================================
   REVEAL on scroll
   ============================================================ */
/* Reveal só atua quando o JS confirma (html.js-anim). Sem JS, ou se algo
   falhar, o conteúdo aparece normalmente — nunca fica preso invisível. */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
html.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scarcity .pulse { animation: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 30rem; }
  .hero-photo { aspect-ratio: 5 / 4; }
  .sign-card { left: auto; right: 16px; bottom: 16px; }
  .cred-grid { grid-template-columns: 1fr; gap: 40px; }
  .cred-photo { aspect-ratio: 16 / 11; max-width: 32rem; }
  .compare { grid-template-columns: 1fr; }
  .how-row { grid-template-columns: 1fr; gap: 28px; }
  .how-row:nth-child(even) .how-media { order: 0; }
  .how-row:nth-child(even) .how-text { margin-left: 0; }
  .how-media { max-width: 32rem; }
  .how-photo { aspect-ratio: 4 / 3; }
  .how-row:nth-child(odd) .moment,
  .how-row:nth-child(even) .moment { left: auto; right: 14px; bottom: 14px; }
}

@media (max-width: 680px) {
  .nav-inner { padding: 14px var(--gutter); }
  .logo { font-size: 1.42rem; }
  .nav-cta { padding: 9px 16px; font-size: .8rem; }
  .field-row { flex-direction: column; border-radius: 18px; padding: 14px; gap: 12px; }
  .field-row input[type=email] { padding: 6px 8px; text-align: center; }
  .btn-primary { width: 100%; padding: 15px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; padding: 20px var(--gutter); }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line-soft); }
  .footer-grid { flex-direction: column; }
  .footer-links { text-align: left; }
  .sign-card { position: relative; left: 0; right: 0; bottom: 0; width: auto; margin-top: -36px; margin-left: 16px; margin-right: 16px; }
}
