/* ═══════════════════════════════════════════════════════════
   MOTO PARTES VC — CINEMATIC EDITION
   Estilo referencia: foto pantalla completa, texto encima
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:   #dc2626; --red-d:  #b91c1c; --red-glow: rgba(220,38,38,.25);
  --dark:  #09090b; --dark2:  #18181b; --dark3:  #27272a; --dark4: #3f3f46;
  --white: #ffffff; --light:  #f9fafb; --border: #e4e4e7;
  --text:  #18181b; --muted:  #71717a;
  --wa:    #25d366; --wa-d:   #128c7e;
  --r: 10px; --rlg: 16px; --t: .22s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── REVEAL ──────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
  animation: revealFallback 0s 2s forwards;
}
@keyframes revealFallback { to { opacity: 1; transform: none; } }
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.revealed     { opacity: 1 !important; transform: none !important; animation: none !important; }

/* ── UTILITIES ───────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 88px 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); }
.bg-white { background: var(--white); }
.red { color: var(--red); }
.light { color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.eyebrow.light { color: rgba(255,255,255,.55); }
.eyebrow.light::before { background: rgba(255,255,255,.35); }
.title-xl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.25rem,5vw,3.5rem); line-height: 1.02; letter-spacing: .015em; color: var(--dark); }
.title-xl.light { color: var(--white); }
.section-head-c { text-align: center; margin-bottom: 56px; }
.section-head-c .eyebrow { justify-content: center; }
.section-head-c .eyebrow::before { display: none; }
.sub-c { color: var(--muted); font-size: 1rem; margin: 12px auto 0; max-width: 500px; }
.lead { color: var(--muted); font-size: .975rem; line-height: 1.75; margin: 18px 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px; border-radius: var(--r); font-size: .9375rem; font-weight: 700; cursor: pointer; transition: var(--t); border: 2px solid transparent; white-space: nowrap; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--rlg); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 10px 28px var(--red-glow); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-full { width: 100%; justify-content: center; }
.btn-full:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

/* ── NAVBAR (transparente → sólida) ─────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.solid {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,.1);
}
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: .05em; color: var(--white); line-height: 1; transition: color .3s; }
.navbar.solid .logo-wordmark { color: var(--dark); }
.logo-red { color: var(--red); }
.logo-vc-tag { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; background: rgba(255,255,255,.15); color: #fff; padding: 2px 7px; border-radius: 5px; letter-spacing: .06em; transition: all .3s; }
.navbar.solid .logo-vc-tag { background: var(--dark); color: #fff; }
.nav-links { display: flex; align-items: center; gap: 3px; }
.nl { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 600; padding: 7px 12px; border-radius: 8px; transition: var(--t); }
.nl:hover { background: rgba(255,255,255,.12); color: #fff; }
.navbar.solid .nl { color: var(--text); }
.navbar.solid .nl:hover { background: var(--light); color: var(--red); }
.nl-cta { background: var(--red); color: #fff !important; padding: 8px 16px; border-radius: 8px; }
.nl-cta:hover { background: var(--red-d) !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--t); }
.navbar.solid .burger span { background: var(--dark); }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); gap: 4px; background: rgba(9,9,11,.95); backdrop-filter: blur(12px); }
.navbar.solid .nav-mobile { background: var(--white); border-top-color: var(--border); }
.nav-mobile.open { display: flex; }
.nm { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 600; padding: 10px 14px; border-radius: 8px; transition: var(--t); }
.nm:hover { background: rgba(255,255,255,.08); color: #fff; }
.navbar.solid .nm { color: var(--text); }
.navbar.solid .nm:hover { background: var(--light); color: var(--red); }
.nm-cta { background: var(--red); color: #fff !important; text-align: center; border-radius: 10px; margin-top: 6px; }

/* ══ HERO — Ducati-style: izquierda negro/texto, derecha foto ══
   Layout exacto al reference: fondo negro, moto a la derecha,
   texto grande a la izquierda, gradiente que los une.
═══════════════════════════════════════════════════════════════ */
.hero {
  background: #000;
  height: 100vh; min-height: 620px;
  display: grid;
  grid-template-columns: 48fr 52fr;
  overflow: hidden;
  position: relative;
}

