/* ==============================================
   FOTORESTORE — assets/css/landing.css
   Tema: Luz Natural — creme, âmbar, caramelo
   Fontes: Cormorant Garamond + DM Sans
   ============================================== */

/* ── Variáveis do tema ────────────────────────────────────────────────── */
:root {
  --ln-cream:        #faf7f2;
  --ln-cream-mid:    #f2ece1;
  --ln-cream-dark:   #e8ddd0;
  --ln-parchment:    #ded0bc;
  --ln-amber:        #b8834a;
  --ln-amber-light:  #d4a97a;
  --ln-amber-deep:   #8f5f2e;
  --ln-brown:        #5a3e28;
  --ln-ink:          #1e1208;
  --ln-ink-mid:      #3a2510;
  --ln-text:         #2d1f0e;
  --ln-text-mid:     #6b4f35;
  --ln-text-soft:    #a08060;
  --ln-text-faint:   #c4aa8a;
  --ln-border:       #dfd0bc;
  --ln-border-light: #ece3d4;
  --ln-shadow:       rgba(90,62,40,.10);
  --ln-shadow-md:    rgba(90,62,40,.16);
}

/* ── Base ─────────────────────────────────────────────────────────────── */
.landing-body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ln-cream);
  color: var(--ln-text);
  overflow-x: hidden;
}

.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Tipografia de seção ──────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ln-amber);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ln-ink);
  margin-bottom: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s .1s, transform .7s .1s;
}
.section-title em {
  font-style: italic;
  color: var(--ln-amber);
  font-weight: 400;
}

.section-sub {
  text-align: center;
  color: var(--ln-text-soft);
  font-size: 1rem;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s .2s, transform .7s .2s;
}

/* ── Reveal ──────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal].revealed .section-tag,
[data-reveal].revealed .section-title,
[data-reveal].revealed .section-sub {
  opacity: 1 !important;
  transform: none !important;
}

.service-card,
.result-card,
.step-card,
.testimonial-card,
.faq-item,
.price-card,
.pricing-guarantee,
.section-tag,
.section-title,
.section-sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.service-card.revealed,
.result-card.revealed,
.step-card.revealed,
.testimonial-card.revealed,
.faq-item.revealed,
.price-card.revealed,
.pricing-guarantee.revealed,
.section-tag.revealed,
.section-title.revealed,
.section-sub.revealed { opacity: 1; transform: none; }

/* ── Botões ───────────────────────────────────────────────────────────── */
.lp-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--ln-amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.lp-btn-cta:hover {
  background: var(--ln-amber-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,131,74,.3);
  text-decoration: none;
  color: #fff;
}
.lp-btn-large { padding: 16px 40px; font-size: 1.05rem; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: var(--ln-text-mid);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  border-radius: 3px;
}
.lp-btn-ghost:hover { color: var(--ln-amber); text-decoration: none; }

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  color: var(--ln-amber);
  border: 1.5px solid var(--ln-amber);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  transition: all .2s;
}
.lp-btn-outline:hover {
  background: var(--ln-amber);
  color: #fff;
  text-decoration: none;
}

.lp-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: var(--ln-text);
  border: 1.5px solid var(--ln-border);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  transition: all .2s;
}
.lp-btn-outline-dark:hover {
  border-color: var(--ln-amber);
  color: var(--ln-amber);
  text-decoration: none;
}

/* ── HEADER ──────────────────────────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s, border-bottom .3s;
}
.lp-header.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ln-border);
  box-shadow: 0 1px 20px var(--ln-shadow);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ln-ink);
  text-decoration: none;
}
.lp-logo svg { color: var(--ln-amber); flex-shrink: 0; }
.lp-logo:hover { text-decoration: none; }

.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav a {
  padding: 8px 14px;
  font-size: .88rem;
  color: var(--ln-text-mid);
  text-decoration: none;
  border-radius: 3px;
  transition: color .2s;
}
.lp-nav a:hover { color: var(--ln-amber); text-decoration: none; }

.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.lp-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ln-ink);
  transition: .3s;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Fundo texturado — papel envelhecido */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(184,131,74,.18) 0%, transparent 70%);
  top: -240px; right: -80px;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,169,122,.14) 0%, transparent 70%);
  bottom: -100px; left: -120px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ln-amber);
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ln-ink);
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--ln-amber);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ln-text-mid);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-link {
  font-size: .9rem;
  color: var(--ln-text-soft);
  text-decoration: none;
  transition: color .2s;
}
.hero-link:hover { color: var(--ln-amber); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--ln-amber);
  line-height: 1;
}
.trust-item span { font-size: .75rem; color: var(--ln-text-soft); }
.trust-divider { width: 1px; height: 36px; background: var(--ln-border); }

