/* ─── BLINQ HOME — Lusion aesthetic: light stage + dark panels + blue tube ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

:root {
  --bg: #eceff4;            /* lavanda-gris claro (lusion) */
  --panel: #0a0a0e;         /* panel oscuro */
  --ink: #0a0a0c;
  --ink-dim: #5f5f6b;
  --ink-faint: #a3a3ad;
  --line: rgba(10,10,20,0.1);
  --blue: #2b2bff;          /* azul royal del tubo */
  --cyan: #35e0d5;
  --accent: #6366f1;
  --radius: 26px;
}

body {
  font-family: 'Kedebideri', 'SF Pro Display', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  position: relative;
}
::selection { background: var(--blue); color: #fff; }

/* ─── LOADER (contador estilo lusion) ─── */
.l-loader {
  position: fixed; inset: 0; z-index: 1000;
  background: #060608;
  display: flex; align-items: center; justify-content: center;
}
.l-loader-bar {
  width: 96px; height: 22px; background: #fff;
  transform-origin: left center;
}
.l-loader-num {
  position: absolute; bottom: 24px; left: 32px;
  font-size: clamp(64px, 10vw, 120px); font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.l-loader.done { pointer-events: none; }

/* ─── TRACE TUBE (tubo azul grueso trazado por la página) ─── */
.l-trace {
  position: absolute; top: 0; left: 0; z-index: 0;
  pointer-events: none; overflow: visible;
}
.l-trace path {
  fill: none; stroke: var(--blue); stroke-width: 26;
  stroke-linecap: round; opacity: 1;
}
.l-trace circle { display: none; }

/* ─── PREVIEW FLOTANTE (servicios) ─── */
.l-srv-preview {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 240px; height: 160px;
  object-fit: cover; border-radius: 16px;
  pointer-events: none;
  opacity: 0; scale: 0.85;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), scale 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 60px -18px rgba(10,10,40,0.4);
  will-change: transform;
}
.l-srv-preview.visible { opacity: 1; scale: 1; }

/* ─── CURSOR ─── */
.l-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1), height 0.35s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.l-cursor.expanded { width: 56px; height: 56px; }
@media (hover: none) { .l-cursor { display: none; } body { cursor: auto; } }

/* ─── NAV (pills estilo lusion) ─── */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  transition: padding 0.45s cubic-bezier(0.16,1,0.3,1), background 0.45s, border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.l-nav.scrolled {
  padding: 12px 28px;
  background: rgba(236,239,244,0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.l-nav-logo { text-decoration: none; cursor: none; display: flex; align-items: center; }
.l-nav-logo-img { height: 30px; width: auto; display: block; }
.l-nav-links { display: flex; align-items: center; gap: 10px; }
.l-nav-link {
  font-size: 12px; color: var(--ink); text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(10,10,20,0.08);
  transition: background 0.25s, color 0.25s;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  cursor: none;
}
.l-nav-link:hover { background: #fff; }
.l-nav-cta {
  background: var(--panel); color: #fff; border-color: var(--panel);
}
.l-nav-cta:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.l-nav-toggle {
  display: none;
  background: rgba(255,255,255,0.85); border: 1px solid rgba(10,10,20,0.08);
  color: var(--ink); font-size: 12px; cursor: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}

/* ─── OVERLAY MENU ─── */
.l-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: var(--panel);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 28px 60px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-overlay.open { opacity: 1; pointer-events: all; }
.l-overlay-nav { display: flex; flex-direction: column; gap: 6px; }
.l-overlay-link {
  font-size: clamp(44px, 8vw, 96px); font-weight: 900;
  color: #f2f2f5; text-decoration: none;
  letter-spacing: -2.5px; line-height: 1.02;
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1), color 0.25s;
  cursor: none;
}
.l-overlay.open .l-overlay-link { opacity: 1; transform: translateY(0); }
.l-overlay.open .l-overlay-link:nth-child(1) { transition-delay: 0.06s; }
.l-overlay.open .l-overlay-link:nth-child(2) { transition-delay: 0.12s; }
.l-overlay.open .l-overlay-link:nth-child(3) { transition-delay: 0.18s; }
.l-overlay.open .l-overlay-link:nth-child(4) { transition-delay: 0.24s; }
.l-overlay-link:hover { color: var(--cyan); }
.l-overlay-footer {
  position: absolute; bottom: 52px; left: 28px; right: 28px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}

/* ─── HERO — escenario oscuro estilo lusion ─── */
.l-hero {
  padding: 96px 16px 0;
  position: relative;
}
.l-hero-top {
  display: flex; justify-content: center;
  padding: 8px 12px 26px;
}
.l-hero-intro {
  font-size: clamp(16px, 2vw, 22px); color: var(--ink);
  max-width: 520px; line-height: 1.45; text-align: left;
  font-weight: 500;
}
.l-hero-stage {
  position: relative; overflow: hidden;
  background: #306090; border-radius: var(--radius);
  height: min(76vh, 780px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 1;
}
/* montaje flash 1990 → hoy: imágenes full-bleed en cortes rápidos */
.l-hero-flash {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.2; pointer-events: none;
  transform: translateZ(0);
}
.l-hero-flash img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  filter: grayscale(100%) contrast(1.08) brightness(1.05);
}
.l-hero-flash img.active { opacity: 1; }
.l-hero-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px;
}
.l-hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; display: inline-block;
  animation: lpulse 2s ease-in-out infinite;
}
@keyframes lpulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

