/* =====================================================================
   landing.css  -  Landing page publica del taller.
   Paleta industrial: negro #111 / grises / amarillo #F5C518.
   Tipografia: Oswald (titulares), IBM Plex Sans (texto).
   Animaciones en CSS puro + hooks que activa landing.js:
     body.lp-lista  -> entrada del hero (clases .lp-anim)
     .rv.rv--in     -> reveal al entrar en viewport (var --d = delay)
     [data-prl]     -> parallax vertical (JS via transform)
     [data-deriva]  -> letras gigantes que derivan al hacer scroll (JS)
   Respeta prefers-reduced-motion.
   ===================================================================== */

:root {
  --lp-negro: #111111;
  --lp-carbon: #1A1A1A;
  --lp-gris-900: #232323;
  --lp-gris-600: #5C5C5C;
  --lp-gris-400: #9A9A9A;
  --lp-gris-200: #E5E5E5;
  --lp-gris-100: #F4F4F4;
  --lp-blanco: #FFFFFF;
  --lp-amarillo: #F5C518;
  --lp-amarillo-osc: #D9AC0A;
  --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --lp-titular: 'Oswald', 'IBM Plex Sans', sans-serif;
  --lp-texto: 'IBM Plex Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--lp-texto);
  color: var(--lp-negro);
  background: var(--lp-blanco);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* =====================================================================
   NAV
   ===================================================================== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 350ms ease, padding 350ms ease, box-shadow 350ms ease, transform 350ms ease;
}
.lp-nav--solida {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.lp-nav--oculta { transform: translateY(-110%); }
.lp-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
/* El PNG del logo es oscuro: sobre fondos negros lo pasamos a blanco */
.lp-logo img {
  height: 46px; width: auto;
  filter: brightness(0) invert(1);
  transition: height 300ms ease;
}
.lp-nav--solida .lp-logo img { height: 38px; }
.lp-nav__links { display: flex; align-items: center; gap: 26px; }
.lp-nav__links a {
  color: var(--lp-blanco);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.lp-nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--lp-amarillo);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--lp-ease);
}
.lp-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.lp-nav__staff {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  padding: 7px 14px !important;
}
.lp-nav__staff::after { display: none; }
.lp-nav__staff:hover { border-color: var(--lp-amarillo); color: var(--lp-amarillo); }
.lp-nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.lp-nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--lp-blanco);
  transition: transform 300ms var(--lp-ease), opacity 300ms ease;
}
.lp-nav__burger.abierto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav__burger.abierto span:nth-child(2) { opacity: 0; }
.lp-nav__burger.abierto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   LETRAS GIGANTES (parallax horizontal con [data-deriva])
   ===================================================================== */
.lp-giga {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.lp-giga span {
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: clamp(110px, 22vw, 320px);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.10);
  user-select: none;
  will-change: transform;
}
.lp-giga--claro span { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.16); }
.lp-giga--hero { align-items: flex-end; }
.lp-giga--hero span {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.26);
  margin-bottom: -0.12em;
}
.lp-giga--banda span {
  -webkit-text-stroke: 2px rgba(17, 17, 17, 0.32);
  color: rgba(255, 255, 255, 0.10);
}

