*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: #17181C; }
body { margin: 0; overflow-x: hidden; background: transparent; }

:root {
  --bg: #F1EFEA;
  --surface: #FFFFFF;
  --surface-alt: #E8E4DB;
  --ink: #17181C;
  --ink-dim: #1C1D21;
  --border: #DBD7CC;
  --accent: #F5333F;
  --accent-ink: #FFFFFF;
  --accent-dim: #C92A34;
  --track: #D6D2C6;
  --shadow: 0 24px 48px -28px rgba(23,24,28,0.28);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
  --measure: 60ch;
  --cut: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16171B;
    --surface: #1D1F23;
    --surface-alt: #26282D;
    --ink: #ECEAE4;
    --ink-dim: #B7B5B0;
    --border: #34363C;
    --accent: #F5333F;
    --accent-ink: #16171B;
    --accent-dim: #FF5561;
    --track: #33353B;
    --shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
  }
}
:root[data-theme="dark"] {
  --bg: #16171B; --surface: #1D1F23; --surface-alt: #26282D; --ink: #ECEAE4; --ink-dim: #B7B5B0;
  --border: #34363C; --accent: #F5333F; --accent-ink: #16171B; --accent-dim: #FF5561; --track: #33353B;
  --shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
}
:root[data-theme="light"] {
  --bg: #F1EFEA; --surface: #FFFFFF; --surface-alt: #E8E4DB; --ink: #17181C; --ink-dim: #1C1D21;
  --border: #DBD7CC; --accent: #F5333F; --accent-ink: #FFFFFF; --accent-dim: #C92A34; --track: #D6D2C6;
  --shadow: 0 24px 48px -28px rgba(23,24,28,0.28);
}

body {
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Fixed scroll-scrubbed video background ---------- */
.bg-video {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.bg-scrim {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg) 78%, transparent) 0%,
    color-mix(in srgb, var(--bg) 40%, transparent) 42%,
    color-mix(in srgb, var(--bg) 82%, transparent) 100%
  );
}
main, footer { position: relative; z-index: 2; }

