/* ============================================================
   LP NR-1 — De Paiva Advocacia
   Page-specific styles. Tokens from colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  overflow-x: hidden;
}

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

/* ── Layout primitives ───────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 80px 0; }

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-tight { padding: 56px 0; }
  .container, .container-narrow { padding: 0 24px; }
}

/* ── Atmosphere & motifs ─────────────────────────────── */
.bg-navy-deep { background: var(--navy-deep); color: var(--fg-on-dark); }
.bg-navy-mid  { background: var(--navy-mid);  color: var(--fg-on-dark); }
.bg-offwhite  { background: var(--off-white); color: var(--fg-primary); }
.bg-white     { background: var(--white);     color: var(--fg-primary); }

.gold-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold-dark);
  margin: 0 0 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.eyebrow-lg {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}
.eyebrow-lg.on-dark { color: var(--gold-light); }

.display-1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  font-weight: 400;
}
.lead.on-dark { color: rgba(241,250,238,0.82); }

p.body, .body-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg-secondary);
}
.body-text.on-dark, p.body.on-dark { color: rgba(241,250,238,0.75); }

/* ── Header ──────────────────────────────────────────── */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(26,36,63,0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176,124,75,0.18);
}
.lp-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-header__logo img { height: 36px; }
.lp-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(241,250,238,0.06);
  border: 1px solid rgba(176,124,75,0.4);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.lp-header__cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.lp-header__cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
}

@media (max-width: 540px) {
  .lp-header__cta span.label-long { display: none; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('assets/photo-desk.png');
  filter: saturate(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,36,63,0.92) 0%, rgba(26,36,63,0.78) 45%, rgba(26,36,63,0.55) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(176,124,75,0.18) 0%, transparent 60%);
}
.hero__noise {
  display: none;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(241,250,238,0.06);
  border: 1px solid rgba(176,124,75,0.5);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241,250,238,0.9);
  margin-bottom: 32px;
}
.hero__chip-tag {
  background: var(--gold-dark);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  color: var(--off-white);
  margin: 0 0 28px;
  max-width: 18ch;
}
.hero__title .accent-money {
  color: var(--gold-light);
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero__title .accent-money::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold-dark);
  opacity: 0.7;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.35vw, 1.3125rem);
  line-height: 1.55;
  color: rgba(241,250,238,0.82);
  max-width: 56ch;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero__meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(241,250,238,0.65);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .bullet { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dark); }

/* Hero LIGHT variant (Tweak) */
.hero.is-light .hero__bg { display: none; }
.hero.is-light .hero__overlay {
  background:
    linear-gradient(180deg, #F1FAEE 0%, #FFFFFF 70%);
}
.hero.is-light .hero__noise { opacity: 0.04; }
.hero.is-light .hero__title { color: var(--navy-deep); }
.hero.is-light .hero__title .accent-money { color: var(--gold-dark); }
.hero.is-light .hero__title .accent-money::after { background: var(--gold-muted); }
.hero.is-light .hero__subtitle { color: var(--fg-secondary); }
.hero.is-light .hero__chip {
  background: rgba(176,124,75,0.08);
  color: var(--navy-deep);
  border-color: rgba(176,124,75,0.5);
}
.hero.is-light .hero__meta { color: var(--fg-muted); }
.hero.is-light .lp-header {
  background: rgba(255,255,255,0.92);
  border-bottom-color: rgba(26,36,63,0.08);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 8px 28px rgba(176,124,75,0.32);
  position: relative;
  overflow: hidden;
}
.btn-cta:hover {
  background: #9A6B3C;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(176,124,75,0.42);
}
.btn-cta:active { transform: translateY(0); }
.btn-cta .arrow { transition: transform 0.22s ease; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-cta.btn-cta-lg {
  font-size: 15px;
  padding: 22px 36px;
}

.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(241,250,238,0.85);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-secondary-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-dark);
}

/* ── Value proposition (Bloco 3) ─────────────────────── */
.value-prop {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(176,124,75,0.18);
}
.value-prop__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.value-prop__lead p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--off-white);
  margin: 0;
}
.value-prop__lead p + p { margin-top: 18px; }
.value-prop__body p {
  color: rgba(241,250,238,0.78);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 20px;
}
.value-prop__body p:last-child { margin-bottom: 0; }
.value-prop__body strong { color: var(--gold-light); font-weight: 700; }

