/* ══════════════════════════════════════════════════════════════════════════
   INMOB360 — LANDING PAGE (landing.css)
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── Dark theme override ──────────────────────────────────────────────── */
.lp {
  --lp-bg:          #07101f;
  --lp-surface:     #0d1a2e;
  --lp-surface-2:   #102038;
  --lp-surface-3:   #162844;
  --lp-border:      rgba(255,255,255,.07);
  --lp-border-md:   rgba(255,255,255,.11);
  --lp-text:        #e8edf5;
  --lp-text-muted:  #7a92b0;
  --lp-text-subtle: #4a6180;
  --lp-primary:     #4f46e5;
  --lp-primary-h:   #4338ca;
  --lp-green:       #10b981;
  --lp-yellow:      #f59e0b;
  --lp-purple:      #8b5cf6;
  --lp-wa:          #25d366;
  background: var(--lp-bg);
  color: var(--lp-text);
}

/* ─── Typography base ──────────────────────────────────────────────────── */
.lp h1,.lp h2,.lp h3 { line-height: 1.15; letter-spacing: -.02em; font-weight: 800; color: var(--lp-text); }
.lp h1 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; }
.lp h2 { font-size: clamp(22px, 3.5vw, 38px); }
.lp h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp p  { color: var(--lp-text-muted); line-height: 1.7; }

/* ─── Shared section pieces ────────────────────────────────────────────── */
.lp-section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--lp-primary); background: rgba(79,70,229,.12);
  border: 1px solid rgba(79,70,229,.25); border-radius: 999px;
  padding: 5px 14px; margin-bottom: 16px;
}
.lp-section-tag--green { color: var(--lp-green); background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.25); }
.lp-section-title { margin-bottom: 14px; }
.lp-section-title span { color: var(--lp-primary); }
.lp-section-sub { font-size: 17px; color: var(--lp-text-muted); max-width: 600px; margin-bottom: 48px; }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lp-primary); color: #fff;
  font-size: 15px; font-weight: 700; padding: 14px 28px;
  border-radius: 12px; border: none; cursor: pointer; text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px -4px rgba(79,70,229,.5);
}
.btn-primary:hover { background: var(--lp-primary-h); transform: translateY(-2px); box-shadow: 0 8px 28px -4px rgba(79,70,229,.6); }
.btn-primary--lg { font-size: 16px; padding: 16px 34px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,211,102,.12); color: var(--lp-wa);
  border: 1.5px solid rgba(37,211,102,.3); font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: 12px; text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
}
.btn-whatsapp:hover { background: rgba(37,211,102,.2); border-color: rgba(37,211,102,.5); transform: translateY(-2px); }

/* ─── Badge "Em breve" ──────────────────────────────────────────────────── */
.lp-badge-soon {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--lp-yellow);
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  padding: 2px 8px; border-radius: 999px; vertical-align: middle; margin-left: 6px;
}
.lp-badge-soon--pill { margin-left: 0; font-size: 11px; padding: 4px 12px; }

/* ══ HEADER ════════════════════════════════════════════════════════════════ */
.lp-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(to right,rgba(9,14,28,.96),rgba(13,18,38,.96));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(79,70,229,.2);
  box-shadow: 0 1px 0 rgba(79,70,229,.08),0 4px 24px rgba(0,0,0,.28);
}
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }

.lp-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.lp-brand-mark {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lp-primary) 0%, #7c3aed 100%);
  display: grid; place-items: center; font-size: 10px; font-weight: 900; color: #fff; letter-spacing: -.03em;
}
.lp-brand-name { font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: #fff; }
.lp-brand-name span { color: var(--lp-primary); }

.lp-nav { display: flex; align-items: center; gap: 4px; }
.lp-nav-link {
  font-size: 14px; font-weight: 500; color: var(--lp-text-muted);
  padding: 8px 14px; border-radius: 8px; text-decoration: none;
  transition: color .15s, background .15s;
}
.lp-nav-link:hover { color: var(--lp-text); background: rgba(255,255,255,.06); }
.lp-nav-btn {
  font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg,#4f46e5,#7c3aed); color: #fff;
  padding: 8px 18px; border-radius: 9px; text-decoration: none; margin-left: 6px;
  box-shadow: 0 2px 10px rgba(79,70,229,.35);
  transition: opacity .15s, box-shadow .15s;
}
.lp-nav-btn:hover { opacity: .92; box-shadow: 0 4px 16px rgba(79,70,229,.45); }
.nav-btn-short { display:none; }
@media(max-width:480px) { .nav-btn-full { display:none; } .nav-btn-short { display:inline; } }

.lp-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: 0; padding: 8px; cursor: pointer; border-radius: 8px;
  transition: background .15s;
}
.lp-burger:hover { background: rgba(255,255,255,.06); }
.lp-burger span { display: block; width: 22px; height: 2px; background: var(--lp-text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.lp-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.open span:nth-child(2) { opacity: 0; }
.lp-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══════════════════════════════════════════════════════════════════ */
.lp-hero { position: relative; padding: 88px 0 80px; overflow: hidden; }
.lp-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 1000px 600px at 50% 0%, rgba(79,70,229,.18), transparent 70%);
}
.lp-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lp-hero-content { position: relative; z-index: 1; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #a78bfa; background: rgba(167,139,250,.1); border: 1px solid rgba(167,139,250,.25);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 22px;
}
.lp-eyebrow svg { color: var(--lp-green); flex-shrink: 0; }

.lp h1 span { color: var(--lp-primary); }
.lp-hero-sub { font-size: 18px; color: var(--lp-text-muted); margin: 16px 0 32px; max-width: 520px; }
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.lp-hero-trust { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--lp-text-muted); }
.lp-hero-trust strong { color: var(--lp-text); }
.lp-trust-dots { display: flex; }
.lp-trust-dots span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--lp-bg);
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-purple));
  margin-left: -6px; display: block;
}
.lp-trust-dots span:first-child { margin-left: 0; }
.lp-trust-dots span:nth-child(2) { background: linear-gradient(135deg, #0ea5e9, var(--lp-primary)); }
.lp-trust-dots span:nth-child(3) { background: linear-gradient(135deg, var(--lp-green), #0ea5e9); }
.lp-trust-dots span:nth-child(4) { background: linear-gradient(135deg, var(--lp-yellow), var(--lp-green)); }

/* ─── Hero visual (mockup navegador) ──────────────────────────────────── */
.lp-hero-visual { position: relative; z-index: 1; }
.lp-mock-browser {
  background: var(--lp-surface); border: 1px solid var(--lp-border-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(79,70,229,.15);
}
.lp-mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: var(--lp-surface-2); border-bottom: 1px solid var(--lp-border);
}
.lp-mock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lp-mock-dot--r { background: #ff5f57; }
.lp-mock-dot--y { background: #febc2e; }
.lp-mock-dot--g { background: #28c840; }
.lp-mock-url {
  flex: 1; font-size: 11px; color: var(--lp-text-muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--lp-border);
  border-radius: 6px; padding: 3px 10px; margin-left: 6px; text-align: center;
}
.lp-mock-url strong { color: var(--lp-primary); }
.lp-mock-body { padding: 16px; }
.lp-mock-cover {
  height: 72px; border-radius: 10px; margin-bottom: 14px;
  background: linear-gradient(135deg, #1e3a5f 0%, var(--lp-primary) 60%, #7c3aed 100%);
}
.lp-mock-profile-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.lp-mock-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-purple));
  border: 3px solid var(--lp-surface);
}
.lp-mock-profile-info { flex: 1; }
.lp-mock-line { height: 8px; border-radius: 4px; background: var(--lp-surface-3); margin-bottom: 6px; }
.lp-mock-line--name { width: 120px; background: rgba(255,255,255,.15); height: 10px; }
.lp-mock-line--creci { width: 80px; }
.lp-mock-line--price { width: 70px; background: rgba(79,70,229,.3); height: 10px; }
.lp-mock-line--title { width: 100%; }
.lp-mock-line--loc { width: 70%; }
.lp-mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.lp-mock-card { background: var(--lp-surface-2); border-radius: 8px; overflow: hidden; }
.lp-mock-card-img { height: 56px; }
.lp-mock-card-img--1 { background: linear-gradient(135deg, #1e3a5f, #0ea5e9); }
.lp-mock-card-img--2 { background: linear-gradient(135deg, #1a3a1e, #10b981); }
.lp-mock-card-img--3 { background: linear-gradient(135deg, #3a1a1e, #f43f5e); }
.lp-mock-card-body { padding: 8px; }

/* ─── Hero floating badges ─────────────────────────────────────────────── */
.lp-mock-badge {
  position: absolute; font-size: 11px; font-weight: 600;
  padding: 8px 12px; border-radius: 10px;
  display: flex; align-items: center; gap: 6px;
  animation: lp-float 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.lp-mock-badge--wa {
  bottom: -16px; left: -20px;
  background: rgba(30,50,30,.95); color: var(--lp-wa);
  border: 1px solid rgba(37,211,102,.3);
}
.lp-mock-badge--link {
  top: 40px; right: -24px;
  background: rgba(7,16,31,.95); color: var(--lp-text-muted);
  border: 1px solid var(--lp-border-md); animation-delay: 1.5s;
}
.lp-mock-badge--link strong { color: var(--lp-primary); }
@keyframes lp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ══ PAIN ══════════════════════════════════════════════════════════════════ */
.lp-pain { padding: 96px 0; }
.lp-pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.lp-pain-card {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: 14px; padding: 24px 20px; transition: border-color .2s, transform .2s;
}
.lp-pain-card:hover { border-color: var(--lp-border-md); transform: translateY(-3px); }
.lp-pain-emoji { font-size: 28px; margin-bottom: 12px; }
.lp-pain-card h3 { font-size: 15px; color: var(--lp-text); margin-bottom: 8px; }
.lp-pain-card p { font-size: 14px; line-height: 1.6; }

/* ══ SOLUTION ══════════════════════════════════════════════════════════════ */
.lp-solution { padding: 96px 0; background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-surface) 50%, var(--lp-bg) 100%); }
.lp-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.lp-feature-card {
  background: var(--lp-surface-2); border: 1px solid var(--lp-border);
  border-radius: 14px; padding: 24px 20px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp-feature-card:hover { border-color: rgba(79,70,229,.35); box-shadow: 0 0 0 1px rgba(79,70,229,.15), 0 8px 24px -8px rgba(79,70,229,.2); transform: translateY(-3px); }
.lp-feature-card--muted { opacity: .7; }
.lp-feature-card--muted:hover { opacity: 1; }
.lp-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(79,70,229,.12); border: 1px solid rgba(79,70,229,.2);
  display: grid; place-items: center; color: var(--lp-primary); margin-bottom: 16px;
}
.lp-feature-card h3 { font-size: 15px; margin-bottom: 8px; color: var(--lp-text); }
.lp-feature-card p { font-size: 14px; line-height: 1.65; }

/* ══ HOW IT WORKS ══════════════════════════════════════════════════════════ */
.lp-how { padding: 96px 0; }
.lp-how .lp-section-title { margin-bottom: 52px; }
.lp-how .lp-section-title span { color: var(--lp-primary); }
.lp-steps { display: flex; align-items: flex-start; justify-content: center; }
.lp-step { flex: 1; max-width: 240px; text-align: center; padding: 0 16px; }
.lp-step-num {
  display: inline-flex; width: 52px; height: 52px; border-radius: 14px; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--lp-primary);
  background: rgba(79,70,229,.1); border: 1.5px solid rgba(79,70,229,.25);
  margin-bottom: 16px; letter-spacing: -.02em;
}
.lp-step h3 { font-size: 15px; color: var(--lp-text); margin-bottom: 8px; }
.lp-step p { font-size: 14px; line-height: 1.65; }
.lp-step em { color: var(--lp-primary); font-style: normal; }
.lp-step-arrow { flex-shrink: 0; color: var(--lp-text-subtle); margin-top: 16px; align-self: flex-start; padding-top: 16px; }
.lp-how-cta { text-align: center; margin-top: 52px; }

/* ══ BENEFITS ══════════════════════════════════════════════════════════════ */
.lp-benefits { padding: 96px 0; background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-surface) 100%); }
.lp-benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lp-benefit {
  background: var(--lp-surface-2); border: 1px solid var(--lp-border);
  border-radius: 14px; padding: 28px 22px; transition: border-color .2s, transform .2s;
}
.lp-benefit:hover { border-color: var(--lp-border-md); transform: translateY(-3px); }
.lp-benefit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.lp-benefit-icon--blue   { background: rgba(14,165,233,.1);  border: 1px solid rgba(14,165,233,.2);  color: #38bdf8; }
.lp-benefit-icon--yellow { background: rgba(245,158,11,.1);  border: 1px solid rgba(245,158,11,.2);  color: var(--lp-yellow); }
.lp-benefit-icon--green  { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2);  color: var(--lp-green); }
.lp-benefit-icon--purple { background: rgba(139,92,246,.1);  border: 1px solid rgba(139,92,246,.2);  color: var(--lp-purple); }
.lp-benefit-icon--indigo { background: rgba(79,70,229,.1);   border: 1px solid rgba(79,70,229,.2);   color: var(--lp-primary); }
.lp-benefit h3 { font-size: 16px; margin-bottom: 8px; color: var(--lp-text); }
.lp-benefit p { font-size: 14px; line-height: 1.65; }

/* ══ HIGHLIGHT ═════════════════════════════════════════════════════════════ */
.lp-highlight { padding: 96px 0; }
.lp-highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.lp-highlight-cta { margin-top: 32px; }

.lp-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lp-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--lp-text-muted); line-height: 1.5; }
.lp-checklist li svg { flex-shrink: 0; margin-top: 2px; color: var(--lp-green); }
.lp-checklist strong { color: var(--lp-text); }

/* ─── Dashboard mockup ─────────────────────────────────────────────────── */
.lp-dash-mockup {
  display: flex; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--lp-border-md);
  box-shadow: 0 32px 80px -20px rgba(0,0,0,.5);
  background: var(--lp-surface);
}
.lp-dash-sidebar {
  width: 52px; background: var(--lp-surface-2); padding: 16px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  border-right: 1px solid var(--lp-border);
}
.lp-dash-logo-mark {
  width: 30px; height: 30px; border-radius: 7px; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--lp-primary), #7c3aed);
  font-size: 9px; font-weight: 900; color: #fff; display: grid; place-items: center;
}
.lp-dash-nav { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.lp-dash-nav-item { height: 30px; border-radius: 7px; background: var(--lp-surface-3); }
.lp-dash-nav-item--active { background: rgba(79,70,229,.25); border: 1px solid rgba(79,70,229,.3); }
.lp-dash-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.lp-dash-topbar { display: flex; justify-content: space-between; align-items: center; }
.lp-dash-topbar-title { height: 12px; width: 100px; border-radius: 4px; background: rgba(255,255,255,.15); }
.lp-dash-topbar-btn { height: 26px; width: 80px; border-radius: 7px; background: rgba(79,70,229,.25); border: 1px solid rgba(79,70,229,.3); }
.lp-dash-stats { display: flex; gap: 8px; }
.lp-dash-stat { flex: 1; background: var(--lp-surface-2); border: 1px solid var(--lp-border); border-radius: 9px; padding: 10px; }
.lp-dash-stat-num { height: 14px; width: 40px; border-radius: 4px; background: rgba(255,255,255,.2); margin-bottom: 6px; }
.lp-dash-stat-label { height: 8px; width: 60%; border-radius: 4px; background: var(--lp-surface-3); }
.lp-dash-rows { display: flex; flex-direction: column; gap: 6px; }
.lp-dash-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--lp-surface-2); border: 1px solid var(--lp-border); border-radius: 9px; padding: 8px 10px;
}
.lp-dash-row-thumb { width: 36px; height: 30px; border-radius: 6px; flex-shrink: 0; }
.lp-dash-row-thumb--1 { background: linear-gradient(135deg, #1e3a5f, #0ea5e9); }
.lp-dash-row-thumb--2 { background: linear-gradient(135deg, #1a3a1e, #10b981); }
.lp-dash-row-thumb--3 { background: linear-gradient(135deg, #3a1a3a, #8b5cf6); }
.lp-dash-row-body { flex: 1; }
.lp-dash-row-title { height: 8px; border-radius: 3px; background: rgba(255,255,255,.15); margin-bottom: 5px; width: 80%; }
.lp-dash-row-sub { height: 6px; border-radius: 3px; background: var(--lp-surface-3); width: 55%; }
.lp-dash-row-badge { width: 48px; height: 18px; border-radius: 999px; background: var(--lp-surface-3); flex-shrink: 0; }
.lp-dash-row-badge--green { background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.25); }

/* ══ SEO TEXT ══════════════════════════════════════════════════════════════ */
.lp-seo-text { padding: 96px 0; background: var(--lp-surface); }
.lp-seo-inner { max-width: 900px; }
.lp-seo-text h2 { font-size: clamp(20px, 3vw, 32px); margin-bottom: 32px; }
.lp-seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }
.lp-seo-cols p { font-size: 15px; line-height: 1.75; color: var(--lp-text-muted); }
.lp-seo-cols strong { color: var(--lp-text); font-weight: 600; }

/* ══ COMING SOON ═══════════════════════════════════════════════════════════ */
.lp-coming { padding: 48px 0; }
.lp-coming-card {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--lp-surface); border: 1px solid var(--lp-border-md);
  border-radius: 16px; padding: 32px 36px; max-width: 680px; margin: 0 auto;
}
.lp-coming-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: rgba(79,70,229,.1); border: 1px solid rgba(79,70,229,.2);
  display: grid; place-items: center; color: var(--lp-primary);
}
.lp-coming-body { flex: 1; }
.lp-coming-body h3 { font-size: 17px; margin: 8px 0; color: var(--lp-text); }
.lp-coming-body p { font-size: 14px; line-height: 1.65; }

/* ══ FAQ ════════════════════════════════════════════════════════════════════ */
.lp-faq { padding: 96px 0; }
.lp-faq .lp-section-title { margin-bottom: 48px; }
.lp-faq-list { max-width: 740px; display: flex; flex-direction: column; gap: 8px; }
.lp-faq-item {
  background: var(--lp-surface); border: 1px solid var(--lp-border);
  border-radius: 12px; overflow: hidden; transition: border-color .15s;
}
.lp-faq-item[open] { border-color: rgba(79,70,229,.35); }
.lp-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-size: 15px; font-weight: 600; color: var(--lp-text); transition: background .15s;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q:hover { background: rgba(255,255,255,.03); }
.lp-faq-chevron { flex-shrink: 0; color: var(--lp-text-subtle); transition: transform .2s; }
.lp-faq-item[open] .lp-faq-chevron { transform: rotate(180deg); }
.lp-faq-a { padding: 0 20px 18px; border-top: 1px solid var(--lp-border); }
.lp-faq-a p { font-size: 14px; line-height: 1.7; padding-top: 14px; }

/* ══ FINAL CTA ══════════════════════════════════════════════════════════════ */
.lp-final-cta { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.lp-final-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 500px at 50% 50%, rgba(79,70,229,.2), transparent 70%),
              linear-gradient(180deg, var(--lp-bg), var(--lp-surface) 50%, var(--lp-bg));
}
.lp-final-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.lp-final-cta h2 { font-size: clamp(26px, 4.5vw, 44px); margin-bottom: 16px; }
.lp-final-cta h2 span { color: var(--lp-primary); }
.lp-final-inner > p { font-size: 17px; margin-bottom: 36px; color: var(--lp-text-muted); }
.lp-final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.lp-final-sub { font-size: 13px; color: var(--lp-text-subtle); }

/* ─── Footer override para tema escuro ─────────────────────────────────── */
.lp .ft { background: var(--lp-surface); border-top: 1px solid var(--lp-border); margin-top: 0; }
.lp .ft-name,.lp .ft-links a,.lp .ft-copy { color: var(--lp-text-muted); }
.lp .ft-name span { color: var(--lp-primary); }
.lp .ft-links a:hover { color: var(--lp-primary); }

/* ═══ RESPONSIVE ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero-visual { max-width: 480px; margin: 0 auto; }
  .lp-highlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-highlight-visual { max-width: 480px; }
  .lp-features-grid,.lp-pain-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .lp-hero { padding: 60px 0 52px; }
  .lp-pain,.lp-solution,.lp-how,.lp-benefits,.lp-highlight,.lp-seo-text,.lp-faq,.lp-final-cta { padding: 64px 0; }
  .lp-features-grid,.lp-pain-grid,.lp-benefits-grid { grid-template-columns: 1fr 1fr; }
  .lp-steps { flex-direction: column; align-items: center; gap: 8px; }
  .lp-step-arrow { transform: rotate(90deg); margin: 0; padding: 0; }
  .lp-step { max-width: 100%; width: 100%; text-align: left; padding: 0; }
  .lp-seo-cols { grid-template-columns: 1fr; }
  .lp-coming-card { flex-direction: column; gap: 16px; }
  .lp-nav { display: none; flex-direction: column; align-items: flex-start; gap: 4px; }
  .lp-nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(7,16,31,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border); padding: 16px 24px;
  }
  .lp-nav.open .lp-nav-btn { width: 100%; text-align: center; margin-left: 0; margin-top: 8px; }
  .lp-burger { display: flex; }
  .lp-header { position: relative; }
  .lp-header-inner { position: relative; }
}

@media (max-width: 520px) {
  .lp-features-grid,.lp-pain-grid,.lp-benefits-grid { grid-template-columns: 1fr; }
  .lp-hero-ctas,.lp-final-ctas { flex-direction: column; }
  .lp-hero-ctas a,.lp-final-ctas a { width: 100%; justify-content: center; }
}
