/* ==========================================================================
   HIPOCASA · Broker Hipotecario Alcoy — Design System
   Estilo: "Hogar cálido" (editorial) · Verde pino + Terracota + Crema
   Fuentes: Fraunces (display) + Inter (texto)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --pine:          #1E3A34;   /* primary */
  --pine-dark:     #142A25;   /* hover oscuro */
  --pine-soft:     #2C4B43;   /* superficies verdes claras */
  --pine-700:      #16302A;

  --terra:         #E07A4B;   /* accent */
  --terra-dark:    #C25A2E;   /* accent hover / bg con texto claro */
  --terra-deep:    #A94E27;
  --terra-tint:    #F6E0D2;   /* fondo suave terracota */

  --cream:         #FAF6EF;   /* warm-bg */
  --cream-2:       #F3ECE0;   /* sección alterna */
  --sage:          #E4EAE0;   /* superficie verde pálida */

  --ink:           #1F2420;   /* texto principal (casi negro cálido) */
  --muted:         #6B6459;   /* texto secundario */
  --muted-2:       #8A8377;
  --border:        #E7DECF;   /* bordes cálidos */
  --border-soft:   #EFE7DA;
  --white:         #FFFFFF;

  /* Tipografía */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala tipográfica fluida */
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.44rem);
  --step-2:  clamp(1.44rem, 1.28rem + 0.8vw, 1.9rem);
  --step-3:  clamp(1.73rem, 1.5rem + 1.2vw, 2.5rem);
  --step-4:  clamp(2.07rem, 1.72rem + 1.8vw, 3.3rem);
  --step-5:  clamp(2.49rem, 2rem + 2.6vw, 4.2rem);

  /* Espaciado 8pt */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;

  /* Radios */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Sombras (2 niveles, suaves) */
  --sh-1: 0 1px 3px rgba(31, 36, 32, 0.06), 0 1px 2px rgba(31, 36, 32, 0.04);
  --sh-2: 0 10px 30px rgba(20, 42, 37, 0.10), 0 4px 10px rgba(20, 42, 37, 0.05);

  --container: 1200px;
  --nav-h: 68px;
}

/* ---------- Reset mínimo ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 2px; border-radius: 4px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--pine);
}
h1 { font-size: var(--step-5); font-weight: 600; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { max-width: 68ch; }
strong { font-weight: 600; color: var(--ink); }
small { font-size: var(--step--1); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-cream { background: var(--cream-2); }
.section-sage { background: var(--sage); }
.section-pine { background: var(--pine); color: var(--cream); }
.section-pine h1, .section-pine h2, .section-pine h3 { color: var(--white); }
.section-pine p { color: rgba(250, 246, 239, 0.82); }

.grid { display: grid; gap: var(--sp-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; gap: var(--sp-2); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: var(--sp-1);
}
.section-pine .eyebrow { color: var(--terra); }
.lead { font-size: var(--step-1); color: var(--muted); max-width: 62ch; }
.section-title { margin-bottom: var(--sp-2); }
.section-head { max-width: 720px; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  padding: 0.95em 1.6em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--terra); color: #24140c; box-shadow: var(--sh-1); }
.btn-primary:hover { background: var(--terra-dark); color: #fff; box-shadow: var(--sh-2); }

.btn-secondary { background: var(--pine); color: var(--cream); }
.btn-secondary:hover { background: var(--pine-dark); box-shadow: var(--sh-2); }

.btn-outline { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn-outline:hover { background: var(--pine); color: var(--cream); }

.section-pine .btn-outline { color: var(--cream); border-color: rgba(250,246,239,0.5); }
.section-pine .btn-outline:hover { background: var(--cream); color: var(--pine); border-color: var(--cream); }

.btn-ghost { background: transparent; color: var(--pine); padding-inline: 0.4em; }
.btn-ghost:hover { color: var(--terra-dark); }
.btn-lg { padding: 1.05em 1.9em; font-size: var(--step-1); }
.btn-block { width: 100%; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.4em 0.85em;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: var(--step--1); font-weight: 500; color: var(--ink);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.45em;
  padding: 0.5em 0.95em;
  border-radius: var(--r-pill);
  background: var(--terra-tint);
  color: var(--terra-deep);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.01em;
}
.section-pine .badge { background: rgba(224,122,75,0.18); color: #F6C9AE; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--border); }
.card h3 { font-size: var(--step-1); margin-bottom: var(--sp-1); }
.card p { color: var(--muted); font-size: var(--step-0); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sage); color: var(--pine);
  margin-bottom: var(--sp-2);
  font-size: 1.4rem;
}
.card-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  margin-top: var(--sp-2); font-weight: 600; color: var(--terra-dark);
}
.card-link:hover { gap: 0.7em; }
.card a.stretched::after {
  content: ""; position: absolute; inset: 0;
}
.card.rel { position: relative; }

/* Feature card (por qué elegirnos) */
.feature { display: flex; gap: var(--sp-2); align-items: flex-start; }
.feature-num {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--terra); color: #24140c; font-weight: 700;
  font-family: var(--font-display);
}

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--pine-700); color: rgba(250,246,239,0.85);
  font-size: var(--step--1);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: var(--sp-2); flex-wrap: wrap; }
