/* Desaloja Ya — hoja de estilos compartida
   Sistema visual tomado del handoff de diseño (dark, dorado, editorial).
   Colores, tipografías y animaciones son las del handoff, sin alterar
   ningún valor — solo se extendieron a componentes que el handoff
   no cubría (breadcrumbs, FAQ, formulario, tarjetas de abogados, etc.)
   siguiendo exactamente sus mismas convenciones visuales. */

:root {
  --bg: #080706;
  --bg-alt: #060504;
  --bg-card: #0a0806;
  --bg-card-2: #0c0a08;
  --bg-card-3: #0d0b09;
  --bg-card-hover: #111009;

  --ink: oklch(0.94 0.015 80);
  --ink-heading: oklch(0.95 0.012 82);

  --gold: oklch(0.74 0.11 76);
  --gold-bright: oklch(0.83 0.09 80);
  --gold-soft: oklch(0.80 0.10 76);
  --gold-em: oklch(0.82 0.09 78);

  --muted-1: oklch(0.58 0.02 80);
  --muted-2: oklch(0.52 0.02 80);
  --muted-3: oklch(0.46 0.02 80);
  --muted-4: oklch(0.40 0.02 80);
  --muted-5: oklch(0.34 0.02 80);

  --label: oklch(0.52 0.07 76);
  --label-soft: oklch(0.50 0.06 76);
  --label-faint: oklch(0.46 0.06 76);
  --label-ghost: oklch(0.40 0.04 76);

  --border-gold-005: rgba(180,140,60,0.05);
  --border-gold-007: rgba(180,140,60,0.07);
  --border-gold-01: rgba(180,140,60,0.1);
  --border-gold-018: rgba(180,140,60,0.18);
  --border-gold-03: rgba(180,140,60,0.3);
  --gold-wash: rgba(200,164,76,0.03);

  --whatsapp: #25914f;
  --whatsapp-dark: #1c7440;

  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-label: 'Space Grotesk', sans-serif;

  --max-width: 1180px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: oklch(0.38 0.07 76); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--bg); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 64px; }

/* ---------- Animaciones (idénticas al handoff) ---------- */