/* =====================================================================
   HERO
   ===================================================================== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lp-negro);
  overflow: hidden;
  padding: 130px 0 90px;
}
.lp-hero__bg {
  position: absolute;
  inset: -12% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: saturate(0.85);
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 10, 10, 0.80) 0%, rgba(10, 10, 10, 0.58) 45%, rgba(10, 10, 10, 0.32) 100%);
}
.lp-hero__grid {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-amarillo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.lp-kicker::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--lp-amarillo);
}
.lp-kicker--oscuro { color: var(--lp-negro); }
.lp-kicker--oscuro::before { background: var(--lp-amarillo); }

.lp-hero__titulo {
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--lp-blanco);
  margin: 22px 0 20px;
}
.lp-linea { display: block; overflow: hidden; }
.lp-linea > span { display: block; }
.lp-acento { color: var(--lp-amarillo); font-style: normal; }
.lp-hero__bajada {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}
.lp-hero__acciones { display: flex; flex-wrap: wrap; gap: 14px; }

/* Indicador de scroll (rueda) */
.lp-hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.lp-hero__scroll-rueda {
  width: 3px; height: 9px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--lp-amarillo);
  animation: lp-rueda 1.8s var(--lp-ease) infinite;
}
@keyframes lp-rueda {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Entrada del hero: escalonada cuando body.lp-lista */
.lp-anim { opacity: 0; transform: translateY(26px); }
.lp-linea.lp-anim { opacity: 1; transform: none; }
.lp-linea.lp-anim > span { transform: translateY(115%); }
body.lp-lista .lp-anim {
  opacity: 1;
  transform: none;
  transition: opacity 900ms var(--lp-ease), transform 900ms var(--lp-ease);
}
body.lp-lista .lp-linea.lp-anim > span {
  transform: translateY(0);
  transition: transform 1000ms var(--lp-ease);
}
body.lp-lista .lp-anim--1, body.lp-lista .lp-anim--1 > span { transition-delay: 80ms; }
body.lp-lista .lp-anim--2, body.lp-lista .lp-anim--2 > span { transition-delay: 180ms; }
body.lp-lista .lp-anim--3, body.lp-lista .lp-anim--3 > span { transition-delay: 300ms; }
body.lp-lista .lp-anim--4, body.lp-lista .lp-anim--4 > span { transition-delay: 430ms; }
body.lp-lista .lp-anim--5, body.lp-lista .lp-anim--5 > span { transition-delay: 560ms; }
body.lp-lista .lp-anim--6, body.lp-lista .lp-anim--6 > span { transition-delay: 900ms; }

/* =====================================================================
   BOTONES
   ===================================================================== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--lp-texto);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  padding: 13px 26px;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 250ms var(--lp-ease), box-shadow 250ms ease, color 250ms ease, border-color 250ms ease;
}
.lp-btn--primario {
  background: var(--lp-amarillo);
  color: var(--lp-negro);
}
.lp-btn--primario::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--lp-negro);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--lp-ease);
}
.lp-btn--primario:hover::before { transform: scaleX(1); transform-origin: left; }
.lp-btn--primario:hover { color: var(--lp-amarillo); }
.lp-btn--ghost {
  background: transparent;
  color: var(--lp-blanco);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.lp-btn--ghost:hover { border-color: var(--lp-amarillo); color: var(--lp-amarillo); transform: translateY(-2px); }
.lp-btn--block { width: 100%; }
.lp-btn--xl { padding: 16px 38px; font-size: 17px; }

/* =====================================================================
   FORM CARD (hero)
   ===================================================================== */
.lp-form-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 6px;
  padding: 30px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-top: 4px solid var(--lp-amarillo);
}
.lp-form-card__titulo {
  font-family: var(--lp-titular);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lp-form-card__sub { color: var(--lp-gris-600); font-size: 14px; margin: 2px 0 16px; }
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-campo { margin-bottom: 12px; }
.lp-campo label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--lp-gris-900);
}
.lp-campo input, .lp-campo textarea {
  width: 100%;
  font-family: var(--lp-texto);
  font-size: 14.5px;
  padding: 11px 12px;
  border: 1px solid var(--lp-gris-200);
  border-radius: 3px;
  background: var(--lp-blanco);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.lp-campo input:focus, .lp-campo textarea:focus {
  outline: none;
  border-color: var(--lp-negro);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.30);
}
.lp-campo textarea { resize: vertical; }
.lp-form__nota { font-size: 12px; color: var(--lp-gris-400); margin-top: 10px; text-align: center; }
.lp-alerta {
  background: #FDECEC;
  border: 1px solid #E5A3A3;
  border-radius: 4px;
  color: #8E2323;
  font-size: 13.5px;
  padding: 10px 12px;
  margin-bottom: 14px;
}
.lp-alerta ul { padding-left: 18px; }

/* Mensaje de exito con check dibujado */
.lp-exito { text-align: center; padding: 26px 6px; }
.lp-exito__check svg {
  width: 76px; height: 76px;
  margin: 0 auto 14px;
  stroke: var(--lp-amarillo-osc);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-exito__check circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: lp-trazo 700ms var(--lp-ease) forwards; }