/* ── IZQUIERDA: texto ──────────────────── */
.hero-left {
  position: relative;
  display: flex; align-items: center;
  padding: 100px 48px 80px 60px;
  overflow: hidden;
  z-index: 2;
}
/* Canvas 3D sutil en el fondo izquierdo */
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .5;
}
.hero-left-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 24px;
}
.htag-line { display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: .92; letter-spacing: .02em;
  color: #fff; margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.h1-line { display: block; }
.hero-h1 .red { color: var(--red); }

.hero-sub {
  color: rgba(255,255,255,.55);
  font-size: clamp(.8125rem, 1.5vw, .9375rem);
  line-height: 1.75; margin-bottom: 40px; max-width: 400px;
}

.hero-btns { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-ghost-sm {
  background: transparent; border: none; color: rgba(255,255,255,.55);
  font-size: .875rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; padding: 0; transition: var(--t); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost-sm:hover { color: #fff; }

/* ── DERECHA: foto de moto ─────────────── */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% center;
  display: block;
}
/* Gradiente que funde foto con el negro de la izquierda */
.hero-right-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #000 0%, rgba(0,0,0,.3) 30%, rgba(0,0,0,.05) 60%, transparent 100%);
  z-index: 1;
}
/* Glow rojo sutil detrás de la moto */
.hero-right-glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 60% 55%, rgba(220,38,38,.18) 0%, transparent 60%);
}

/* Scroll indicator */
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5; }
.scroll-bar { width: 1.5px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45)); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:.3} 50%{opacity:.8} }

/* ── HERO MOBILE ───────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh 45vh;
    height: 100svh;
    min-height: 100svh;
  }
  /* En mobile: foto arriba, texto abajo */
  .hero-left {
    grid-row: 2;
    padding: 28px 24px 36px;
    align-items: flex-start;
    background: #000;
  }
  .hero-right {
    grid-row: 1;
  }
  .hero-right img { object-position: center 25%; }
  /* Gradiente bottom-to-top para fusionar con el panel de texto */
  .hero-right-fade {
    background: linear-gradient(to top, #000 0%, rgba(0,0,0,.3) 35%, transparent 70%);
  }
  .hero-h1 { font-size: clamp(2.5rem, 11vw, 4rem); margin-bottom: 14px; }
  .hero-sub { margin-bottom: 24px; font-size: .875rem; }
  .hero-btns { gap: 12px; }
  .hero-tag { margin-bottom: 14px; }
  .scroll-hint { display: none; }
  .hero-canvas { opacity: .25; }
}
@media (max-width: 480px) {
  .hero { grid-template-rows: 48vh 52vh; }
  .hero-left { padding: 20px 20px 28px; }
}

