/* ═══════════════════════════════════════════════════════════
   LegalPrime — main.css
   Workspace style: DM Sans + Instrument Serif, azul Google
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --blue: #1967D2;
  --blue-dark: #0D47A1;
  --blue-bg: #E8F0FE;
  --blue-hero: #0D2137;
  --ink: #1C1C1C;
  --ink-2: #5F6368;
  --ink-3: #9AA0A6;
  --surface: #F8F9FA;
  --border: #E8E8E8;
  --wa: #25D366;
  --green-bg: #E6F4EA;
  --green-text: #188038;
  --orange: #E37400;
  --orange-bg: #FEF3E2;
  --white: #FFFFFF;
  --footer-bg: #1C1C1C;
  --gold: #FFD86E;
  --placeholder-border: #C5D9F7;
  --placeholder-bg: #F0F6FF;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --rad: 8px;
  --rad-lg: 12px;
  --rad-pill: 24px;
}

/* ─── Reset base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 15px; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
/* Strict weight rule: emphasis never exceeds 500 (use serif italic / highlight / uppercase instead) */
strong, b { font-weight: 500; }

/* ─── Layout helpers ─────────────────────────────────────── */
.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.lp-sec { padding: 52px 0; }
.lp-sec-white { background: var(--white); }
.lp-sec-surface { background: var(--surface); }

/* ─── Eyebrow ────────────────────────────────────────────── */
.lp-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.lp-eyebrow::before {
  content: ''; width: 18px; height: 2px;
  background: var(--blue); border-radius: 2px; flex-shrink: 0;
}

/* ─── Headings ───────────────────────────────────────────── */
.lp-sec-h2 {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 10px;
}
.lp-sec-body {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.65; margin-bottom: 32px;
  max-width: 560px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  color: var(--blue); padding: 7px 16px;
  border: 1.5px solid var(--blue); border-radius: var(--rad-pill);
  background: transparent; transition: background .15s;
  white-space: nowrap;
}
.lp-btn-ghost:hover { background: var(--blue-bg); }

.lp-btn-wa, .lp-btn-wa-lg, .lp-btn-wa-sm {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans); font-weight: 500;
  color: var(--white); background: var(--wa);
  border: none; border-radius: var(--rad-pill);
  transition: opacity .15s; cursor: pointer; white-space: nowrap;
}
.lp-btn-wa { font-size: 13px; padding: 7px 18px; }
.lp-btn-wa-lg { font-size: 14px; padding: 12px 22px; }
.lp-btn-wa-sm { font-size: 12px; padding: 8px 16px; }
.lp-btn-wa:hover, .lp-btn-wa-lg:hover, .lp-btn-wa-sm:hover { opacity: .9; }

.lp-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: 13px;
  color: var(--white); padding: 12px 20px;
  border: 1.5px solid rgba(255,255,255,.30); border-radius: var(--rad-pill);
  background: rgba(255,255,255,.08); transition: background .15s;
}
.lp-btn-ghost-dark:hover { background: rgba(255,255,255,.14); }

/* ─── NAV ────────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  height: 58px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 28px;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.lp-nav-brand { display: flex; align-items: center; gap: 9px; }
.lp-nav-mark {
  width: 30px; height: 30px; background: var(--blue);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px; flex-shrink: 0;
}
.lp-nav-name {
  font-family: var(--font-serif); font-size: 20px;
  color: var(--ink); letter-spacing: -0.02em;
}
.lp-nav-name span { color: var(--blue); }
.lp-nav-links { display: flex; gap: 2px; }
.lp-nav-link {
  font-size: 13px; color: var(--ink-2); padding: 6px 13px;
  border-radius: var(--rad); transition: background .12s;
}
.lp-nav-link:hover { background: var(--surface); color: var(--ink); }
.lp-nav-ctas { display: flex; gap: 8px; align-items: center; }
.lp-nav-hamburger {
  display: none; background: none; border: none;
  font-size: 22px; color: var(--ink-2); cursor: pointer; padding: 4px;
}

/* Mobile menu */
.lp-mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-link {
  font-size: 14px; color: var(--ink-2); padding: 10px 12px;
  border-radius: var(--rad); display: flex; align-items: center; gap: 8px;
}
.lp-mobile-link:hover { background: var(--surface); }
.lp-mobile-wa { margin-top: 8px; justify-content: center; }