.lp-exito__check path   { stroke-dasharray: 40;  stroke-dashoffset: 40;  animation: lp-trazo 500ms 600ms var(--lp-ease) forwards; }
@keyframes lp-trazo { to { stroke-dashoffset: 0; } }
.lp-exito h3 { font-family: var(--lp-titular); font-size: 24px; text-transform: uppercase; }
.lp-exito p { color: var(--lp-gris-600); margin: 8px 0 18px; }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.lp-marquee {
  background: var(--lp-amarillo);
  overflow: hidden;
  padding: 16px 0;
  border-top: 3px solid var(--lp-negro);
  border-bottom: 3px solid var(--lp-negro);
}
.lp-marquee__pista {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: lp-marquee 26s linear infinite;
}
.lp-marquee:hover .lp-marquee__pista { animation-play-state: paused; }
.lp-marquee__pista span {
  font-family: var(--lp-titular);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-negro);
  white-space: nowrap;
}
.lp-marquee__pista i {
  width: 9px; height: 9px;
  background: var(--lp-negro);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes lp-marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   SECCIONES BASE + REVEALS
   ===================================================================== */
.lp-seccion {
  position: relative;
  padding: 110px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.lp-seccion__cab { margin-bottom: 54px; }
.lp-seccion__cab h2, .lp-nosotros h2, .lp-banda h2 {
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 14px;
}

.rv { opacity: 0; transform: translateY(34px); }
.rv--in {
  opacity: 1;
  transform: none;
  transition: opacity 950ms var(--lp-ease) var(--d, 0ms), transform 950ms var(--lp-ease) var(--d, 0ms);
}

/* =====================================================================
   SERVICIOS
   ===================================================================== */
.lp-servicios { padding-top: 130px; }
.lp-servicios .lp-giga { align-items: flex-start; }
.lp-servicios__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-card {
  position: relative;
  background: var(--lp-blanco);
  border: 1px solid var(--lp-gris-200);
  border-radius: 6px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--lp-ease), box-shadow 400ms ease, border-color 400ms ease;
}
.lp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 48px rgba(17, 17, 17, 0.14);
  border-color: var(--lp-amarillo);
}
.lp-card__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: 30px;
  color: var(--lp-gris-200);
  transition: color 400ms ease;
}
.lp-card:hover .lp-card__num { color: var(--lp-amarillo); }
/* Las ilustraciones de servicios ya traen su propio arte (placa blanca
   con nombre + subrayado amarillo, pensadas para fondo oscuro): se
   muestran COMPLETAS sobre carbon, sin recorte ni zoom agresivo. */
.lp-card__media {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
  background: var(--lp-carbon);
}
.lp-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
  transform: scale(1.001);
  transition: transform 700ms var(--lp-ease);
}
.lp-card:hover .lp-card__media img { transform: scale(1.05); }
.lp-card h3 {
  font-family: var(--lp-titular);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.lp-card p { font-size: 14px; color: var(--lp-gris-600); flex: 1; }
.lp-card__cta {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lp-negro);
  border-bottom: 2px solid var(--lp-amarillo);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 250ms ease;
}
.lp-card__cta:hover { color: var(--lp-amarillo-osc); }

/* =====================================================================
   NOSOTROS (fondo oscuro)
   ===================================================================== */