/* Hero — comparação de fotos */
.hero-visual { display: flex; justify-content: center; }

.photo-compare-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.compare-frame { display: flex; gap: 14px; }
.compare-before, .compare-after { position: relative; }

.photo-mock {
  width: 188px;
  height: 240px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

/* Foto "antes" — aspecto desgastado */
.photo-mock-old {
  background: linear-gradient(135deg, #d4c4b0 0%, #c0aa90 50%, #d0be9e 100%);
  border: 1px solid var(--ln-parchment);
  box-shadow: 2px 2px 12px var(--ln-shadow);
}
.photo-damage {
  position: absolute;
  background: rgba(160,120,70,.25);
  border-radius: 2px;
}
.photo-damage:first-child { width: 55%; height: 35%; top: 8%; left: -8%; transform: rotate(-6deg); }
.photo-damage-2 { width: 38%; height: 28%; bottom: 18%; right: -4%; transform: rotate(4deg); }
.photo-scratch {
  position: absolute;
  width: 1.5px; height: 75%;
  background: rgba(255,255,255,.35);
  top: 12%; left: 42%;
  transform: rotate(2deg);
}
.photo-content-old {
  position: absolute;
  inset: 10%;
  background: linear-gradient(135deg,
    rgba(180,150,100,.2) 0%,
    rgba(150,120,80,.25) 50%,
    rgba(180,150,100,.15) 100%
  );
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-content-old::after { content: '📷'; font-size: 2.2rem; opacity: .3; }

/* Foto "depois" — restaurada e vibrante */
.photo-mock-new {
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b882 40%, #e8d5b0 100%);
  border: 1px solid var(--ln-amber-light);
  box-shadow: 4px 4px 24px rgba(184,131,74,.2), 0 0 0 1px rgba(184,131,74,.1);
}
.photo-content-new {
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg,
    rgba(212,169,122,.35) 0%,
    rgba(184,131,74,.4) 50%,
    rgba(212,169,122,.3) 100%
  );
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-content-new::after { content: '🖼️'; font-size: 2.2rem; opacity: .65; }

.compare-label {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ln-text-faint);
}
.compare-label-after { color: var(--ln-amber); }

.compare-arrow { animation: arrowPulse 2s ease-in-out infinite; }
@keyframes arrowPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ln-text-faint);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--ln-amber-light);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── SERVIÇOS ─────────────────────────────────────────────────────────── */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--ln-border-light);
  background: var(--ln-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--ln-cream-mid);
  border: 1px solid var(--ln-border-light);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s,
              opacity .6s, transform .6s;
}
.service-card:hover {
  border-color: var(--ln-amber-light);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--ln-shadow);
}
.service-card-featured {
  background: #fff;
  border-color: var(--ln-amber-light);
  box-shadow: 0 4px 20px var(--ln-shadow);
}
.service-icon {
  margin-bottom: 18px;
  width: 48px; height: 48px;
  background: rgba(184,131,74,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ln-ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .88rem;
  color: var(--ln-text-mid);
  line-height: 1.65;
}
.card-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: .68rem;
  font-weight: 700;
  background: rgba(184,131,74,.12);
  color: var(--ln-amber-deep);
  border: 1px solid rgba(184,131,74,.25);
  border-radius: 20px;
  padding: 3px 10px;
}
.card-badge-new {
  background: rgba(34,120,74,.08);
  color: #1a6040;
  border-color: rgba(34,120,74,.18);
}