.reveal { opacity: 0; transform: translateY(44px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollbounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lineexpand { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes goldglow { 0%,100% { box-shadow: 0 0 24px rgba(200,164,76,0.18); } 50% { box-shadow: 0 0 48px rgba(200,164,76,0.42); } }
@keyframes pulsedot { 0%,100% { opacity:0.5; transform:scale(1); } 50% { opacity:1; transform:scale(1.4); } }

.liquid-glass {
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.08) 80%, rgba(255,255,255,0.28) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.hero-char.visible { opacity: 1; transform: translateX(0); }

.nav-link {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: rgba(255,255,255,1); }
.nav-link[aria-current="page"] { color: var(--gold-soft); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-char { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; }
}

/* ---------- Nav ---------- */

#main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 24px 24px; }
@media (min-width: 800px) { #main-nav { padding: 24px 48px; } }

.nav-inner {
  border-radius: 14px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: fadein 0.8s 0.1s both;
  border: 1px solid rgba(255,255,255,0.07);
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark span { color: var(--gold-soft); }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links li { display: flex; }
@media (min-width: 1080px) { .nav-links { display: flex; } }

.nav-cta {
  background: #fff;
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: rgba(240,240,235,1); transform: translateY(-1px); color: var(--bg); }

/* ---------- Migas de pan ---------- */

.breadcrumbs {
  position: relative;
  z-index: 5;
  padding: 128px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 800px) { .breadcrumbs { padding: 140px 48px 0; } }
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-4);
}
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--border-gold-03); }
.breadcrumbs a { color: var(--muted-3); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs [aria-current="page"] { color: var(--label); }

/* ---------- Hero de la portada (con video/label) ---------- */

.hero-pilar {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}
.hero-pilar video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 260px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1; pointer-events: none;
}
.hero-body { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 24px 56px; }
@media (min-width: 800px) { .hero-body { padding: 0 48px 72px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; align-items: end; gap: 32px; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 3fr 2fr; gap: 48px; } }

.hero-heading {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px; line-height: 1.75; max-width: 480px;
  opacity: 0; transition: opacity 1s 0.8s;
}
.hero-sub.visible { opacity: 1; }
.hero-sub strong { color: var(--gold-em); font-weight: 400; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; transition: opacity 1s 1.2s; }
.hero-btns.visible { opacity: 1; }

.hero-tagbox { display: flex; align-items: flex-end; justify-content: flex-end; opacity: 0; transition: opacity 1s 1.4s; }
.hero-tagbox.visible { opacity: 1; }
.hero-tagbox-inner {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 22px 32px;
  font-family: var(--font-serif); font-size: clamp(20px,2.2vw,30px); font-weight: 400;
  color: #fff; line-height: 1.55; letter-spacing: 0.01em;
}
.hero-tagbox-inner em { color: var(--gold-soft); font-style: normal; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadein 1s 2s both; z-index: 3;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.scroll-hint svg { animation: scrollbounce 2.4s infinite; }

/* ---------- Hero de satélite (sin video, mismo lenguaje) ---------- */

.hero-satelite {
  position: relative;
  padding: 150px 24px 72px;
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 800px) { .hero-satelite { padding: 168px 48px 88px; } }
.hero-satelite .container { padding: 0; max-width: 860px; margin: 0; }
.hero-satelite .hero-heading {
  font-size: clamp(34px, 5.2vw, 66px);
  margin-bottom: 22px;
}
.hero-satelite .hero-sub { opacity: 1; transition: none; max-width: 640px; font-size: 17px; }

/* ---------- Marquee ---------- */

.marquee-wrap {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border-gold-007);
  border-bottom: 1px solid var(--border-gold-007);
  background: var(--bg-alt);
}
.marquee-track { white-space: nowrap; display: inline-block; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: oklch(0.34 0.055 76);
}

/* ---------- Micro-labels y titulares de sección ---------- */

.section { padding: 100px 24px; }
@media (min-width: 800px) { .section { padding: 120px 64px; } }
.section-tight { padding-top: 64px; }
.section .container { padding: 0; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-label); font-size: 10px; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--label);
  margin-bottom: 22px;
}
h1, h2 { font-family: var(--font-serif); color: var(--ink-heading); }
h2 {
  font-size: clamp(34px, 4.2vw, 58px); font-weight: 700; line-height: 1.08;
  margin-bottom: 28px;
}
h2 em { color: var(--gold); font-style: italic; }
h3 { font-family: var(--font-serif); font-weight: 600; color: var(--ink-heading); font-size: 23px; margin-bottom: 10px; }

p { font-size: 15px; font-weight: 300; color: var(--muted-1); line-height: 1.85; margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
.content-measure { max-width: 68ch; }
strong { font-weight: 500; color: var(--ink); }
em { color: var(--gold-em); font-style: italic; }

.content a { color: var(--gold-soft); text-decoration: underline; text-decoration-color: rgba(200,164,76,0.35); text-underline-offset: 3px; }
.content a:hover { color: var(--gold-bright); }

/* ---------- Bloque "En resumen" ---------- */

.resumen { padding: 44px; background: var(--bg-card-2); border: 1px solid var(--border-gold-01); }
.resumen ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.resumen li {
  display: flex; align-items: center; gap: 18px;
  padding: 15px 20px; border: 1px solid var(--border-gold-01); background: var(--gold-wash);
}
.resumen li::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; transform: rotate(45deg); }
.resumen li span { font-size: 14px; font-weight: 300; color: var(--muted-2); }

/* ---------- Botones y CTA ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); color: #fff; }
.btn-glass { color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.btn-glass:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-link {
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 400;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.3);
  padding: 14px 4px; transition: color 0.25s;
}
.btn-link:hover { color: #fff; }
.btn-gold {
  background: var(--gold); color: #08070a;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 22px 60px;
  text-decoration: none; transition: all 0.35s;
  animation: goldglow 3.5s 1s infinite; display: inline-flex; align-items: center; gap: 12px;
}
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(200,164,76,0.38); color: #08070a; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.cta-block { padding: 44px; background: var(--bg-card-2); border: 1px solid var(--border-gold-01); }
.cta-block p { color: var(--ink); font-size: 16px; margin-bottom: 24px; }

.cta-final { padding: 148px 24px; position: relative; overflow: hidden; border-top: 1px solid rgba(180,140,60,0.08); }
@media (min-width: 800px) { .cta-final { padding: 148px 64px; } }
.cta-final .glow-1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(160,120,48,0.08) 0%, transparent 68%); pointer-events: none; }
.cta-final .ring-1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 320px; height: 320px; border: 1px solid rgba(180,140,60,0.06); border-radius: 50%; }
.cta-final .ring-2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 560px; height: 560px; border: 1px solid rgba(180,140,60,0.04); border-radius: 50%; }
.cta-final-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(40px,7vw,80px); line-height: 0.98; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-final .divider { width: 56px; height: 1px; background: var(--gold); margin: 40px auto; opacity: 0.55; }
.cta-final p { font-size: 16px; line-height: 1.85; margin-bottom: 52px; }
.availability { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
.availability .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; opacity: 0.7; animation: pulsedot 2.8s infinite; }
.availability span { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label-ghost); }

/* ---------- Tabla ---------- */