.lp-nosotros {
  position: relative;
  max-width: none;
  background: var(--lp-carbon);
  color: var(--lp-blanco);
  padding: 130px 24px;
  overflow: hidden;
}
.lp-nosotros__grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.lp-nosotros p { color: rgba(255, 255, 255, 0.78); margin: 16px 0 24px; max-width: 560px; }
.lp-nosotros strong { color: var(--lp-blanco); }
.lp-checklist { list-style: none; }
.lp-checklist li {
  padding: 11px 0 11px 36px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 15px;
}
.lp-checklist li::before {
  content: '';
  position: absolute;
  left: 4px; top: 16px;
  width: 14px; height: 8px;
  border-left: 3px solid var(--lp-amarillo);
  border-bottom: 3px solid var(--lp-amarillo);
  transform: rotate(-45deg);
}
.lp-nosotros__highlight { display: flex; flex-direction: column; gap: 18px; }
.lp-highlight {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--lp-amarillo);
  border-radius: 6px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 350ms var(--lp-ease), background 350ms ease;
}
.lp-highlight:hover { transform: translateX(8px); background: rgba(255, 255, 255, 0.06); }
.lp-highlight__num {
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  color: var(--lp-amarillo);
  display: block;
}
.lp-highlight__lbl {
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* =====================================================================
   PROCESO
   ===================================================================== */
.lp-pasos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lp-paso {
  position: relative;
  padding: 28px 22px 24px;
  border: 1px solid var(--lp-gris-200);
  border-radius: 6px;
  background: var(--lp-gris-100);
  overflow: hidden;
  transition: transform 400ms var(--lp-ease), box-shadow 400ms ease;
}
.lp-paso:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12); }
.lp-paso::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 100%;
  background: var(--lp-amarillo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--lp-ease);
}
.lp-paso:hover::after { transform: scaleX(1); }
.lp-paso__num {
  font-family: var(--lp-titular);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lp-amarillo-osc);
  display: block;
  margin-bottom: 12px;
}
.lp-paso h3 {
  font-family: var(--lp-titular);
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lp-paso p { font-size: 14px; color: var(--lp-gris-600); }

/* =====================================================================
   BANDA CTA (amarilla)
   ===================================================================== */
.lp-banda {
  position: relative;
  background: var(--lp-amarillo);
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
}
.lp-banda__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.lp-banda h2 { font-size: clamp(32px, 4.6vw, 56px); }
.lp-banda p { font-size: 17px; margin: 14px 0 28px; color: rgba(17, 17, 17, 0.75); }
.lp-banda .lp-btn--primario { background: var(--lp-negro); color: var(--lp-amarillo); }
.lp-banda .lp-btn--primario::before { background: var(--lp-blanco); }
.lp-banda .lp-btn--primario:hover { color: var(--lp-negro); }

/* =====================================================================
   COMO LLEGAR
   ===================================================================== */
.lp-llegar { padding: 110px 24px; background: var(--lp-gris-100); }
.lp-llegar__caja {
  max-width: 860px;
  margin: 0 auto;
  background: var(--lp-blanco);
  border: 1px solid var(--lp-gris-200);
  border-top: 5px solid var(--lp-amarillo);
  border-radius: 6px;
  padding: 40px 44px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}
.lp-llegar__titulo {
  font-family: var(--lp-titular);
  font-size: clamp(26px, 3.4vw, 38px);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.lp-llegar__lista { list-style: none; }
.lp-llegar__lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--lp-gris-200);
  font-size: 15px;
}
.lp-llegar__lista li:last-child { border-bottom: 0; }
.lp-llegar__lista svg { flex-shrink: 0; margin-top: 2px; color: var(--lp-amarillo-osc); }
.lp-mono { font-family: 'IBM Plex Mono', monospace; }
.lp-llegar__wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1B7A43;
  text-decoration: none;
  border-bottom: 2px solid #1B7A43;
}
.lp-llegar__wa:hover { color: #105C30; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.lp-footer { background: var(--lp-negro); color: rgba(255, 255, 255, 0.6); padding: 48px 24px; }
.lp-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.lp-footer__logo { height: 42px; width: auto; filter: brightness(0) invert(1); }
.lp-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.lp-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-footer__links a:hover { color: var(--lp-amarillo); }
.lp-footer__copy { font-size: 13px; }

/* WhatsApp flotante */
.lp-wa-flota {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: transform 300ms var(--lp-ease);
}
.lp-wa-flota:hover { transform: scale(1.1) rotate(6deg); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero { padding-top: 110px; }
  .lp-hero__scroll { display: none; }
  .lp-servicios__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-pasos { grid-template-columns: repeat(2, 1fr); }
  .lp-nosotros__grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 768px) {
  .lp-nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--lp-negro);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 30px 34px;
    transform: translateX(105%);
    transition: transform 420ms var(--lp-ease);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
  }
  .lp-nav__links.abierto { transform: translateX(0); }
  .lp-nav__links a { font-size: 17px; padding: 12px 0; width: 100%; }
  .lp-nav__staff { margin-top: 14px; text-align: center; }
  .lp-nav__burger { display: flex; position: relative; z-index: 110; }
  .lp-seccion, .lp-nosotros, .lp-llegar, .lp-banda { padding-left: 18px; padding-right: 18px; }
  .lp-llegar__caja { padding: 28px 22px; }
  .lp-marquee__pista span { font-size: 16px; }
}
@media (max-width: 600px) {
  .lp-servicios__grid { grid-template-columns: 1fr; }
  .lp-pasos { grid-template-columns: 1fr; }
  .lp-grid-2 { grid-template-columns: 1fr; }
  .lp-seccion { padding-top: 80px; padding-bottom: 80px; }
  .lp-form-card { padding: 24px 18px; }
  .lp-hero__acciones .lp-btn { width: 100%; }
  .lp-footer__inner { flex-direction: column; text-align: center; }
}

/* =====================================================================
   ACCESIBILIDAD: sin movimiento
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-anim, .lp-linea.lp-anim > span, .rv { opacity: 1 !important; transform: none !important; }
  .lp-marquee__pista { animation: none; }
  .lp-hero__scroll-rueda { animation: none; }
  .lp-giga span, .lp-hero__bg { transform: none !important; }
  * { transition-duration: 1ms !important; }
}
