/* ============================================================
   AV DETAILING BARCELONA — hoja de estilos a medida
   Paleta: grafito profundo + zafiro vivo + champán, pensada para
   que la fotografía real (carrocerías negras, cromados, vapor)
   sea la protagonista. Ver branding.json para el porqué.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --mk-primario: #2A5CFF;
  --mk-secundario: #C9A961;
  --mk-fondo: #0B0D12;
  --mk-texto: #F5F6F8;

  --bg: #0B0D12;
  --bg-1: #14161D;
  --bg-2: #1B1E27;
  --line: rgba(245, 246, 248, 0.09);
  --line-strong: rgba(245, 246, 248, 0.18);
  --blue: #2A5CFF;
  --blue-soft: #5C82FF;
  --gold: #C9A961;
  --text: #F5F6F8;
  --muted: #9BA1AF;
  --muted-2: #6E7481;

  --f-head: 'Syne', 'Arial Black', sans-serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  --container: 1240px;
  --radius: 18px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

.services-ticker, .mk-marquee { max-width: 100vw; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; scroll-margin-top: 84px; }
#contacto { scroll-margin-top: 84px; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: .6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; max-width: 52ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.alt { background: var(--bg-1); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-body); font-weight: 700; font-size: .95rem;
  padding: .95em 1.6em; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, background .3s, border-color .3s;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--blue) 70%, transparent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px color-mix(in srgb, var(--blue) 80%, transparent); }
.btn-whatsapp { background: #25D366; color: #06210f; box-shadow: 0 10px 30px -8px rgba(37,211,102,.55); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(37,211,102,.65); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--blue-soft); background: rgba(42,92,255,.08); }
.btn-sm { padding: .7em 1.2em; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.1rem 0;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
#site-header.is-scrolled {
  background: rgba(11,13,18,.86);
  backdrop-filter: blur(14px) saturate(140%);
  padding: .7rem 0;
  border-bottom-color: var(--line);
}
#site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand-name { font-family: var(--f-head); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--f-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a { font-size: .88rem; font-weight: 600; color: var(--muted); transition: color .25s; position: relative; }
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.tel-link { display: flex; align-items: center; gap: .5em; font-weight: 700; font-size: .92rem; color: var(--text); }
.tel-link svg { width: 1.05em; height: 1.05em; color: var(--gold); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: transparent;
  align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

#mobile-nav {
  position: fixed; inset: 0; z-index: 490; background: rgba(9,10,14,.98);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .35s ease, transform .35s ease;
}
#mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
#mobile-nav a { font-family: var(--f-head); font-size: 1.6rem; font-weight: 700; color: var(--text); }
#mobile-nav .hero-ctas { margin-top: 1rem; justify-content: center; width: 100%; padding: 0 1.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 7rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(6,7,10,.96) 4%, rgba(6,7,10,.55) 42%, rgba(6,7,10,.35) 65%, rgba(6,7,10,.72) 100%),
    linear-gradient(90deg, rgba(6,7,10,.55) 0%, transparent 45%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.hero-price {
  display: inline-flex; align-items: baseline; gap: .5em;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  padding: .5em 1.1em; border-radius: 999px; margin-bottom: 1.4rem;
  font-size: .85rem; font-weight: 600; color: var(--muted);
}
.hero-price b { font-family: var(--f-head); font-size: 1.15em; color: var(--text); }

.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); max-width: 16ch; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--blue-soft); }
.hero-claim { margin-top: 1.5rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #D7DAE1; max-width: 44ch; font-weight: 500; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.3rem; }

.hero-usps { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.75rem; padding-top: 1.9rem; border-top: 1px solid var(--line); }
.hero-usp { display: flex; align-items: center; gap: .6em; font-size: .85rem; font-weight: 600; color: var(--muted); }
.hero-usp svg { width: 1.2em; height: 1.2em; color: var(--gold); flex-shrink: 0; }

.scroll-cue {
  position: absolute; right: clamp(1.25rem,4vw,2.5rem); bottom: 2rem; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--muted); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after { content:""; writing-mode: horizontal-tb; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); }

/* ---------- Marquee de servicios ---------- */
.services-ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); padding: 1.1rem 0; }
.services-ticker .mk-marquee-track { align-items: center; }
.tick-item { display: inline-flex; align-items: center; gap: .9rem; font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; }
.tick-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Selector de servicio (2 cards grandes) ---------- */
.picker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.picker-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem;
  border: 1px solid var(--line);
}
.picker-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.picker-card::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,13,18,.1) 0%, rgba(11,13,18,.55) 45%, rgba(11,13,18,.97) 100%); z-index:1; }
.picker-card:hover img { transform: scale(1.06); }
.picker-card > * { position: relative; z-index: 2; }
.picker-card .kicker { color: var(--gold); text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.picker-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: .5rem; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.7); }
.picker-card p { color: #E4E6EB; margin-top: .6rem; max-width: 34ch; text-shadow: 0 1px 10px rgba(0,0,0,.8); }
.picker-card .btn { margin-top: 1.4rem; align-self: flex-start; }

.chip-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.chip { border: 1px solid var(--line-strong); border-radius: 999px; padding: .6em 1.15em; font-size: .84rem; font-weight: 600; color: var(--muted); transition: all .25s; }
.chip:hover { color: var(--text); border-color: var(--blue-soft); background: rgba(42,92,255,.1); }

/* ---------- Desglose 3 columnas ---------- */
.breakdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.breakdown-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.breakdown-card.is-accent { background: linear-gradient(160deg, color-mix(in srgb, var(--blue) 22%, var(--bg-1)), var(--bg-1)); border-color: color-mix(in srgb, var(--blue) 40%, var(--line)); }
.breakdown-card .kicker { font-size: .68rem; }
.breakdown-card h3 { font-size: 1.4rem; margin-top: .5rem; }
.breakdown-card p { color: var(--muted); margin-top: .7rem; font-size: .93rem; }
.check-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .65rem; }
.check-list li { display: flex; align-items: center; gap: .65em; font-size: .88rem; font-weight: 500; color: #D7DAE1; }
.check-list svg { width: 1.05em; height: 1.05em; color: var(--gold); flex-shrink: 0; }

/* ---------- Tratamientos (cerámico, cristales, llantas, faros) ---------- */
.treat-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; }
.treat-feature { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; border: 1px solid var(--line); }
.treat-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.treat-feature::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(6,7,10,.97) 0%, rgba(6,7,10,.82) 40%, rgba(6,7,10,.25) 75%, transparent 100%); }
.treat-feature-body { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.treat-feature-body .kicker { text-shadow: 0 1px 10px rgba(0,0,0,.9); }
.treat-feature-body h3 { color: #fff; font-size: 1.6rem; text-shadow: 0 2px 18px rgba(0,0,0,.85); }
.treat-feature-body p { color: #E4E6EB; margin-top: .6rem; max-width: 36ch; text-shadow: 0 1px 10px rgba(0,0,0,.85); }

.treat-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.treat-mini { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.treat-mini img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.treat-mini h4 { font-size: 1.05rem; }
.treat-mini p { color: var(--muted); font-size: .85rem; margin-top: .35rem; }

/* ---------- Antes / Después slider ---------- */
.ba-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.ba-slider {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); user-select: none; touch-action: pan-y;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; width: var(--ba-pos, 50%); }
.ba-slider .ba-before-wrap img { width: var(--ba-w, 100%); max-width: none; }
.ba-tag { position: absolute; top: 1rem; z-index: 3; font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .4em .85em; border-radius: 999px; backdrop-filter: blur(6px); }
.ba-tag.ba-tag-before { left: 1rem; background: rgba(0,0,0,.55); color: #fff; }
.ba-tag.ba-tag-after { right: 1rem; background: color-mix(in srgb, var(--blue) 75%, black 10%); color: #fff; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); z-index: 4;
  width: 3px; background: #fff; transform: translateX(-50%);
  cursor: ew-resize; box-shadow: 0 0 0 1px rgba(0,0,0,.3);
}
.ba-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; color: #0B0D12; box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.ba-handle-grip svg { width: 20px; height: 20px; }
.ba-caption { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1rem; gap: 1rem; }
.ba-caption h4 { font-size: 1.05rem; }
.ba-caption span { color: var(--muted); font-size: .8rem; }

/* ---------- Vídeos ---------- */
.video-native-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1/1; background: #000; }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-label { position: absolute; left: 1rem; top: 1rem; z-index: 2; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.5); padding: .4em .8em; border-radius: 999px; backdrop-filter: blur(6px); pointer-events: none; }

.reels-row { display: flex; gap: 1.2rem; margin-top: 1.2rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.reels-row::-webkit-scrollbar { display: none; }
.reel { position: relative; flex: 0 0 auto; width: 210px; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 40%); pointer-events: none; }
.reel-tag { position: absolute; left: .8rem; bottom: .8rem; z-index: 2; color: #fff; font-size: .72rem; font-weight: 700; display: flex; align-items: center; gap: .4em; }
.reel-tag .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff4747; box-shadow: 0 0 0 3px rgba(255,71,71,.25); }

/* ---------- Galería clásicos / alta gama ---------- */
.gallery-masonry { columns: 4 220px; column-gap: 1rem; }
.gallery-masonry figure { break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.gallery-masonry img { width: 100%; height: auto; display: block; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.gallery-masonry figure:hover img { transform: scale(1.05); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-1); }
.stat .mk-counter { font-family: var(--f-head); font-size: clamp(2.1rem, 4vw, 2.7rem); font-weight: 800; color: var(--blue-soft); display: block; }
.stat span.label { color: var(--muted); font-size: .82rem; font-weight: 600; margin-top: .4rem; display: block; }

/* ---------- Hogar / Barcos ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.split-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-1); display: flex; flex-direction: column; }
.split-card .split-media { aspect-ratio: 16/10; overflow: hidden; }
.split-card .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-card-body { padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.split-card-body h3 { font-size: 1.35rem; }
.split-card-body p { color: var(--muted); font-size: .92rem; }
.split-card-body .tag-line { color: var(--gold); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Empresas banner ---------- */
.fleet-banner {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(120deg, #12213F, #0B0D12 70%);
  border: 1px solid var(--line-strong);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.fleet-banner h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); max-width: 20ch; }
.fleet-banner p { color: var(--muted); margin-top: .6rem; max-width: 42ch; }

/* ---------- Zona y horario ---------- */
.zone-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; align-items: stretch; }
.zone-map-visual {
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-1);
  position: relative; overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center;
}
.zone-map-visual svg { width: 78%; opacity: .9; }
.zone-map-visual .pulse-pin { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--blue-soft); box-shadow: 0 0 0 6px rgba(92,130,255,.22); }
.schedule-card { border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-1); padding: 2rem; display: flex; flex-direction: column; }
.schedule-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.schedule-row:last-of-type { border-bottom: none; }
.schedule-row span:first-child { font-weight: 600; color: var(--muted); font-size: .92rem; }
.schedule-row span:last-child { font-family: var(--f-head); font-weight: 700; font-size: 1.05rem; }
.schedule-note { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px dashed var(--line-strong); color: var(--muted); font-size: .85rem; display: flex; gap: .6em; align-items: flex-start; }
.schedule-note svg { width: 1.2em; height: 1.2em; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ---------- Cierre / footer ---------- */
#cierre { background: var(--bg-1); border-top: 1px solid var(--line); padding: clamp(3.5rem, 8vw, 6rem) 0 2rem; }
.cierre-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.cierre-cta h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 14ch; }
.cierre-cta p { color: var(--muted); margin-top: 1rem; max-width: 40ch; }
.cierre-cta .hero-ctas { margin-top: 1.8rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
.contact-item { display: flex; gap: .8rem; align-items: flex-start; }
.contact-item svg { width: 1.3em; height: 1.3em; color: var(--gold); flex-shrink: 0; margin-top: .15em; }
.contact-item .label { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.contact-item .value { font-size: .98rem; font-weight: 600; margin-top: .15rem; }
.contact-item a.value:hover { color: var(--blue-soft); }

.cierre-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; }
.social-row { display: flex; gap: .8rem; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .25s; }
.social-row a:hover { border-color: var(--blue-soft); background: rgba(42,92,255,.12); }
.social-row svg { width: 1.05em; height: 1.05em; }
.legal-row { display: flex; gap: 1.4rem; flex-wrap: wrap; color: var(--muted-2); font-size: .8rem; }
.legal-row span { color: var(--muted-2); }

/* ---------- WhatsApp flotante ---------- */
.float-wa {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
}
.float-wa svg { width: 28px; height: 28px; color: #06210f; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .tel-link { display: none; }
}

@media (max-width: 560px) {
  .header-actions .btn-whatsapp { display: none; }
  .picker-grid, .treat-grid, .ba-gallery, .video-native-grid, .split-grid, .zone-grid, .cierre-top { grid-template-columns: 1fr; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .treat-mini-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2 160px; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 6rem; }
  .hero-inner { padding-bottom: 6.5rem; }
  .hero-usps { gap: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .fleet-banner { flex-direction: column; align-items: flex-start; }
  .fleet-banner .btn { width: 100%; }
  .scroll-cue { display: none; }
  .reel { width: 168px; }
  .ba-handle-grip { width: 38px; height: 38px; }
  .legal-row { padding-right: 72px; }
}