.table-wrap { overflow-x: auto; border: 1px solid var(--border-gold-01); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border-gold-01); }
th { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label); font-weight: 400; }
td { color: var(--muted-1); font-weight: 300; }
tr:last-child td { border-bottom: none; }

/* ---------- Requisitos / pasos numerados ---------- */

.pasos { display: grid; grid-template-columns: repeat(1,1fr); }
@media (min-width: 800px) { .pasos { grid-template-columns: repeat(3,1fr); } }
.paso {
  padding: 48px 40px; border: 1px solid var(--border-gold-01);
  position: relative; overflow: hidden; transition: border-color 0.4s;
}
@media (min-width: 800px) {
  .pasos .paso { border-right: none; }
  .pasos .paso:last-child { border-right: 1px solid var(--border-gold-01); }
}
.paso:hover { border-color: var(--border-gold-03); }
.paso .num { font-family: var(--font-label); font-size: 60px; font-weight: 700; color: rgba(180,140,60,0.1); line-height: 1; margin-bottom: 30px; letter-spacing: -0.04em; }
.paso .rule { width: 36px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.paso h3 { font-size: 24px; margin-bottom: 16px; line-height: 1.25; }
.paso p { font-size: 14px; }

/* ---------- Requisitos vía rápida (portada) ---------- */

.requisitos { display: flex; flex-direction: column; gap: 2px; }
.requisito {
  background: var(--bg-card-3); border: 1px solid var(--border-gold-01);
  transition: border-color 0.3s, background-color 0.3s;
}
.requisito:hover { border-color: var(--border-gold-03); background: var(--bg-card-hover); }
.requisito-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 28px; background: none; border: none; margin: 0;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
}
.requisito-trigger .row-text { display: flex; align-items: baseline; font-family: var(--font-sans); gap: 10px; }
.requisito-trigger .req-num { font-family: var(--font-label); color: var(--label-ghost); font-size: 13px; }
.requisito-trigger .req-label { font-size: 14px; font-weight: 400; color: var(--ink); }
.requisito-trigger svg { color: var(--muted-4); transition: transform 0.25s, color 0.2s; flex-shrink: 0; }
.requisito:hover .requisito-trigger svg { color: var(--gold); transform: translateX(3px); }
.requisito.is-open .requisito-trigger svg { color: var(--gold); transform: rotate(90deg); }
.requisito.is-open:hover .requisito-trigger svg { transform: rotate(90deg) translateX(0); }

.requisito-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.requisito-panel-inner { overflow: hidden; }
.requisito-panel p {
  font-size: 13px; color: var(--muted-1); line-height: 1.75; max-width: 62ch;
  margin: 0; padding: 0 28px 22px;
}
.requisito.is-open .requisito-panel {
  grid-template-rows: 1fr;
}
@media (prefers-reduced-motion: reduce) {
  .requisito-panel { transition: none; }
}

.panel-note { font-size: 13px; color: var(--muted-3); line-height: 1.8; margin-top: 20px; }

/* ---------- Diferenciadores / situaciones (filas con ícono) ---------- */

.icon-rows { display: flex; flex-direction: column; gap: 2px; }
.icon-row {
  padding: 36px 40px; border: 1px solid var(--border-gold-01); background: var(--bg-card-3);
  display: flex; gap: 28px; align-items: flex-start; transition: all 0.35s;
}
.icon-row:hover { border-color: var(--border-gold-03); background: var(--bg-card-hover); transform: translateX(4px); }
.icon-box { width: 44px; height: 44px; border: 1px solid oklch(0.48 0.07 76); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-row .tag {
  display: inline-block; font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--label-faint); margin-bottom: 8px;
}