/* Glass surfaces: let the video read through translucent panels */
.glass {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.glass-alt {
  background: color-mix(in srgb, var(--surface-alt) 85%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

/* Blurring a dozen live panels over a scrubbing video is expensive on mobile GPUs —
   trade the blur for a more opaque flat panel below the desktop breakpoint. */
@media (max-width: 760px) {
  .glass {
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .glass-alt {
    background: color-mix(in srgb, var(--surface-alt) 92%, transparent);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}

a { color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
  text-shadow:
    0 0 3px color-mix(in srgb, var(--bg) 100%, transparent),
    0 0 8px color-mix(in srgb, var(--bg) 100%, transparent),
    0 0 20px color-mix(in srgb, var(--bg) 95%, transparent);
}
p, .eyebrow, .footer-legal, .footer-nap, .footer-brands, .timeline-note {
  text-shadow:
    0 0 2px color-mix(in srgb, var(--bg) 100%, transparent),
    0 0 6px color-mix(in srgb, var(--bg) 100%, transparent),
    0 0 14px color-mix(in srgb, var(--bg) 95%, transparent),
    0 0 24px color-mix(in srgb, var(--bg) 90%, transparent);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.measure { max-width: var(--measure); }

.cut {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}
.cut-sm {
  --cut: 9px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Layout shell ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 48px); }
section { position: relative; }

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 12px; gap: 24px;
}
.brand-logo { height: 30px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.88rem; font-weight: 600;
}
.nav-links a { text-decoration: none; color: var(--ink-dim); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 980px) { .nav-links .hide-sm { display: none; } }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 32px; padding: 0; margin: 0;
  background: none; border: none; cursor: pointer; flex: none;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 980px) { .nav-toggle { display: flex; } }

.mobile-menu { display: none; flex-direction: column; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px clamp(20px, 5vw, 48px); font-weight: 700; font-size: 1rem;
  text-decoration: none; color: var(--ink); border-top: 1px solid var(--border);
}
.mobile-menu a:first-child { border-top: none; }
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 0.9rem;
  padding: 11px 20px;
  border: none; cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-dim); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--ink-dim); background: var(--surface-alt); }

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(48px, 9vw, 96px) clamp(56px, 10vw, 104px);
  background:
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--ink) 14%, transparent) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--ink) 14%, transparent) 0 1px, transparent 1px 88px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.04;
  margin-top: 14px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.lede {
  margin-top: 20px; font-size: 1.15rem; font-weight: 500; color: var(--ink-dim); max-width: 52ch;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.gauge-card {
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.gauge-card figcaption {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.06em; color: var(--ink-dim);
}
.gauge-card figcaption strong { color: var(--ink); font-family: var(--font); font-size: 0.95rem; }

.needle-group {
  transform-origin: 100px 110px;
  transform: rotate(-80deg);
  animation: settle 1.4s cubic-bezier(.2,.9,.2,1) 0.2s forwards;
}
@keyframes settle { to { transform: rotate(0deg); } }

/* ---------- Marcas strip ---------- */
.brands {
  padding-block: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.brand-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.brand-card {
  flex: 1 1 calc(33.333% - 16px * 2 / 3);
  min-width: 260px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 900px) { .brand-card { flex-basis: calc(50% - 8px); min-width: 220px; } }
@media (max-width: 560px) { .brand-card { flex-basis: 100%; min-width: 0; } }
.brand-card .logos {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  height: 92px;
}
.brand-card .logos img { max-height: 100%; width: auto; max-width: 100%; }
.brand-card .name { font-weight: 800; font-style: italic; font-size: 1rem; text-shadow: none; }
.brand-card .role { font-size: 0.85rem; font-weight: 500; color: var(--ink-dim); }

/* ---------- Positioning / timeline ---------- */
.positioning { padding-block: clamp(56px, 9vw, 100px); }
.pos-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
@media (max-width: 900px) { .pos-grid { grid-template-columns: 1fr; } }
.positioning h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 12px; }
.positioning .lede { margin-top: 18px; color: var(--ink-dim); font-size: 1.1rem; font-weight: 500; }
.positioning .callout {
  margin-top: 22px; padding: 16px 18px; border-left: 3px solid var(--accent);
  font-size: 0.95rem; color: var(--ink); text-shadow: none;
}

.timeline { position: relative; padding-top: 8px; }
.timeline-track {
  position: relative; height: 2px; background: var(--track); margin: 0 6px;
}
.timeline-track::after {
  content: ""; position: absolute; inset: 0; width: 62%;
  background: var(--accent);
}
.timeline-points { display: flex; justify-content: space-between; margin-top: -1px; }
.tp { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 25%; }
.tp .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent); margin-top: -6px; flex: none; }

@media (max-width: 560px) {
  .timeline-track { display: none; }
  .timeline-points {
    flex-direction: column; align-items: stretch; gap: 4px; margin-top: 0;
    border-left: 2px solid var(--track); padding-left: 18px;
  }
  .tp { flex-direction: row; align-items: center; width: 100%; gap: 14px; padding-block: 10px; }
  .tp .dot { margin-top: 0; margin-left: -24px; background: var(--bg); }
  .tp .km { flex: none; width: 78px; }
  .tp .tag { order: 0 !important; flex: 1; text-align: left; }
}
.tp .km { font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-dim); font-variant-numeric: tabular-nums; }
.tp .tag {
  font-size: 0.8rem; font-weight: 600; text-align: center; padding: 8px 10px;
  border: 1px solid var(--border); text-shadow: none;
}
.tp:nth-child(even) .tag { order: -1; }
.timeline-note { margin-top: 22px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-dim); }

/* ---------- Paquetes de mantenimiento ---------- */
.packages { padding-block: clamp(56px, 9vw, 100px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.packages-head { max-width: 60ch; }
.packages-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 12px; }
.packages-head p { margin-top: 16px; color: var(--ink-dim); font-size: 1.05rem; font-weight: 500; }
.package-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .package-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .package-grid { grid-template-columns: 1fr; } }
.package-card {
  border: 1px solid var(--border); padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.package-card .level { color: var(--accent); }
.package-code { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--accent); font-weight: 700; text-shadow: none; }
.package-card h3 { font-size: 1.15rem; font-style: normal; font-weight: 700; text-shadow: none; }
.package-card .dur { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; color: var(--ink-dim); }
.package-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.package-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.92rem; font-weight: 500; text-shadow: none;
}
.package-list .check { flex: none; width: 16px; height: 16px; margin-top: 2px; color: var(--accent); }
.package-fluids {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
}
.package-fluids .label { font-size: 0.8rem; font-weight: 700; text-shadow: none; }
.package-fluids .items { margin-top: 4px; font-size: 0.82rem; font-weight: 500; color: var(--ink-dim); text-shadow: none; }