@media (max-width: 900px) {
  .value-prop__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Pain checklist (Bloco 5) ────────────────────────── */
.pain { background: var(--off-white); position: relative; }
.pain__header { max-width: 760px; margin-bottom: 64px; }
.pain__header h2 { color: var(--navy-deep); }
.pain__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}
.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dark);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--navy-deep);
  font-weight: 500;
  transition: all 0.2s ease;
}
.pain__item:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-md);
}
.pain__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(176,124,75,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pain__check svg { width: 12px; height: 12px; color: var(--gold-dark); }
.pain__conclusion {
  margin-top: 16px;
  padding: 32px;
  background: var(--navy-deep);
  color: var(--off-white);
  border-radius: 8px;
  border-left: 4px solid var(--gold-dark);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.pain__conclusion strong { color: var(--gold-light); }
.pain__conclusion .icon-warn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(176,124,75,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pain__conclusion p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(241,250,238,0.92);
}

@media (max-width: 720px) {
  .pain__list { grid-template-columns: 1fr; }
  .pain__conclusion { grid-template-columns: 1fr; }
}

/* ── Solution (Bloco 6) ──────────────────────────────── */
.solution {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.solution__bg-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background-image: url('assets/photo-library.png');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  mask-image: linear-gradient(90deg, transparent 0%, black 50%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 50%);
}
.solution__inner { position: relative; z-index: 2; max-width: 760px; }
.solution__inner h2 { color: var(--off-white); margin-bottom: 32px; }
.solution__inner h2 .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }
.solution__inner p { color: rgba(241,250,238,0.82); font-size: 1.125rem; line-height: 1.7; margin: 0 0 20px; }
.solution__highlight {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--off-white);
  background: rgba(176,124,75,0.14);
  border-left: 3px solid var(--gold-dark);
  padding: 20px 24px;
  margin: 16px 0 24px;
  line-height: 1.4;
}
.solution__tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
}
.solution__tag {
  display: inline-flex; align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(176,124,75,0.4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241,250,238,0.85);
}
.solution__tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dark); }

/* ── Benefits (Bloco 7) ──────────────────────────────── */
.benefits { background: var(--white); color: var(--fg-primary); }
.benefits__header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.benefits__header h2 { color: var(--navy-deep); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.benefit {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.2s ease;
}
.benefit:hover { background: #fbf9f5; }
.benefit__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.benefit h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-deep);
}
.benefit p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg-secondary);
}

@media (max-width: 900px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .benefits__grid { grid-template-columns: 1fr; } }

/* ── Social proof / numbers (Bloco 8) ────────────────── */
.proof {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.proof__bg {
  position: absolute; inset: 0;
  background-image: url('assets/photo-meeting.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.proof__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,63,0.85) 0%, rgba(26,36,63,0.96) 100%);
}
.proof__inner { position: relative; z-index: 2; }
.proof__header { text-align: center; max-width: 760px; margin: 0 auto 80px; }
.proof__header h2 { color: var(--off-white); }
.proof__header p { color: rgba(241,250,238,0.7); margin-top: 16px; font-size: 1.0625rem; }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: end;
}
.stat { text-align: left; position: relative; }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--gold-dark);
}
.stat__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin: 24px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__big .currency {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--gold-light);
  margin-right: 6px;
  letter-spacing: 0.02em;
}
.stat__big .unit {
  font-size: 0.32em;
  font-weight: 500;
  color: rgba(241,250,238,0.55);
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.stat__caption {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(241,250,238,0.72);
  margin: 16px 0 0;
  max-width: 32ch;
}

.proof__footnote {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(176,124,75,0.2);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(241,250,238,0.55);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .proof__stats { grid-template-columns: 1fr; gap: 56px; }
  .stat__big { font-size: clamp(3rem, 14vw, 5rem); }
}

/* ── Offer table (Bloco 9) ───────────────────────────── */
.offer { background: var(--off-white); color: var(--fg-primary); }
.offer__header { max-width: 760px; margin-bottom: 56px; }
.offer__header h2 { color: var(--navy-deep); }
.offer__table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.offer__row {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.offer__row:last-child { border-bottom: none; }
.offer__row:hover { background: #fdfcfa; }
.offer__row-head, .offer__row-body { padding: 28px 32px; }
.offer__row-head {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(176,124,75,0.04);
  border-right: 1px solid var(--border);
}
.offer__row-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  flex-shrink: 0;
  min-width: 28px;
}
.offer__row-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--navy-deep);
}
.offer__row-body {
  display: flex; align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fg-secondary);
}
.offer__note {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-dark);
  border-radius: 6px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.offer__note p { margin: 0; color: var(--navy-deep); font-size: 1rem; line-height: 1.55; }
.offer__note strong { font-weight: 700; color: var(--navy-deep); }

@media (max-width: 720px) {
  .offer__row { grid-template-columns: 1fr; }
  .offer__row-head { border-right: none; border-bottom: 1px solid var(--border); }
  .offer__note { grid-template-columns: 1fr; }
}

/* ── Objections (Bloco 10) ───────────────────────────── */
.objections { background: var(--navy-deep); color: var(--off-white); }
.objections__header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.objections__header h2 { color: var(--off-white); }
.objections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.objection {
  background: rgba(241,250,238,0.04);
  border: 1px solid rgba(176,124,75,0.22);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.objection__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--gold-light);
  margin: 0;
  position: relative;
  padding-top: 28px;
}
.objection__quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: 'Georgia', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--gold-dark);
  opacity: 0.55;
}
.objection__answer {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(241,250,238,0.82);
  margin: 0;
}
@media (max-width: 900px) { .objections__grid { grid-template-columns: 1fr; } }