.l-hero-title {
  font-size: clamp(56px, 9.5vw, 150px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 0.94;
  color: #f5f5f8; margin-bottom: 40px;
}
.l-hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, #d8e6ff, #7ef3ea);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* con el split por letras, cada char del em necesita su propio clip */
.l-hero-title em .char {
  background: linear-gradient(100deg, #d8e6ff, #7ef3ea);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-hero-title .char { will-change: transform; }
.l-hero-line { display: block; overflow: hidden; }
.l-hero-line > span { display: block; will-change: transform; }

.l-hero-sub { display: none; }
.l-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ─── STRIP "+ SCROLL TO EXPLORE +" ─── */
.l-hero-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 12px;
  font-size: 10px; color: var(--ink-dim); letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-hero-strip .plus { font-size: 13px; color: var(--ink-faint); }

/* ─── BUTTONS ─── */
.l-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  text-decoration: none; transition: color 0.35s, border-color 0.35s;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  cursor: none; background: transparent;
}
.l-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: #fff; border-radius: 100px;
  transform: translateY(101%); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.l-btn:hover { color: var(--panel); border-color: #fff; }
.l-btn:hover::before { transform: translateY(0); }
.l-btn--fill { background: #fff; color: var(--panel); border-color: #fff; }
.l-btn--fill::before { background: var(--blue); }
.l-btn--fill:hover { color: #fff; border-color: var(--blue); }

/* botones sobre fondo claro */
.l-btn--dark {
  border-color: rgba(10,10,20,0.2); color: var(--ink);
}
.l-btn--dark::before { background: var(--panel); }
.l-btn--dark:hover { color: #fff; border-color: var(--panel); }
.l-btn--darkfill { background: var(--panel); color: #fff; border-color: var(--panel); }
.l-btn--darkfill::before { background: var(--blue); }
.l-btn--darkfill:hover { color: #fff; border-color: var(--blue); }

/* ─── HERO STATS ─── */
.l-hero-stats {
  display: flex; align-items: stretch; gap: 0;
  border-top: 1px solid var(--line);
  margin: 26px 12px 0; padding: 30px 0 44px;
}
.l-stat { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.l-stat-n {
  font-size: clamp(30px, 4vw, 54px); font-weight: 900;
  color: var(--ink); letter-spacing: -0.02em;
}
.l-stat-l {
  font-size: 12px; color: var(--ink-dim);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-stat-sep { width: 1px; background: var(--line); margin: 0 40px; }

/* ─── MARQUEE ─── */
.l-marquee {
  padding: 90px 0; overflow: hidden;
  position: relative; z-index: 1;
  transform: rotate(-1.5deg);
}
.l-marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.l-marquee-text {
  font-size: clamp(80px, 14vw, 200px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10,10,20,0.3);
  padding-right: 60px; flex-shrink: 0;
}
.l-marquee-text em { font-style: normal; color: var(--ink); -webkit-text-stroke: 0; }

/* ─── SECTIONS SHARED ─── */
.l-section { padding: 110px 28px; position: relative; }
.l-section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
}
.l-eyebrow {
  font-size: 11px; color: var(--ink-dim); letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-h2 {
  font-size: clamp(38px, 5.5vw, 80px); font-weight: 900;
  letter-spacing: -0.025em; line-height: 1.0; color: var(--ink);
}

/* ─── PRODUCTS GRID (estilo work-grid lusion: caption debajo) ─── */
.l-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 28px;
  position: relative; z-index: 1;
}
.l-prod-card { text-decoration: none; display: block; }
.l-prod-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: #fff;
  transform: translateZ(0);
  will-change: transform;
}
.l-prod-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
  transition: filter 0.5s cubic-bezier(0.16,1,0.3,1);
}
.l-prod-card:hover .l-prod-bg { filter: brightness(1.06) saturate(1.08); }
.l-prod-card:hover .l-prod-arrow { opacity: 1; transform: translate(0,0) rotate(0deg); }
.l-prod-arrow {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--panel); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  opacity: 0; transform: translate(-10px, 10px) rotate(-20deg);
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
}
.l-prod-caption { padding: 18px 6px 0; }
.l-prod-meta {
  display: block;
  font-size: 10px; color: var(--ink-dim); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 8px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-prod-name {
  font-size: clamp(24px, 2.6vw, 38px); font-weight: 900;
  color: var(--ink); letter-spacing: -0.02em;
  transition: color 0.25s;
}
.l-prod-card:hover .l-prod-name { color: var(--blue); }
.l-prod-footer {
  margin-top: 64px; display: flex;
  justify-content: space-between; align-items: center;
}
.l-prod-count {
  font-size: 12px; color: var(--ink-dim);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}

/* ─── SERVICES ─── */
.l-srv-list { margin-top: 0; position: relative; z-index: 1; }
.l-srv-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto 48px;
  align-items: center; gap: 24px;
  padding: 34px 22px; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: padding 0.4s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden; border-radius: 18px;
}
.l-srv-item::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: #fff;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  border-radius: 18px;
}
.l-srv-item:hover::before { transform: scaleY(1); }
.l-srv-item:last-child { border-bottom: 1px solid var(--line); }
.l-srv-item:hover { padding-left: 38px; }
.l-srv-item:hover .l-srv-arrow {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: rotate(-45deg);
}
.l-srv-num {
  font-size: 12px; color: var(--ink-faint);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  letter-spacing: 0.05em;
}
.l-srv-body { display: flex; flex-direction: column; gap: 8px; }
.l-srv-name {
  font-size: clamp(20px, 2.4vw, 34px); font-weight: 900;
  color: var(--ink); letter-spacing: -0.02em; transition: color 0.25s;
}
.l-srv-desc {
  font-size: 13px; color: var(--ink-dim); line-height: 1.7; max-width: 540px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-srv-brands {
  font-size: 11px; color: var(--ink-faint); letter-spacing: 0.05em;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  text-align: right;
}
.l-srv-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(10,10,20,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ─── MANIFESTO — panel inmersivo oscuro full-bleed ─── */
.l-manifesto {
  margin: 40px 16px;
  padding: 170px 44px;
  background: var(--panel); border-radius: var(--radius);
  position: relative; overflow: hidden;
  text-align: center;
  z-index: 1;
}
.l-manifesto-title {
  font-size: clamp(36px, 6vw, 96px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.06;
  color: #f5f5f8; max-width: 1100px; margin: 0 auto;
  text-transform: uppercase;
  position: relative; z-index: 1;
}
.l-manifesto-meta {
  margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  position: relative; z-index: 1;
}
.l-manifesto .plus-row {
  position: absolute; left: 24px; right: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.3); font-size: 14px;
}
.l-manifesto .plus-row--top { top: 20px; }
.l-manifesto .plus-row--bottom { bottom: 20px; }

/* ─── BRANDS ─── */
.l-brands { padding: 80px 0; overflow: hidden; position: relative; z-index: 1; }
.l-brands-label {
  padding: 0 28px; font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 36px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-brands-track {
  display: flex; align-items: center;
  animation: brandRun 30s linear infinite;
  white-space: nowrap; width: max-content;
}
.l-brand-item { display: flex; align-items: center; flex-shrink: 0; }
.l-brand-name {
  font-size: 15px; color: var(--ink-dim); letter-spacing: 0.05em;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-brand-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(10,10,20,0.16); margin: 0 44px; }
@keyframes brandRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SUCURSALES ─── */
.l-sucursales { padding: 110px 28px; position: relative; }
.l-suc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 1; }
.l-suc-card {
  padding: 34px 30px; background: #fff;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), box-shadow 0.45s;
}
.l-suc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -28px rgba(10,10,40,0.25);
}
.l-suc-num { font-size: 11px; color: var(--ink-faint); font-family: -apple-system, sans-serif; }
.l-suc-city { font-size: 26px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.l-suc-prov { font-size: 12px; color: var(--ink-dim); font-family: -apple-system, sans-serif; }
.l-suc-phone { font-size: 13px; color: var(--ink-dim); font-family: -apple-system, sans-serif; margin-top: auto; }
.l-suc-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: #16a34a; text-decoration: none;
  font-family: -apple-system, sans-serif; margin-top: 4px; cursor: none;
}

/* ─── CONTACT ─── */
.l-contact {
  padding: 110px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  position: relative;
}
.l-contact > * { position: relative; z-index: 1; }
.l-contact-info { margin-top: 44px; display: flex; flex-direction: column; }
.l-contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  transition: border-color 0.25s; cursor: none;
}
.l-contact-channel:hover { border-color: rgba(10,10,20,0.35); }
.l-contact-channel:hover .l-channel-arrow { opacity: 1; transform: translate(0,0); }
.l-channel-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.l-channel-name { font-size: 15px; color: var(--ink); font-weight: 500; }
.l-channel-sub { font-size: 12px; color: var(--ink-dim); margin-top: 2px; }
.l-channel-arrow {
  margin-left: auto; font-size: 16px; color: var(--ink-dim);
  opacity: 0; transform: translate(-6px, 6px);
  transition: all 0.3s;
}

.l-form {
  display: flex; flex-direction: column; gap: 0;
  background: #fff; border-radius: var(--radius); padding: 36px 36px 40px;
}
.l-field { border-bottom: 1px solid var(--line); transition: border-color 0.25s; }
.l-field:focus-within { border-color: var(--blue); }
.l-field input, .l-field textarea, .l-field select {
  width: 100%; background: transparent; border: none;
  color: var(--ink); font-size: 15px; padding: 20px 0;
  font-family: -apple-system, 'Helvetica Neue', sans-serif; outline: none;
}
.l-field input::placeholder, .l-field textarea::placeholder { color: var(--ink-faint); }
.l-field select { color: var(--ink-faint); cursor: none; }
.l-field select option { background: #fff; color: var(--ink); }
.l-field textarea { resize: none; }
.l-form .l-btn { margin-top: 32px; align-self: flex-start; }

/* ─── CTA GIGANTE ─── */
.l-cta {
  padding: 180px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.l-cta > * { position: relative; z-index: 1; }
.l-cta-label {
  font-size: 11px; color: var(--ink-dim); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 32px;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.l-cta-title {
  font-size: clamp(72px, 15vw, 240px); font-weight: 900;
  letter-spacing: -0.035em; line-height: 0.9;
  color: var(--ink); text-decoration: none; display: inline-block;
  cursor: none;
  transition: color 0.4s;
}
.l-cta-title:hover { color: var(--blue); }
.l-cta-sub {
  margin-top: 36px; font-size: 13px; color: var(--ink-dim);
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}

/* ─── FOOTER ─── */
.l-footer {
  margin: 0 16px 16px;
  padding: 44px;
  background: var(--panel); border-radius: var(--radius);
  position: relative; z-index: 1;
}
.l-footer-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.l-footer-logo-img { height: 26px; width: auto; display: block; }
.l-footer-tag { font-size: 12px; color: rgba(255,255,255,0.45); font-family: -apple-system, sans-serif; }
.l-footer-links { display: flex; gap: 24px; margin-left: auto; }
.l-footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none;
  font-family: -apple-system, sans-serif; transition: color 0.2s; cursor: none;
}
.l-footer-links a:hover { color: #fff; }
.l-footer-copy {
  width: 100%; font-size: 11px; color: rgba(255,255,255,0.3);
  font-family: -apple-system, sans-serif; margin-top: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .l-nav { padding: 16px 16px; }
  .l-nav.scrolled { padding: 10px 16px; }
  .l-nav-links { display: none; }
  .l-nav-toggle { display: block; }
  .l-hero { padding: 84px 10px 0; }
  .l-hero-stage { height: 70vh; }
  .l-section, .l-sucursales { padding: 80px 18px; }
  .l-contact { grid-template-columns: 1fr; gap: 48px; padding: 80px 18px; }
  .l-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .l-prod-grid { grid-template-columns: 1fr; gap: 36px; }
  .l-srv-item { grid-template-columns: 40px 1fr 48px; padding: 26px 12px; }
  .l-srv-item:hover { padding-left: 20px; }
  .l-srv-brands { display: none; }
  .l-hero-stats { flex-direction: column; gap: 24px; padding-bottom: 40px; }
  .l-stat-sep { display: none; }
  .l-suc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .l-overlay { padding: 90px 18px 48px; }
  .l-overlay-footer { left: 18px; right: 18px; bottom: 40px; }
  .l-footer-inner { flex-direction: column; align-items: flex-start; }
  .l-footer-links { margin-left: 0; }
  .l-marquee { padding: 56px 0; }
  .l-cta { padding: 120px 18px; }
  .l-manifesto { margin: 24px 10px; padding: 110px 24px; }
  .l-brands-label { padding-left: 18px; }
  .l-trace path { stroke-width: 16; }
  .l-form { padding: 28px 24px 32px; }
}
@media (max-width: 600px) {
  .l-suc-grid { grid-template-columns: 1fr; }
}