/* ---------- Services ---------- */
.services { padding-block: clamp(56px, 9vw, 100px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-head { max-width: 60ch; }
.services-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 12px; }
.services-head p { margin-top: 16px; color: var(--ink-dim); font-size: 1.05rem; font-weight: 500; }
.service-list { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 700px) { .service-list { grid-template-columns: 1fr; } }
.service-item {
  padding: 22px clamp(18px, 3vw, 26px);
  display: flex; align-items: center; gap: 16px;
}
.service-item .name, .service-item .dur { text-shadow: none; }
.service-item .icon { flex: none; width: 34px; height: 34px; color: var(--accent); }
.service-item .body { flex: 1; }
.service-item .name { font-weight: 700; }
.service-item .dur { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; color: var(--ink-dim); margin-top: 4px; }

.service-inspection {
  margin-top: 2px;
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 30px);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 40px);
}
@media (max-width: 760px) { .service-inspection { grid-template-columns: 1fr; } }
.service-inspection .icon { flex: none; width: 34px; height: 34px; color: var(--accent); }
.service-inspection .name { font-weight: 700; margin-top: 12px; text-shadow: none; }
.service-inspection .dur { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; color: var(--ink-dim); margin-top: 4px; }
.service-inspection .desc { margin-top: 12px; color: var(--ink-dim); font-size: 0.98rem; font-weight: 500; text-shadow: none; }
.inspection-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.inspection-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; text-shadow: none;
}
.inspection-list .check { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--accent); }

/* ---------- Bulletins ---------- */
.bulletins { padding-block: clamp(56px, 9vw, 100px); }
.bulletins-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.bulletins-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 12px; }
.bulletin-carousel { position: relative; }
.bulletin-track {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-left: 1px;
  margin: 0; padding: 0 0 4px;
  list-style: none;
  scrollbar-width: none;
}
.bulletin-track::-webkit-scrollbar { display: none; }
.bulletin-card {
  flex: 0 0 clamp(260px, 32%, 360px);
  scroll-snap-align: start;
  border: 1px solid var(--border); padding: 22px;
  display: flex; flex-direction: column; gap: 14px; transition: border-color .15s;
}
@media (max-width: 900px) { .bulletin-card { flex-basis: 82%; } }
.bulletin-card:hover { border-color: var(--accent); }
.bulletin-thumb {
  margin: -22px -22px 4px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.bulletin-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bulletin-code { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--accent); font-weight: 700; text-shadow: none; }