/* ── RESULTADOS ──────────────────────────────────────────────────────── */
.results {
  padding: 100px 0;
  background: var(--ln-cream-mid);
  border-top: 1px solid var(--ln-border-light);
  border-bottom: 1px solid var(--ln-border-light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--ln-border);
  border-radius: 8px;
  padding: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.result-card:hover {
  border-color: var(--ln-amber-light);
  box-shadow: 0 4px 20px var(--ln-shadow);
}

.result-images {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.result-img { position: relative; flex: 1; }

.img-placeholder {
  height: 130px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}
.img-placeholder-old {
  background: linear-gradient(135deg, #cfc0a8 0%, #bfad96 100%);
  border: 1px solid var(--ln-parchment);
}
.img-placeholder-new {
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b882 100%);
  border: 1px solid var(--ln-amber-light);
  box-shadow: 0 0 12px rgba(184,131,74,.15);
}
.placeholder-grain {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 2px,
    rgba(0,0,0,.06) 2px, rgba(0,0,0,.06) 4px
  );
}
.result-label {
  position: absolute;
  bottom: 6px; left: 8px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,62,40,.45);
}
.result-label-after { color: var(--ln-amber); }

.result-arrow { color: var(--ln-amber-light); font-size: 1.1rem; flex-shrink: 0; }

.result-info { display: flex; flex-direction: column; gap: 2px; }
.result-info strong { font-size: .88rem; color: var(--ln-ink); }
.result-info span { font-size: .78rem; color: var(--ln-text-soft); }

.results-note {
  text-align: center;
  margin-top: 40px;
  font-size: .85rem;
  color: var(--ln-text-faint);
}

/* ── SEÇÃO VÍDEO ─────────────────────────────────────────────────────── */
.video-section {
  padding: 100px 0;
  background: var(--ln-cream);
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}
.video-text .section-title { text-align: left; }
.video-text p {
  color: var(--ln-text-mid);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.video-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ln-text-mid);
}
.video-features li span { color: var(--ln-amber); flex-shrink: 0; }

/* Mockup de telefone — versão clara */
.video-phone-frame {
  background: var(--ln-cream-dark);
  border: 2px solid var(--ln-border);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 20px 56px var(--ln-shadow-md), 0 0 0 1px var(--ln-border);
}
.video-phone-frame::before {
  content: '';
  display: block;
  width: 56px; height: 5px;
  background: var(--ln-parchment);
  border-radius: 6px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: var(--ln-cream-mid);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}