/* ---------- Abogados ---------- */

.abogados-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 700px) { .abogados-grid { grid-template-columns: 1fr 1fr; } }
.abogado-card { padding: 40px; border: 1px solid var(--border-gold-01); background: var(--bg-card-3); }
.abogado-photo {
  width: 100%; aspect-ratio: 4/3; margin-bottom: 24px;
  border: 1px solid var(--border-gold-018);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-4);
  overflow: hidden;
}
.abogado-photo img { width: 100%; height: 100%; object-fit: cover; }
.abogado-card h3 { margin-bottom: 6px; }
.abogado-card .role { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label-soft); margin-bottom: 14px; }
.abogado-card p { font-size: 14px; }

/* ---------- FAQ ---------- */

.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: 30px 0; border-top: 1px solid var(--border-gold-01); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--border-gold-01); }
.faq-item h3 { font-size: 21px; margin-bottom: 12px; }
.faq-item p { font-size: 14px; }

/* ---------- Enlaces a satélites ---------- */

.pilar-links { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 700px) { .pilar-links { grid-template-columns: 1fr 1fr; } }
.pilar-links a {
  display: block; padding: 28px 32px; border: 1px solid var(--border-gold-01);
  background: var(--bg-card-3); text-decoration: none; transition: all 0.3s;
}
.pilar-links a:hover { border-color: var(--border-gold-03); background: var(--bg-card-hover); }
.pilar-links strong { display: block; font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--ink-heading); margin-bottom: 8px; }
.pilar-links span { font-size: 13px; color: var(--muted-2); line-height: 1.7; }

/* ---------- Formulario ---------- */

.form-section { padding: 44px; background: var(--bg-card-2); border: 1px solid var(--border-gold-01); }
.form-grid { display: grid; gap: 18px; margin-top: 28px; }
label {
  display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--label); margin-bottom: 8px;
}
input, textarea {
  width: 100%; padding: 14px 16px; background: var(--bg-alt);
  border: 1px solid var(--border-gold-01); color: var(--ink);
  font-family: var(--font-sans); font-size: 14px; font-weight: 300;
}
input:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--muted-4); margin-top: 10px; line-height: 1.7; }
.form-submit {
  background: var(--gold); color: #08070a; font-family: var(--font-sans);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border: none; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: var(--gold-bright); }

/* ---------- Compartir ---------- */

.share-row { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.btn-share {
  background: transparent; border: 1px solid var(--border-gold-01); color: var(--muted-1);
  padding: 10px 20px; font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-share:hover { border-color: var(--gold); color: var(--gold-soft); }
.share-feedback { font-size: 12px; color: var(--gold-soft); }

/* ---------- Footer ---------- */

.site-footer {
  padding: 44px 24px; border-top: 1px solid rgba(180,140,60,0.09);
  display: flex; flex-direction: column; gap: 28px; background: var(--bg-alt);
}
@media (min-width: 800px) { .site-footer { padding: 44px 64px; flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-brand .logo-mark { display: inline-block; font-size: 19px; margin-bottom: 6px; }
.footer-brand p { font-size: 12px; font-weight: 300; color: var(--muted-5); letter-spacing: 0.04em; margin: 0; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col .eyebrow { margin-bottom: 14px; font-size: 9px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--muted-2); text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom-note { font-size: 11px; color: var(--muted-5); }
@media (min-width: 800px) { .footer-bottom-note { text-align: right; } }

/* ---------- Barra CTA fija en móvil ---------- */

.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: none; gap: 1px; background: var(--border-gold-01);
  transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 10px; text-decoration: none; font-family: var(--font-sans);
  font-weight: 500; font-size: 13px;
}
.mobile-cta-bar .cta-wsp { background: var(--whatsapp); color: #fff; }
@media (max-width: 899px) { .mobile-cta-bar { display: flex; } }

/* ---------- Utilidades ---------- */

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: #08070a;
  padding: 10px 16px; z-index: 1000; font-family: var(--font-sans); font-weight: 500; text-decoration: none;
}
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