.bulletin-card h3 { font-size: 1.1rem; font-style: normal; font-weight: 700; text-shadow: none; }
.bulletin-card p { margin: 0; font-size: 0.97rem; font-weight: 500; color: var(--ink-dim); flex: 1; text-shadow: none; }
.bulletin-link { font-size: 0.85rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.bulletin-link:hover { color: var(--accent); }
.bulletin-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.bulletin-nav button {
  width: 40px; height: 40px; border: 1px solid var(--border); background: transparent;
  color: var(--ink); font-size: 1.2rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.bulletin-nav button:hover { border-color: var(--accent); color: var(--accent); }
.bulletin-nav button:disabled { opacity: 0.35; cursor: default; border-color: var(--border); color: var(--ink); }
.bulletin-empty { color: var(--ink-dim); font-size: 1rem; font-weight: 500; }

/* ---------- Finish line CTA ---------- */
.finish {
  height: 22px;
  background-image: repeating-conic-gradient(var(--ink) 0% 25%, transparent 0% 50%);
  background-size: 22px 22px;
  opacity: 0.9;
}
.cta {
  padding-block: clamp(56px, 9vw, 96px);
  background: var(--ink); color: var(--bg);
  text-align: center;
}
.cta .eyebrow { color: var(--accent-dim, var(--accent)); text-shadow: none; }
.cta h2 { color: var(--bg); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: 14px; text-shadow: none; }
.cta p { margin-top: 14px; color: color-mix(in srgb, var(--bg) 70%, transparent); text-shadow: none; }
.cta .hero-ctas { justify-content: center; margin-top: 30px; }

/* ---------- Página de reserva ---------- */
.booking-intro { padding-block: clamp(48px, 8vw, 84px) clamp(24px, 4vw, 40px); }
.booking-intro h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.booking-intro .lede { margin-top: 18px; color: var(--ink-dim); font-size: 1.1rem; font-weight: 500; max-width: 60ch; }
.booking-form { padding-block: clamp(24px, 4vw, 40px) clamp(64px, 10vw, 100px); }
.booking-panel {
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 32px);
  color: var(--ink);
}
.booking-panel, .booking-panel * { text-shadow: none; }
.booking-panel .ea-standard { width: 100%; max-width: 550px; }
.booking-panel .ea-standard .disabled .block { background-color: var(--surface); }
.booking-panel .ea-standard .date,
.booking-panel .ea-standard .ui-datepicker,
.booking-panel .ea-standard .ui-datepicker-calendar { width: 100% !important; }
@media (max-width: 480px) {
  .booking-panel .ea-standard { white-space: normal; }
  .booking-panel .ea-standard .step label {
    display: block; width: 100%; text-align: left; padding-right: 0; margin-bottom: 4px;
  }
  .booking-panel .ea-standard .step select,
  .booking-panel .ea-standard .step input,
  .booking-panel .ea-standard .step textarea { width: 100% !important; margin-top: 4px; }
}
.booking-panel .ea-inline-widget,
.booking-panel #ea_wizard { max-width: none; margin: 0; }
.booking-panel .btn-primary,
.booking-panel .btn-ea {
  background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
}
.booking-panel .btn-primary:hover,
.booking-panel .btn-ea:hover { background: var(--accent-dim); border-color: var(--accent-dim); }

/* ---------- Entrada individual (boletín) ---------- */
.post-thumb { margin-bottom: 24px; border: 1px solid var(--border); overflow: hidden; }
.post-thumb img { width: 100%; height: auto; display: block; }
.post-content { max-width: 70ch; font-size: 1.02rem; line-height: 1.75; }
.post-content p { margin: 0 0 1.2em; color: var(--ink); }
.post-content p:last-child { margin-bottom: 0; }
.post-content em { color: var(--accent); font-style: italic; }
.post-content h2, .post-content h3 { margin: 1.4em 0 0.6em; text-shadow: none; }
.post-content ul, .post-content ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--ink); }
.post-back { margin-top: 24px; }
.post-back a { font-size: 0.9rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.post-back a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer { padding-block: 40px; border-top: 1px solid var(--border); }
footer .wrap { padding-block: 24px; }
.footer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brands { font-size: 0.92rem; font-weight: 500; color: var(--ink-dim); max-width: 46ch; }
.footer-legal { margin-top: 18px; font-size: 0.82rem; color: var(--ink-dim); max-width: 70ch; line-height: 1.6; }
.footer-legal a { text-decoration: underline; }
.footer-legal a:hover { color: var(--accent); }
.footer-nap { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--ink-dim); line-height: 1.7; }
.footer-nap a { text-decoration: underline; }
.footer-nap a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { color: var(--ink-dim); transition: opacity .15s, color .15s; line-height: 0; }
.footer-social a:hover { opacity: 0.8; }
.footer-social a[aria-label="Llámanos"]:hover { color: var(--accent); }

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  line-height: 0; box-shadow: 0 10px 24px -8px rgba(0,0,0,0.45);
  border-radius: 50%; transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.06); }
@media (max-width: 640px) { .whatsapp-float { right: 14px; bottom: 14px; } }
@media print { .whatsapp-float { display: none; } }

.footer-map { margin-top: 24px; }
.footer-map iframe {
  display: block; width: 100%; border: 1px solid var(--border);
  filter: grayscale(1) contrast(1.1);
}
.footer-map .map-link {
  display: inline-block; margin-top: 10px;
  font-size: 0.85rem; font-weight: 700; text-decoration: none; color: var(--ink);
}
.footer-map .map-link:hover { color: var(--accent); }