/* ── DATA STRIP ──────────────────────────── */
.data-strip { background: var(--dark2); border-top: 2px solid var(--red); border-bottom: 1px solid var(--dark3); padding: 32px 0; }
.data-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.ds { display: flex; flex-direction: column; align-items: center; padding: 10px 48px; text-align: center; }
.ds-div { width: 1px; height: 44px; background: var(--dark3); flex-shrink: 0; }
.ds-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.75rem; color: var(--red); line-height: 1; }
.ds-plus { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--red); }
.ds-l { font-size: .72rem; color: rgba(255,255,255,.4); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* ── QUICK SERVICES ──────────────────────── */
.qs-section { background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,.06); position: relative; z-index: 2; }
.qs-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 3px solid var(--red); }
.qs-card { padding: 32px 22px; text-align: center; border-right: 1px solid var(--border); transition: var(--t); }
.qs-card:last-child { border-right: none; }
.qs-card:hover { background: var(--red); }
.qs-card:hover .qs-icon, .qs-card:hover h4, .qs-card:hover p { color: #fff !important; }
.qs-card:hover .qs-icon svg { stroke: #fff; }
.qs-icon { width: 52px; height: 52px; border: 1.5px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--red); transition: var(--t); }
.qs-card:hover .qs-icon { border-color: rgba(255,255,255,.4); }
.qs-card h4 { font-size: .9375rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; transition: var(--t); }
.qs-card p { font-size: .8rem; color: var(--muted); line-height: 1.5; transition: var(--t); }

/* ── SERVICIOS DETALLE ───────────────────── */
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.services-img { position: relative; border-radius: var(--rlg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.services-img img { width: 100%; height: 460px; object-fit: cover; display: block; }
.img-tag { position: absolute; bottom: 20px; right: 20px; background: var(--white); color: var(--dark); border-radius: 10px; padding: 10px 16px; display: flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.img-tag svg { stroke: var(--red); }
.svc-list { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 32px; }
.svc-item { display: flex; align-items: flex-start; gap: 14px; }
.svc-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.svc-item strong { display: block; font-size: .9375rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.svc-item p { font-size: .875rem; color: var(--muted); }

/* ── ABOUT ───────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .title-xl { margin-bottom: 0; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.ac { display: flex; align-items: center; gap: 12px; font-size: .9375rem; font-weight: 600; color: var(--dark); }
.ac-mark { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.about-img { border-radius: var(--rlg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.about-img img { width: 100%; height: 440px; object-fit: cover; display: block; }

/* ── PROMO ───────────────────────────────── */
.promo-section { position: relative; overflow: hidden; padding: 88px 0; }
.promo-bg { position: absolute; inset: 0; }
.promo-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.3) saturate(.4); }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(9,9,11,.92) 40%, rgba(9,9,11,.65) 100%); }
.promo-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.promo-tag { font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.promo-tag::before { content: ''; width: 22px; height: 2px; background: var(--red); }
.promo-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; color: #fff; letter-spacing: .02em; margin-bottom: 28px; }
.promo-price { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.p-old { font-size: 1.375rem; color: rgba(255,255,255,.3); text-decoration: line-through; font-weight: 700; }
.p-arr { font-size: 1.375rem; color: var(--red); font-weight: 800; }
.p-new { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.25rem,5vw,3.75rem); color: var(--red); letter-spacing: .02em; }
.p-new small { font-size: .9rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.promo-vig { color: rgba(255,255,255,.35); font-size: .8rem; margin-bottom: 32px; }
.promo-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--rlg); padding: 26px; margin-bottom: 28px; }
.promo-box h4 { font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.promo-box ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.promo-box li { color: rgba(255,255,255,.82); font-size: .9375rem; font-weight: 500; padding-left: 16px; position: relative; }
.promo-box li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.countdown-wrap { text-align: center; }
.cd-lbl { color: rgba(255,255,255,.4); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cdb { display: flex; flex-direction: column; align-items: center; min-width: 60px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 12px 8px; }
.cdn { font-family: 'Bebas Neue', sans-serif; font-size: 2.25rem; color: var(--red); line-height: 1; }
.cdl { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-top: 3px; font-weight: 700; }
.cds { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; color: rgba(255,255,255,.2); padding-bottom: 16px; }

/* ── REFACCIONARIA ───────────────────────── */
.refac-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 52px; }
.refac-img { border-radius: var(--rlg); overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.refac-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.parts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pc { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r); padding: 13px 16px; color: rgba(255,255,255,.7); font-size: .875rem; font-weight: 500; transition: var(--t); display: flex; align-items: center; gap: 10px; }
.pc::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.pc:hover { background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.25); color: #fff; }
.refac-cta { text-align: center; }
.refac-cta p { color: rgba(255,255,255,.5); font-size: 1rem; margin-bottom: 20px; }

/* ── FORM ────────────────────────────────── */
.form-wrap { max-width: 680px; margin: 0 auto; }
.cita-form { background: #fff; border-radius: var(--rlg); padding: 44px 40px; box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 1px solid var(--border); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ff { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.ff:last-of-type { margin-bottom: 0; }
.ff label { font-size: .875rem; font-weight: 700; color: var(--dark); }
.opt { color: var(--muted); font-weight: 500; }
.ff input, .ff select, .ff textarea { border: 1.5px solid var(--border); border-radius: var(--r); padding: 12px 14px; font-family: inherit; font-size: .9375rem; color: var(--text); background: #fff; transition: var(--t); outline: none; width: 100%; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.08); }
.ff input.error, .ff select.error, .ff textarea.error { border-color: var(--red); }
.ff textarea { resize: vertical; min-height: 90px; }
.form-note { display: flex; align-items: flex-start; gap: 7px; color: var(--muted); font-size: .8rem; margin-top: 14px; line-height: 1.5; }
.form-note svg { stroke: var(--muted); flex-shrink: 0; margin-top: 1px; }
.form-ok { text-align: center; background: #fff; border-radius: var(--rlg); padding: 60px 40px; box-shadow: 0 20px 60px rgba(0,0,0,.08); border: 2px solid #22c55e; }
.ok-icon { color: #22c55e; display: flex; justify-content: center; margin-bottom: 18px; }
.form-ok h3 { font-size: 1.625rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.form-ok p { color: var(--muted); margin-bottom: 28px; }
.form-err { background: #fef2f2; border: 1.5px solid #fca5a5; color: #b91c1c; border-radius: var(--r); padding: 14px 18px; font-size: .875rem; font-weight: 600; margin-top: 16px; }

/* ── LOCATION ────────────────────────────── */
.loc-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.loc-card { background: var(--light); border-radius: var(--rlg); padding: 32px; margin-bottom: 18px; border: 1px solid var(--border); }
.loc-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.loc-item:last-child { margin-bottom: 0; }
.loc-ico { width: 36px; height: 36px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { display: block; font-size: .9375rem; font-weight: 800; color: var(--dark); margin-bottom: 3px; }
.loc-item p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.loc-btns { display: flex; flex-direction: column; gap: 11px; }
.loc-btns .btn { justify-content: center; }
.map-wrap { border-radius: var(--rlg); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.map-wrap iframe { display: block; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 52px 0 30px; border-top: 2px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer p { font-size: .875rem; line-height: 1.8; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .05em; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.footer-brand-red { color: var(--red); }
.footer-brand-vc { font-size: 1.1rem; background: var(--dark3); color: rgba(255,255,255,.5); padding: 1px 6px; border-radius: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; font-weight: 500; transition: var(--t); }
.footer-links a:hover { color: var(--red); }
.footer-legal { font-size: .8rem; line-height: 1.9; }
.footer-legal a { color: var(--red); font-weight: 600; }

/* ── WA FLOAT ────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; background: var(--wa); color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45); animation: waPop .5s ease .8s both; transition: var(--t); }
.wa-float:hover { background: var(--wa-d); transform: scale(1.1) translateY(-2px); }
@keyframes waPop { from{opacity:0;transform:scale(.3)} to{opacity:1;transform:scale(1)} }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-layout, .about-layout, .promo-inner { grid-template-columns: 1fr; gap: 40px; }
  .refac-layout { grid-template-columns: 1fr; }
  .refac-img img { height: 240px; }
  .loc-layout { grid-template-columns: 1fr; }
  .map-wrap { order: -1; }
  .data-grid { gap: 0; flex-wrap: wrap; justify-content: center; }
  .ds { padding: 16px 28px; }
  .ds-div { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .navbar .nl { display: none; }
  .burger { display: flex; }
  .section { padding: 60px 0; }
  .hero { min-height: 100svh; }
  .hero-content { justify-content: flex-start; align-items: flex-end; padding-bottom: 80px; }
  .hero-text-box { max-width: 100%; }
  .hero-h1 { font-size: clamp(3rem,14vw,5rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  /* En mobile: gradiente más oscuro para que texto sea legible */
  .hero-grad-left { background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.2) 100%); }
  .qs-grid { grid-template-columns: 1fr 1fr; }
  .qs-card { padding: 22px 14px; }
  .qs-card:nth-child(2) { border-right: none; }
  .data-grid { justify-content: space-around; }
  .ds { padding: 12px 16px; }
  .parts { grid-template-columns: 1fr; }
  .cita-form { padding: 28px 18px; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-legal { grid-column: auto; }
  .loc-btns { flex-direction: row; flex-wrap: wrap; }
  .loc-btns .btn { flex: 1; min-width: 130px; }
}