.phone-video-preview {
  height: 85%;
  background: linear-gradient(135deg, #e0cba8 0%, #d4b882 50%, #e0cba8 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-photo-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(184,131,74,.15) 0%,
    rgba(184,131,74,.2) 50%,
    rgba(184,131,74,.12) 100%
  );
}
.video-play-pulse {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
  background: rgba(250,247,242,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(184,131,74,.25);
}
.pulse-ring {
  position: absolute;
  width: 100%; height: 100%;
  border: 2px solid rgba(184,131,74,.3);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
.pulse-ring-2 { animation-delay: 1s; }
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.phone-bottom {
  height: 15%;
  background: var(--ln-cream-mid);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-progress-bar {
  flex: 1; height: 3px;
  background: var(--ln-border);
  border-radius: 3px; overflow: hidden;
}
.video-progress-fill {
  width: 60%; height: 100%;
  background: var(--ln-amber);
  animation: progressAnim 5s linear infinite;
}
@keyframes progressAnim { 0% { width: 0; } 100% { width: 100%; } }
.phone-bottom span { font-size: .72rem; color: var(--ln-text-soft); }

/* ── COMO FUNCIONA ───────────────────────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--ln-cream-mid);
  border-top: 1px solid var(--ln-border-light);
  border-bottom: 1px solid var(--ln-border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ln-border), var(--ln-border), transparent);
}

.step-card {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(184,131,74,.22);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ln-ink);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .85rem;
  color: var(--ln-text-mid);
  line-height: 1.65;
}

/* ── PREÇOS ──────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: var(--ln-cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 56px auto 0;
}

.price-card {
  background: #fff;
  border: 1px solid var(--ln-border);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.price-card:hover {
  border-color: var(--ln-amber-light);
  box-shadow: 0 8px 32px var(--ln-shadow);
}
.price-card-featured {
  border-color: var(--ln-amber);
  box-shadow: 0 8px 40px rgba(184,131,74,.15);
}

.price-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ln-amber);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card-header { margin-bottom: 28px; }
.price-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ln-ink);
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.price-currency { font-size: 1.1rem; color: var(--ln-amber); }
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ln-amber);
  line-height: 1;
}
.price-cents { font-size: 1.4rem; color: var(--ln-amber); }
.price-card-header p { font-size: .9rem; color: var(--ln-text-soft); }
.price-card-header strong { color: var(--ln-ink); }

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--ln-text-mid);
}
.check { color: var(--ln-amber); font-weight: 700; flex-shrink: 0; }
.check-star { color: #c8930a; }
.cross { color: var(--ln-border); flex-shrink: 0; }
.price-feature-off { opacity: .5; }
.price-btn { width: 100%; justify-content: center; }

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 40px auto 0;
  padding: 20px 28px;
  background: var(--ln-cream-mid);
  border: 1px solid var(--ln-border-light);
  border-radius: 10px;
}
.guarantee-icon { font-size: 1.8rem; }
.pricing-guarantee strong { display: block; color: var(--ln-ink); font-size: .9rem; margin-bottom: 2px; }
.pricing-guarantee p { color: var(--ln-text-soft); font-size: .8rem; margin: 0; }

/* ── DEPOIMENTOS ─────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--ln-cream-mid);
  border-top: 1px solid var(--ln-border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--ln-border-light);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-card:hover {
  border-color: var(--ln-amber-light);
  box-shadow: 0 4px 20px var(--ln-shadow);
}
.testimonial-stars {
  color: var(--ln-amber);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ln-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 36px; height: 36px;
  background: rgba(184,131,74,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--ln-amber);
  flex-shrink: 0;
  border: 1px solid rgba(184,131,74,.2);
}
.testimonial-author strong { display: block; font-size: .88rem; color: var(--ln-ink); }
.testimonial-author span { font-size: .78rem; color: var(--ln-text-soft); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--ln-cream);
  border-top: 1px solid var(--ln-border-light);
}

.faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left .section-title { text-align: left; }
.faq-left p { color: var(--ln-text-mid); font-size: .95rem; }

.faq-item {
  border-bottom: 1px solid var(--ln-border-light);
}
.faq-item:first-child { border-top: 1px solid var(--ln-border-light); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--ln-text);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--ln-amber); }
.faq-icon { flex-shrink: 0; transition: transform .3s; color: var(--ln-text-faint); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--ln-amber); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-answer.open { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { color: var(--ln-text-mid); font-size: .9rem; line-height: 1.7; }

/* ── CTA FINAL ────────────────────────────────────────────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--ln-ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-orb {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(184,131,74,.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}
.cta-inner { position: relative; z-index: 1; }
.cta-star { font-size: 1.5rem; color: var(--ln-amber); margin-bottom: 20px; display: block; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--ln-cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--ln-amber-light); font-weight: 400; }
.cta-sub { font-size: 1.05rem; color: rgba(250,247,242,.5); margin-bottom: 40px; }
.cta-actions { margin-bottom: 24px; }
.cta-trust { font-size: .8rem; color: rgba(250,247,242,.28); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.lp-footer {
  padding: 60px 0 32px;
  background: var(--ln-ink-mid);
  border-top: 1px solid rgba(184,131,74,.15);
}
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.lp-footer-brand .lp-logo { color: var(--ln-cream); margin-bottom: 10px; }
.lp-footer-brand p { font-size: .85rem; color: rgba(250,247,242,.35); max-width: 260px; }
.lp-footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.lp-footer-links a { font-size: .88rem; color: rgba(250,247,242,.45); transition: color .2s; }
.lp-footer-links a:hover { color: var(--ln-amber-light); text-decoration: none; }
.lp-footer-copy {
  width: 100%; font-size: .78rem; color: rgba(250,247,242,.2);
  border-top: 1px solid rgba(184,131,74,.08); padding-top: 24px;
}

/* ── RESPONSIVO ───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .video-inner { grid-template-columns: 1fr; }
  .video-phone-frame { max-width: 280px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 700px) {
  .lp-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,247,242,.98);
    padding: 80px 28px 28px;
    gap: 4px;
    z-index: 199;
  }
  .lp-nav.open { display: flex; }
  .lp-nav a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--ln-border-light);
    color: var(--ln-text-mid);
    border-radius: 0;
  }
  .lp-hamburger { display: flex; z-index: 300; position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }
}