.topbar a { color: inherit; display: inline-flex; align-items: center; gap: 0.4em; }
.topbar a:hover { color: var(--terra); }
.topbar-info { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
@media (max-width: 620px) { .topbar-hours { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: var(--sp-3); }
.brand { display: flex; align-items: center; gap: 0.6em; flex: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--pine); letter-spacing: -0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: var(--sp-3); }
.nav-menu a { font-weight: 500; font-size: 0.98rem; color: var(--ink); padding: 0.4em 0; position: relative; }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--terra); transition: width .2s ease;
}
.nav-menu a:hover::after, .nav-menu a[aria-current="page"]::after { width: 100%; }
.nav-menu a[aria-current="page"] { color: var(--pine); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: var(--sp-2); }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--pine); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 0.5rem clamp(1rem, 4vw, 1.5rem) 1rem;
    gap: 0; border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-2);
    max-height: 85vh; overflow-y: auto;
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: transform .22s ease, opacity .22s ease, visibility .22s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-menu a { font-size: 1.05rem; width: 100%; padding: 0.85em 0; border-bottom: 1px solid var(--border-soft); }
  .nav-menu a::after { display: none; }
  .nav-menu .nav-cta-mobile { border-bottom: 0; padding-top: 0.85rem; }
  .nav-cta-desktop { display: none; }
}
@media (min-width: 1001px) { .nav-cta-mobile { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--cream); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,42,37,0.72) 0%, rgba(20,42,37,0.60) 45%, rgba(20,42,37,0.80) 100%);
}
.hero-inner { padding-block: clamp(4rem, 12vw, 8rem); max-width: 780px; }
.hero h1 { color: var(--white); font-size: var(--step-5); margin-block: var(--sp-2); text-wrap: balance; }
.hero h1 .accent { color: var(--terra); font-style: italic; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1em; border-radius: var(--r-pill);
  background: rgba(250,246,239,0.12); border: 1px solid rgba(250,246,239,0.28);
  backdrop-filter: blur(4px);
  font-size: var(--step--1); font-weight: 600; color: var(--cream);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); }
.hero-services {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: var(--step--1);
  color: rgba(250,246,239,0.72); font-weight: 600; margin-bottom: var(--sp-2);
}
.hero-subtitle { font-size: var(--step-1); color: rgba(250,246,239,0.92); max-width: 60ch; }
.hero-ctas { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: var(--sp-4); }
.hero-trust { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid rgba(250,246,239,0.2); }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: var(--font-display); font-size: var(--step-3); font-weight: 600; color: var(--white); line-height: 1; }
.hero-trust-label { font-size: var(--step--1); color: rgba(250,246,239,0.75); margin-top: 4px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: var(--step-4); font-weight: 600; color: var(--terra); line-height: 1; }
.stat-label { color: var(--muted); font-size: var(--step--1); margin-top: var(--sp-1); }
.section-pine .stat-label { color: rgba(250,246,239,0.75); }

/* ---------- Proceso (pasos) ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-3); }
.step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.step-num {
  flex: none; counter-increment: step;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pine); color: var(--cream);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
}
.step-num::before { content: counter(step); }
.step h3 { font-size: var(--step-1); margin-bottom: 0.25em; }
.step p { color: var(--muted); }

/* ---------- Zonas ---------- */
.zonas-chips { display: flex; flex-wrap: wrap; gap: 0.6em; }
.zona-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.zona-list a {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.7em 1.1em; border-radius: var(--r-pill);
  background: var(--white); border: 1px solid var(--border); font-weight: 600; color: var(--pine);
  transition: .18s;
}
.zona-list a:hover { border-color: var(--terra); color: var(--terra-dark); transform: translateY(-2px); }

/* ---------- Testimonios ---------- */
.quote { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: var(--sp-4); box-shadow: var(--sh-1); }
.quote-stars { color: var(--terra); letter-spacing: 2px; margin-bottom: var(--sp-2); }
.quote p { font-style: italic; color: var(--ink); }
.quote-author { display: flex; align-items: center; gap: 0.7em; margin-top: var(--sp-3); }
.quote-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--pine); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote-meta { line-height: 1.3; }
.quote-name { font-weight: 600; }
.quote-place { font-size: var(--step--1); color: var(--muted); }