/* ─── URGENCY BAR ────────────────────────────────────────── */
.lp-urgency {
  background: var(--orange-bg); border-bottom: 1.5px solid #F6AE2D;
  padding: 10px 28px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.lp-urgency i { font-size: 16px; color: var(--orange); flex-shrink: 0; }
.lp-urgency p { font-size: 12px; color: #7A4100; line-height: 1.4; text-align: center; }
.lp-urgency strong { color: var(--orange); }

/* ─── HERO ───────────────────────────────────────────────── */
.lp-hero {
  position: relative; min-height: 460px;
  display: flex; align-items: stretch;
  background:
    radial-gradient(1100px 480px at 82% -12%, rgba(25,103,210,.40), transparent 60%),
    radial-gradient(760px 420px at -5% 115%, rgba(255,216,110,.10), transparent 55%),
    linear-gradient(140deg, #0B1C30 0%, #12304F 52%, #0B1C30 100%);
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: 0;
}
.lp-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(13,33,55,.90) 0%, rgba(13,33,55,.78) 55%, rgba(13,33,55,.15) 100%);
}
.lp-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: center;
  padding-top: 48px; padding-bottom: 48px;
}
.lp-hero-left { display: flex; flex-direction: column; gap: 18px; }

.lp-chip-green {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.35);
  border-radius: var(--rad-pill); padding: 5px 13px; width: fit-content;
}
.lp-chip-green i { font-size: 13px; color: #5BE89A; }
.lp-chip-green span { font-size: 11px; color: #5BE89A; font-weight: 500; }

.lp-hero-h1 {
  font-family: var(--font-serif);
  font-size: 34px; font-weight: 400;
  color: var(--white); line-height: 1.15;
  letter-spacing: -0.02em;
}
.lp-hero-h1 em { font-style: italic; color: var(--gold); }
.lp-hero-sub { font-size: 14px; color: rgba(255,255,255,.70); line-height: 1.65; }

.lp-hero-guarantees { display: flex; flex-direction: column; gap: 8px; }
.lp-hero-guarantees li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.85);
}
.lp-g-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,211,102,.2); border: 1px solid rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
}
.lp-g-dot i { font-size: 10px; color: #5BE89A; }

.lp-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero team media (v5) */
.lp-hero-media { margin-top: 4px; }
.lp-hero-team-photo {
  width: 100%; height: 210px; object-fit: cover;
  border-radius: var(--rad-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.lp-hero-team-ph {
  height: 210px; border-radius: var(--rad-lg);
  border: 1.5px dashed rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.lp-hero-team-ph i { font-size: 44px; color: rgba(255,255,255,.4); }
.lp-hero-team-ph span { font-size: 10px; color: rgba(255,255,255,.55); }

/* Form card */
.lp-form-card {
  background: rgba(11,28,48,.42);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--rad-lg);
  padding: 22px;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .lp-form-card { background: rgba(11,28,48,.86); }
}
.lp-form-header {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.lp-form-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,.14);
  border-radius: var(--rad); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.lp-form-icon i { font-size: 17px; color: #fff; }
.lp-form-title { font-size: 13px; font-weight: 500; color: #fff; line-height: 1.4; }
.lp-label { display: block; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.72); margin-bottom: 5px; }
.lp-input, .lp-select, .lp-textarea {
  width: 100%; font-family: var(--font-sans); font-size: 13px;
  color: #fff; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--rad);
  padding: 0 10px; margin-bottom: 12px; outline: none;
  transition: border-color .15s, background .15s;
}
.lp-input::placeholder, .lp-textarea::placeholder { color: rgba(255,255,255,.5); }
.lp-select:invalid { color: rgba(255,255,255,.5); }
.lp-select option { color: var(--ink); }
.lp-input { height: 36px; }
.lp-select { height: 36px; }
.lp-textarea { height: 68px; padding: 8px 10px; resize: vertical; }
.lp-input:focus, .lp-select:focus, .lp-textarea:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); }
.lp-btn-submit {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; border-radius: var(--rad-pill); padding: 11px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background .15s;
}
.lp-btn-submit:hover { background: var(--blue-dark); }
.lp-form-note {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; font-size: 10px; color: rgba(255,255,255,.6); margin-top: 10px;
}
.lp-form-note i { font-size: 11px; color: #5BE89A; }
.lp-form-success {
  text-align: center; padding: 20px;
  color: #5BE89A; font-size: 14px;
}
.lp-form-success i { font-size: 32px; display: block; margin-bottom: 8px; }

/* ─── HONORARIOS ─────────────────────────────────────────── */
.lp-honor-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border); border-radius: var(--rad-lg); overflow: hidden;
}
.lp-honor-step {
  padding: 24px 14px; display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
  border-right: 1px solid var(--border); background: var(--white);
}
.lp-honor-step:last-child { border-right: none; }
.lp-honor-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lp-honor-ico i { font-size: 26px; }
.lp-ico-blue { background: var(--blue-bg); color: var(--blue); }
.lp-ico-blue i { color: var(--blue); }
.lp-ico-green { background: var(--green-bg); }
.lp-ico-green i { color: var(--green-text); }
.lp-ico-orange { background: var(--orange-bg); }
.lp-ico-orange i { color: var(--orange); }
.lp-honor-num { font-size: 10px; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.lp-honor-txt { font-size: 12px; font-weight: 500; color: var(--ink); line-height: 1.5; }

/* ─── SERVICIOS ──────────────────────────────────────────── */
.lp-svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.lp-svc-card {
  border: 1px solid var(--border); border-radius: var(--rad-lg);
  overflow: hidden; background: var(--white);
  display: flex; flex-direction: column;
  transition: border-color .15s;
}
.lp-svc-card:hover { border-color: var(--placeholder-border); }
.lp-svc-img { position: relative; }
.lp-svc-photo { width: 100%; height: 130px; object-fit: cover; }
.lp-svc-ph {
  height: 130px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--placeholder-bg);
  border-bottom: 1px solid var(--border);
}
.lp-svc-ph-ico { font-size: 42px; color: var(--blue); opacity: .30; }
.lp-svc-ph-label { font-size: 9px; font-weight: 500; color: var(--blue); }
.lp-svc-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lp-svc-ico-row { display: flex; align-items: center; gap: 9px; }
.lp-svc-ico-sm {
  width: 34px; height: 34px; background: var(--blue-bg);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.lp-svc-ico-sm i { font-size: 18px; color: var(--blue); }
.lp-svc-h3 { font-size: 13px; font-weight: 500; color: var(--ink); }
.lp-svc-p { font-size: 11px; color: var(--ink-2); line-height: 1.55; flex: 1; }
.lp-svc-link {
  font-size: 12px; color: var(--blue); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
  margin-top: auto; padding-top: 6px;
}
.lp-svc-link:hover { color: var(--blue-dark); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.lp-stats-bar { background: var(--ink); padding: 36px 0; }
.lp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-stat-item {
  padding: 0 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-val {
  font-family: var(--font-serif); font-size: 34px;
  color: var(--gold); font-weight: 400; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.lp-stat-label { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ─── PROCESO ────────────────────────────────────────────── */
.lp-proc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.lp-proc-photo { width: 100%; height: 300px; object-fit: cover; border-radius: var(--rad-lg); }
.lp-ph-scene {
  height: 300px; border-radius: var(--rad-lg);
  border: 1.5px dashed var(--placeholder-border); background: var(--placeholder-bg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
}
.lp-ph-big-ico { font-size: 52px; color: var(--blue); opacity: .22; }
.lp-ph-dims { font-size: 10px; color: var(--ink-3); }

.lp-steps-list { display: flex; flex-direction: column; }
.lp-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.lp-step-last { border-bottom: none; }
.lp-step-left { display: flex; flex-direction: column; align-items: center; }
.lp-step-ico {
  width: 44px; height: 44px; background: var(--blue-bg);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.lp-step-ico i { font-size: 22px; color: var(--blue); }
.lp-step-line { width: 1.5px; flex: 1; background: var(--border); min-height: 20px; margin: 6px auto; }
.lp-step-h3 { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.lp-step-p { font-size: 12px; color: var(--ink-2); line-height: 1.55; }

/* ─── DATOS CONTEXTO ─────────────────────────────────────── */
.lp-ctx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-ctx-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rad-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.lp-ctx-ico {
  width: 44px; height: 44px; background: var(--blue-bg);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
}
.lp-ctx-ico i { font-size: 22px; color: var(--blue); }
.lp-ctx-val { font-family: var(--font-serif); font-size: 28px; color: var(--blue); font-weight: 400; letter-spacing: -0.01em; }
.lp-ctx-label { font-size: 13px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.lp-ctx-detail { font-size: 11px; color: var(--ink-2); line-height: 1.55; }
.lp-ctx-src {
  font-size: 10px; color: var(--ink-3);
  border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px;
}

/* ─── DIFERENCIADOR ──────────────────────────────────────── */
.lp-diff-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.lp-diff-text { display: flex; flex-direction: column; gap: 14px; }
.lp-diff-text p { font-size: 13px; color: var(--ink-2); line-height: 1.7; }
.lp-diff-pillars { display: flex; flex-direction: column; gap: 10px; }
.lp-diff-pillar {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  border: 1px solid var(--border); border-radius: var(--rad-lg); background: var(--white);
  transition: border-color .15s;
}
.lp-diff-pillar:hover { border-color: var(--placeholder-border); }
.lp-diff-pico {
  width: 44px; height: 44px; background: var(--blue-bg);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.lp-diff-pico i { font-size: 22px; color: var(--blue); }
.lp-diff-ph { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.lp-diff-pp { font-size: 11px; color: var(--ink-2); line-height: 1.5; }

/* ─── EQUIPO ─────────────────────────────────────────────── */
.lp-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-team-card {
  border: 1px solid var(--border); border-radius: var(--rad-lg);
  overflow: hidden; background: var(--white);
}
.lp-team-photo-wrap { position: relative; height: 160px; }
.lp-team-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lp-team-ph {
  width: 100%; height: 100%; background: linear-gradient(180deg, var(--blue-bg) 60%, #D2E3FC 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.lp-ph-head { width: 46px; height: 46px; border-radius: 50%; background: #C5D9F7; }
.lp-ph-body { width: 72px; height: 40px; background: #D2E3FC; border-radius: 50% 50% 0 0; margin-top: -6px; }
.lp-ph-info {
  position: absolute; bottom: 0; width: 100%;
  background: rgba(232,240,254,.93); padding: 5px;
  text-align: center; font-size: 9px; font-weight: 500; color: var(--blue);
}
.lp-team-body { padding: 14px; }
.lp-team-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.lp-team-role { font-size: 11px; font-weight: 500; color: var(--blue); margin-bottom: 8px; }
.lp-team-bio { font-size: 11px; color: var(--ink-2); line-height: 1.55; }

/* ─── TESTIMONIOS ────────────────────────────────────────── */
.lp-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-test-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--rad-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.lp-test-quote { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--ink); line-height: 1.6; }
.lp-test-result { font-size: 12px; font-weight: 500; color: var(--green-text); display: flex; align-items: center; gap: 6px; }
.lp-test-name { font-size: 11px; color: var(--ink-3); margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); }

/* ─── FAQ ────────────────────────────────────────────────── */
.lp-faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.lp-faq-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.lp-faq-ico {
  width: 44px; height: 44px; background: var(--blue-bg);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.lp-faq-ico i { font-size: 22px; color: var(--blue); }
.lp-faq-q { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.lp-faq-a { font-size: 12px; color: var(--ink-2); line-height: 1.65; }
.lp-faq-cta {
  margin-top: 28px; display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.lp-faq-cta p { font-size: 13px; color: var(--ink-2); }

/* ─── CTA FINAL ──────────────────────────────────────────── */
.lp-cta-final {
  position: relative; padding: 60px 0;
  background: var(--blue); overflow: hidden;
}
.lp-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: 0;
}
.lp-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(25,103,210,.92);
}
.lp-cta-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.lp-cta-h2 {
  font-family: var(--font-serif); font-size: 30px; font-weight: 400;
  color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em;
}
.lp-cta-p { font-size: 14px; color: rgba(255,255,255,.70); line-height: 1.65; max-width: 480px; }
.lp-cta-btns { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.lp-cta-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--white); color: var(--blue);
  border: none; border-radius: var(--rad-pill); padding: 13px 22px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  transition: opacity .15s; white-space: nowrap;
}
.lp-cta-wa:hover { opacity: .92; }
.lp-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35); border-radius: var(--rad-pill);
  padding: 11px 20px; font-family: var(--font-sans); font-size: 12px;
  transition: background .15s; white-space: nowrap;
}
.lp-cta-call:hover { background: rgba(255,255,255,.1); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.lp-footer { background: var(--footer-bg); padding: 44px 0 0; }
.lp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.lp-footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.lp-footer-logo-mark {
  width: 26px; height: 26px; background: var(--blue);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px;
}
.lp-footer-brand-name { font-family: var(--font-serif); font-size: 17px; color: var(--white); }
.lp-footer-tagline { font-size: 12px; color: #6B6B6B; line-height: 1.55; margin-bottom: 14px; }
.lp-footer-address { display: flex; flex-direction: column; gap: 5px; }
.lp-footer-contact {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; color: #6B6B6B; transition: color .12s;
}
.lp-footer-contact:hover { color: #9AA0A6; }
.lp-footer-contact i { font-size: 13px; color: #3C3C3C; }
.lp-footer-social { display: flex; gap: 7px; margin-top: 14px; }
.lp-soc {
  width: 28px; height: 28px; background: #2C2C2C;
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.lp-soc:hover { background: #3C3C3C; }
.lp-soc i { font-size: 14px; color: #6B6B6B; }
.lp-footer-col-title {
  font-size: 10px; font-weight: 500; color: #6B6B6B;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.lp-footer-link { display: block; font-size: 12px; color: #6B6B6B; margin-bottom: 6px; transition: color .12s; }
.lp-footer-link:hover { color: #9AA0A6; }
.lp-footer-bottom {
  border-top: 1px solid #2C2C2C; padding: 16px 28px;
  display: flex; justify-content: center; align-items: center;
}
.lp-footer-bottom p { font-size: 11px; color: #3C3C3C; }

/* ─── FAB WhatsApp ───────────────────────────────────────── */
.lp-fab {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 200;
  width: 52px; height: 52px; background: var(--wa);
  border-radius: 50%; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.40);
  transition: transform .15s;
}
.lp-fab:hover { transform: scale(1.08); }
.lp-fab i { font-size: 26px; color: var(--white); }

/* ═══════════════════════════════════════════ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .lp-nav-links { display: none; }
  .lp-honor-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-honor-step:nth-child(3) { border-right: none; }
  .lp-honor-step:nth-child(4) { border-top: 1px solid var(--border); }
  .lp-honor-step:nth-child(5) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-sec { padding: 40px 0; }
  .lp-sec-h2 { font-size: 24px; }

  /* Nav mobile */
  .lp-nav { padding: 0 20px; }
  .lp-nav-ctas { display: none; }
  .lp-nav-hamburger { display: flex; }

  /* Hero mobile */
  .lp-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .lp-hero-overlay {
    background: rgba(13,33,55,.88);
  }
  .lp-hero-h1 { font-size: 26px; }
  .lp-hero-right { order: -1; }
  .lp-form-card { box-shadow: none; }

  /* Honorarios */
  .lp-honor-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--rad);
  }
  .lp-honor-step { padding: 18px 12px; }
  .lp-honor-step:nth-child(2) { border-right: none; }
  .lp-honor-step:nth-child(3), .lp-honor-step:nth-child(4), .lp-honor-step:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .lp-honor-step:nth-child(4) { border-right: none; }
  .lp-honor-step:nth-child(5) { grid-column: span 2; border-right: none; }

  /* Servicios */
  .lp-svc-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Stats */
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-item:nth-child(2) { border-right: none; }
  .lp-stat-item:nth-child(3), .lp-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .lp-stat-item:nth-child(4) { border-right: none; }
  .lp-stat-val { font-size: 26px; }

  /* Proceso */
  .lp-proc-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-ph-scene { height: 200px; }

  /* Contexto */
  .lp-ctx-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Diferenciador */
  .lp-diff-layout { grid-template-columns: 1fr; gap: 24px; }

  /* Equipo */
  .lp-team-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Testimonios */
  .lp-test-grid { grid-template-columns: 1fr; gap: 10px; }

  /* CTA final */
  .lp-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-cta-h2 { font-size: 24px; }
  .lp-cta-btns { width: 100%; }
  .lp-cta-wa, .lp-cta-call { justify-content: center; }

  /* Footer */
  .lp-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-footer-bottom { padding: 16px 20px; }

  /* FAB */
  .lp-fab { display: flex; }

  /* Urgency */
  .lp-urgency { padding: 10px 20px; text-align: center; }
}

@media (max-width: 480px) {
  .lp-hero-h1 { font-size: 22px; }
  .lp-sec-h2 { font-size: 22px; }
}

/* ─── Print ──────────────────────────────────────────────── */
@media print {
  .lp-nav, .lp-urgency, .lp-fab, .lp-cta-final { display: none; }
}