/* ── Guarantee (Bloco 11) ────────────────────────────── */
.guarantee {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(176,124,75,0.18);
}
.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.guarantee__seal {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(176,124,75,0.32), rgba(176,124,75,0.08) 60%, transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee__seal-ring {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(176,124,75,0.45);
  border-radius: 50%;
}
.guarantee__seal-ring.inner { inset: 44px; border-color: rgba(176,124,75,0.28); }
.guarantee__seal-content {
  text-align: center;
  padding: 32px;
  position: relative;
}
.guarantee__seal-content .top-text {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.guarantee__seal-content .big-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: var(--off-white);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.guarantee__seal-content .sub-text {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241,250,238,0.65);
  margin-top: 12px;
}
.guarantee__seal-content .divider {
  width: 32px; height: 1px;
  background: var(--gold-dark);
  margin: 14px auto;
}
.guarantee__body h2 { color: var(--off-white); margin-bottom: 24px; }
.guarantee__body p { color: rgba(241,250,238,0.82); font-size: 1.0625rem; line-height: 1.7; margin: 0 0 16px; }
.guarantee__body p:last-child { margin-bottom: 0; }
.guarantee__body strong { color: var(--gold-light); }

@media (max-width: 900px) {
  .guarantee__inner { grid-template-columns: 1fr; gap: 48px; }
  .guarantee__seal { max-width: 280px; }
}

/* ── Urgency (Bloco 12) ──────────────────────────────── */
.urgency {
  background: var(--off-white);
  color: var(--fg-primary);
  position: relative;
}
.urgency__inner { max-width: 880px; margin: 0 auto; text-align: left; }
.urgency__date-strip {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  background: var(--navy-deep);
  color: var(--off-white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.urgency__date-strip .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f87171;
  position: relative;
}
.urgency__date-strip .pulse::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: #f87171;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.urgency h2 { color: var(--navy-deep); margin-bottom: 24px; }
.urgency p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--fg-secondary);
  margin: 0 0 20px;
}
.urgency p:last-of-type { margin-bottom: 32px; }
.urgency strong { color: var(--navy-deep); font-weight: 700; }

/* ── FAQ (Bloco 13) ──────────────────────────────────── */
.faq { background: var(--white); color: var(--fg-primary); }
.faq__header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.faq__header h2 { color: var(--navy-deep); }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--navy-deep);
}
.faq__q:hover { color: var(--gold-dark); }
.faq__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.faq__item.open .faq__icon {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: rotate(45deg);
}
.faq__icon svg { width: 12px; height: 12px; transition: color 0.25s ease; }
.faq__icon svg { color: var(--gold-dark); }
.faq__item.open .faq__icon svg { color: var(--white); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg-secondary);
  padding: 0 8px;
}
.faq__item.open .faq__a {
  max-height: 320px;
  padding: 0 8px 28px;
}
.faq__a-inner { padding-top: 4px; }

/* ── Final CTA (Bloco 14) ────────────────────────────── */
.final-cta {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(176,124,75,0.18);
}
.final-cta__bg {
  position: absolute; inset: 0;
  background-image: url('assets/photo-desk.png');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.final-cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,36,63,0.85), rgba(26,36,63,0.96));
}
.final-cta__inner {
  position: relative; z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.final-cta h2 {
  color: var(--off-white);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  margin: 0 0 32px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.final-cta h2 .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }
.final-cta p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(241,250,238,0.78);
  margin: 0 0 40px;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}
.final-cta__meta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(241,250,238,0.6);
  letter-spacing: 0.06em;
}
.final-cta__meta span { display: inline-flex; align-items: center; gap: 8px; }
.final-cta__meta .bullet { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dark); }

/* ── PS / Closing (Bloco 15) ─────────────────────────── */
.ps {
  background: var(--navy-mid);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.ps__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.ps__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--gold-dark);
  letter-spacing: -0.04em;
  margin: 0;
}
.ps__body p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--off-white);
  margin: 0 0 18px;
}
.ps__body p:last-of-type { margin-bottom: 32px; }
.ps__body strong { color: var(--gold-light); font-weight: 600; }

@media (max-width: 720px) {
  .ps__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Footer ──────────────────────────────────────────── */
.lp-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(176,124,75,0.18);
  padding: 40px 0 32px;
}
.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.lp-footer__logo img { height: 32px; }
.lp-footer__meta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(241,250,238,0.5);
  text-align: right;
}
.lp-footer__meta a { color: rgba(241,250,238,0.7); }
.lp-footer__meta a:hover { color: var(--gold-light); }

/* ── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