/* ---------- FAQ Accordion ---------- */
.accordion { max-width: 820px; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-trigger {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 1.15em 0; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2);
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 600; color: var(--pine);
}
.acc-trigger .acc-ico { flex: none; width: 28px; height: 28px; position: relative; transition: transform .25s; }
.acc-trigger .acc-ico::before, .acc-trigger .acc-ico::after {
  content: ""; position: absolute; background: var(--terra-dark); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.acc-trigger .acc-ico::before { width: 14px; height: 2.5px; }
.acc-trigger .acc-ico::after { width: 2.5px; height: 14px; transition: transform .25s; }
.acc-trigger[aria-expanded="true"] .acc-ico::after { transform: translate(-50%,-50%) scaleY(0); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.acc-panel-inner { padding-bottom: 1.2em; color: var(--muted); }
.acc-panel-inner p { max-width: none; }

/* ---------- Formulario ---------- */
.form { display: grid; gap: var(--sp-2); }
.form-row { display: grid; gap: var(--sp-2); grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35em; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: 0.85em 1em; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--white); color: var(--ink);
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(224,122,75,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid textarea { border-color: #C0392B; }
.field .error-msg { color: #C0392B; font-size: var(--step--1); display: none; }
.field.invalid .error-msg { display: block; }
.form-consent { display: flex; gap: 0.6em; align-items: flex-start; font-size: var(--step--1); color: var(--muted); }
.form-consent input { margin-top: 0.25em; flex: none; width: auto; }
.form-consent a { color: var(--terra-dark); text-decoration: underline; }
.form-note { font-size: var(--step--1); color: var(--muted-2); }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--sh-2); }
.form-success {
  display: none; padding: var(--sp-3); border-radius: var(--r-md);
  background: var(--sage); color: var(--pine); font-weight: 600; text-align: center;
}
.form-success.show { display: block; }

/* ---------- Split (imagen + texto) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--sh-2); width: 100%; }
.split-list { display: grid; gap: var(--sp-2); margin-top: var(--sp-3); }
.split-list li { display: flex; gap: 0.7em; align-items: flex-start; color: var(--muted); }
.split-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--sage); color: var(--pine); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 2px; }

/* ---------- CTA final ---------- */
.cta-band { background: var(--pine); color: var(--cream); border-radius: var(--r-lg); padding: clamp(2rem, 6vw, 4rem); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(250,246,239,0.85); margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding-block: var(--sp-2); font-size: var(--step--1); color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5em; align-items: center; }
.breadcrumb a:hover { color: var(--terra-dark); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.5em; color: var(--muted-2); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-dark); color: rgba(250,246,239,0.78); padding-block: var(--sp-6) var(--sp-3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-4); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-2); }
.site-footer a { color: rgba(250,246,239,0.78); }
.site-footer a:hover { color: var(--terra); }
.footer-links { display: grid; gap: 0.6em; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(250,246,239,0.6); }
.footer-brand p { color: rgba(250,246,239,0.7); font-size: var(--step--1); margin-top: var(--sp-2); }
.footer-contact li { display: flex; gap: 0.6em; align-items: flex-start; margin-bottom: 0.6em; font-size: var(--step--1); }
.footer-social { display: flex; gap: 0.6em; margin-top: var(--sp-2); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(250,246,239,0.1); display: grid; place-items: center; transition: .18s; }
.footer-social a:hover { background: var(--terra); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(250,246,239,0.14); margin-top: var(--sp-5); padding-top: var(--sp-3); display: flex; justify-content: space-between; gap: var(--sp-2); flex-wrap: wrap; font-size: var(--step--1); color: rgba(250,246,239,0.6); }
.footer-bottom a { text-decoration: underline; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-2); transition: transform .18s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Utilidades ---------- */
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); } .mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); }
.mb-2 { margin-bottom: var(--sp-2); } .mb-3 { margin-bottom: var(--sp-3); }
.text-muted { color: var(--muted); }
.prose p { margin-bottom: var(--sp-2); }
.prose h2 { margin-top: var(--sp-4); margin-bottom: var(--sp-2); }
.prose h3 { margin-top: var(--sp-3); margin-bottom: var(--sp-1); }
.prose ul { display: grid; gap: 0.6em; margin: var(--sp-2) 0; }
.prose ul li { display: flex; gap: 0.6em; }
.prose ul li::before { content: "—"; color: var(--terra-dark); flex: none; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--pine); color: #fff; padding: 0.7em 1.2em; z-index: 200; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }
