/* SCG Auto Studio · web comercial */
:root {
  --bg: #0E0E0B;
  --surface: #141410;
  --surface-2: #1C1C18;
  --line: #2A2A25;
  --line-2: #3b3b34;
  --text: #F5F5F0;
  --text-2: #c9c9c2;
  --muted: #8f8f86;
  --lime: #C8EF4D;
  --lime-2: #d6f56f;
  --ink: #0E0E0B;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --head: 'Archivo', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --wrap: 1240px;
  --pad: clamp(16px, 4vw, 40px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
.muted { color: var(--muted); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 60; background: var(--lime); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; font: 600 14px/1 var(--body);
  text-decoration: none; cursor: pointer; border: 0; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
}
.btn:active { transform: scale(.97); }
.btn.lg { padding: 16px 26px; font-size: 15.5px; }
.btn.primary { background: var(--lime); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(200,239,77,.6); }
.btn.primary:hover { background: var(--lime-2); transform: translateY(-1px); }
.btn.ghost { color: var(--text-2); }
.btn.ghost:hover { color: var(--text); }
.btn.outline { box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn.outline:hover { box-shadow: inset 0 0 0 1.5px var(--lime); color: var(--lime); }
.btn.glass { background: rgba(245,245,240,.08); backdrop-filter: blur(12px); box-shadow: inset 0 0 0 1px rgba(245,245,240,.14); }
.btn.glass:hover { background: rgba(245,245,240,.14); }

/* ---------- Navegación ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 var(--pad);
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(14,14,11,.86); backdrop-filter: blur(14px); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 30px; width: auto; }
.brand span { font: 600 15px/1 var(--head); color: var(--text-2); padding-left: 12px; border-left: 1px solid var(--line-2); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14.5px; color: var(--text-2); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--lime); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(245,245,240,.08); backdrop-filter: blur(10px); }
.lang button { border: 0; background: none; color: var(--muted); font: 600 12px/1 var(--body); padding: 7px 10px; border-radius: 999px; cursor: pointer; }
.lang button:hover { color: var(--text); }
.lang button.is-on { background: var(--lime); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; max-height: 1100px; overflow: hidden; background: #000; }
.compare { position: absolute; inset: 0; cursor: ew-resize; touch-action: pan-y; user-select: none; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 60%; pointer-events: none; }
.after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--split, 50%)); }
.img-after { opacity: 0; transition: opacity .6s var(--ease); }
.img-after.is-on { opacity: 1; }
.divider { position: absolute; top: 0; bottom: 0; left: var(--split, 50%); width: 3px; margin-left: -1.5px; background: var(--lime); box-shadow: 0 0 34px rgba(200,239,77,.7); z-index: 2; }
.knob {
  position: absolute; top: 58%; left: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border: 0; border-radius: 50%; cursor: grab;
  background: var(--lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E0E0B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 28px no-repeat;
  box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 8px rgba(200,239,77,.18);
  animation: knobPulse 2.4s ease-in-out infinite;
}
.knob:active { cursor: grabbing; }
@keyframes knobPulse { 50% { box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 16px rgba(200,239,77,0); } }
.tag {
  position: absolute; top: 96px; z-index: 3; padding: 8px 14px; border-radius: 999px;
  font: 600 12px/1 var(--body); letter-spacing: .1em; text-transform: uppercase;
  background: rgba(14,14,11,.66); backdrop-filter: blur(10px); border: 1px solid rgba(245,245,240,.12);
}
.tag-l { left: var(--pad); } .tag-r { right: var(--pad); color: var(--lime); }
.hero-shade {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,10,8,.9) 0%, rgba(10,10,8,.62) 30%, rgba(10,10,8,0) 58%),
    linear-gradient(0deg, rgba(10,10,8,.9) 0%, rgba(10,10,8,0) 32%),
    linear-gradient(180deg, rgba(10,10,8,.55) 0%, rgba(10,10,8,0) 18%);
}
.hero-copy {
  position: absolute; z-index: 4; left: var(--pad); top: 50%; transform: translateY(-50%);
  max-width: min(600px, 88vw); display: flex; flex-direction: column; gap: 22px; pointer-events: none;
}
.hero-copy > * { pointer-events: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font: 600 12.5px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; }
.hero h1 { font-size: clamp(44px, 6.4vw, 92px); line-height: .94; letter-spacing: -.04em; font-weight: 800; }
.hero h1 em { display: block; font-style: normal; color: var(--lime); }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--text-2); max-width: 46ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.styles-bar {
  position: absolute; z-index: 4; right: var(--pad); bottom: 36px;
  display: flex; align-items: center; gap: 6px; padding: 6px; border-radius: 999px;
  background: rgba(14,14,11,.62); backdrop-filter: blur(16px); border: 1px solid rgba(245,245,240,.12);
}
.styles-hint { font-size: 12.5px; color: var(--muted); padding: 0 8px 0 12px; }
.chip { border: 0; background: none; color: var(--text-2); font: 600 13.5px/1 var(--body); padding: 10px 16px; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s; }
.chip:hover { color: var(--text); background: rgba(245,245,240,.08); }
.chip.is-on { background: var(--lime); color: var(--ink); }
.hero-note { position: absolute; z-index: 4; left: var(--pad); bottom: 40px; font-size: 12.5px; color: var(--muted); }

/* ---------- Cifras ---------- */
.facts {
  max-width: var(--wrap); margin: 0 auto; padding: 44px var(--pad);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
  border-bottom: 1px solid var(--line);
}
.facts div { display: flex; flex-direction: column; gap: 6px; }
.facts b { font: 800 clamp(34px, 4vw, 52px)/1 var(--head); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.facts div:first-child b { color: var(--lime); }
.facts span { color: var(--muted); font-size: 14.5px; }

/* ---------- Secciones ---------- */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(80px, 11vw, 140px) var(--pad) 0; }
.sec-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 48px; }
.sec-head.center { margin-inline: auto; text-align: center; align-items: center; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 60px); line-height: 1; letter-spacing: -.035em; font-weight: 800; }
.sec-sub { color: var(--text-2); font-size: 17px; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; counter-reset: s; }
.steps li { position: relative; padding: 30px 28px 32px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.step-n { font: 800 64px/1 var(--head); color: transparent; -webkit-text-stroke: 1.5px var(--line-2); letter-spacing: -.04em; margin-bottom: 8px; transition: color .4s var(--ease), -webkit-text-stroke-color .4s; }
.steps li:hover .step-n { color: var(--lime); -webkit-text-stroke-color: var(--lime); }
.steps h3 { font-size: 22px; letter-spacing: -.02em; }
.steps p { color: var(--text-2); font-size: 15.5px; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.g-item { position: relative; margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; inset: auto 0 0; padding: 40px 16px 14px;
  background: linear-gradient(0deg, rgba(10,10,8,.9), transparent);
  font: 700 16px/1.2 var(--head); letter-spacing: -.01em;
}
.g-item figcaption small { display: block; font: 500 12.5px/1.3 var(--body); color: var(--text-2); margin-top: 3px; }

.bento { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.card { border-radius: 26px; padding: 34px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; overflow: hidden; position: relative; }
.card h3 { font-size: 26px; letter-spacing: -.025em; }
.card p { color: var(--text-2); max-width: 44ch; }
.card svg { color: var(--lime); margin-bottom: 8px; }
.card-plate { grid-row: span 3; justify-content: flex-end; min-height: 420px;
  background: radial-gradient(70% 60% at 50% 30%, rgba(200,239,77,.12), transparent 70%), var(--surface); }
.plate {
  align-self: center; margin: auto 0 36px; display: flex; width: min(420px, 100%); height: 96px;
  border-radius: 10px; overflow: hidden; background: #fafaf7; border: 3px solid #111;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.9); transform: perspective(700px) rotateX(12deg) rotateY(-10deg);
  transition: transform .8s var(--ease);
}
.card-plate:hover .plate { transform: perspective(700px) rotateX(0) rotateY(0); }
.eu { width: 40px; background: #1f45b0; color: #fff; display: grid; place-items: end center; padding-bottom: 10px; font: 700 16px/1 var(--body); }
.plate-logo { flex: 1; display: grid; place-items: center; font: 800 38px/1 var(--head); color: var(--ink); letter-spacing: -.02em; }
.batch { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-bottom: 10px; }
.batch i { aspect-ratio: 4/3; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); position: relative; overflow: hidden; }
.batch i::after { content: ""; position: absolute; inset: 0; background: var(--lime); transform: scaleX(0); transform-origin: left; animation: fill 3.6s var(--ease) infinite; opacity: .85; }
.batch i:nth-child(2)::after { animation-delay: .25s; } .batch i:nth-child(3)::after { animation-delay: .5s; }
.batch i:nth-child(4)::after { animation-delay: .75s; } .batch i:nth-child(5)::after { animation-delay: 1s; } .batch i:nth-child(6)::after { animation-delay: 1.25s; }
@keyframes fill { 0%, 10% { transform: scaleX(0); } 45%, 85% { transform: scaleX(1); } 100% { transform: scaleX(1); opacity: 0; } }

/* ---------- Precios ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 18px; }
.plan { position: relative; border-radius: 28px; padding: 36px 32px 32px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.plan h3 { font-size: 26px; }
.plan-for { color: var(--muted); font-size: 14.5px; }
.plan-price { margin: 14px 0 8px; display: flex; align-items: baseline; gap: 8px; }
.plan-price b { font: 800 64px/1 var(--head); letter-spacing: -.045em; }
.plan-price span { color: var(--muted); }
.plan ul { list-style: none; margin: 8px 0 26px; padding: 0; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; align-items: baseline; color: var(--text-2); font-size: 15px; }
.plan li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; transform: translateY(3px);
  background: var(--lime-soft, rgba(200,239,77,.14)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8EF4D' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 10px no-repeat; }
.plan li b { color: var(--text); }
.plan .btn { margin-top: auto; }
.plan.is-featured { background: linear-gradient(180deg, rgba(200,239,77,.09), rgba(200,239,77,0) 45%), var(--surface); border-color: rgba(200,239,77,.45); }
.badge { position: absolute; top: 20px; right: 20px; background: var(--lime); color: var(--ink); font: 700 11.5px/1 var(--body); letter-spacing: .06em; text-transform: uppercase; padding: 7px 10px; border-radius: 7px; }
.price-note { text-align: center; margin: 26px auto 0; max-width: 640px; color: var(--text-2); font-size: 14px; }
.price-note .muted { display: block; margin-top: 4px; font-size: 12.5px; }
.flow { list-style: none; padding: 0; margin: 34px auto 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.flow li { display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
.flow li span:first-child { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font: 700 12.5px/1 var(--body); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 40px; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font: 600 17.5px/1.35 var(--head); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: var(--lime); font: 500 20px/1 var(--body); transition: transform .3s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--text-2); margin-top: 12px; font-size: 15.5px; max-width: 60ch; }

/* ---------- CTA final ---------- */
.final { position: relative; margin: clamp(90px, 12vw, 150px) var(--pad) 0; border-radius: 32px; overflow: hidden; min-height: 460px; display: grid; align-items: center; }
.final img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 60%; }
.final::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,10,8,.92) 0%, rgba(10,10,8,.55) 50%, rgba(10,10,8,.1) 100%); }
.final-copy { position: relative; z-index: 2; padding: clamp(32px, 6vw, 80px); display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.final h2 { font-size: clamp(36px, 5vw, 68px); line-height: .98; letter-spacing: -.04em; font-weight: 800; }
.final p { color: var(--text-2); font-size: 18px; }

/* ---------- Pie ---------- */
.footer { max-width: var(--wrap); margin: 0 auto; padding: 80px var(--pad) 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.foot-brand { display: flex; flex-direction: column; gap: 10px; }
.foot-brand img { height: 30px; width: auto; align-self: flex-start; object-fit: contain; margin-bottom: 8px; }
.foot-brand p { color: var(--text-2); font-size: 14.5px; }
.foot-brand .muted { font-size: 13px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.foot-links a { color: var(--text-2); text-decoration: none; font-size: 14.5px; }
.foot-links a:hover { color: var(--lime); }
.foot-copy { grid-column: 1 / -1; font-size: 13px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- Página legal ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 130px var(--pad) 40px; }
.legal h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -.035em; line-height: 1; margin-bottom: 12px; }
.legal .toc { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 8px; }
.legal .toc a { text-decoration: none; padding: 9px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; }
.legal .toc a:hover { border-color: var(--lime); color: var(--lime); }
.legal section { padding-top: 56px; }
.legal h2 { font-size: 30px; letter-spacing: -.025em; margin-bottom: 18px; }
.legal h3 { font-size: 18px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text-2); font-size: 15.5px; }
.legal p + p { margin-top: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--lime); }
.legal .note { margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); font-size: 14px; color: var(--muted); }
[data-lang-block] { display: none; }
[data-lang-block].is-on { display: block; }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .nav { height: 64px; }
  .nav-actions .btn.ghost { display: none; }
  .brand span { display: none; }
  .hero { height: auto; min-height: 0; max-height: none; display: flex; flex-direction: column; }
  .compare { position: relative; height: 62svh; min-height: 380px; }
  .hero-shade { display: none; }
  .tag { top: 78px; }
  .hero-copy { position: relative; transform: none; left: 0; top: 0; max-width: none; padding: 28px var(--pad) 8px; background: var(--bg); }
  .styles-bar { position: absolute; top: calc(62svh - 64px); bottom: auto; left: 50%; right: auto; transform: translateX(-50%); max-width: calc(100% - 24px); overflow-x: auto; }
  .styles-hint { display: none; }
  .hero-note { position: relative; left: 0; bottom: 0; padding: 12px var(--pad) 0; background: var(--bg); }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .steps, .bento, .plans, .faq-list, .footer { grid-template-columns: 1fr; }
  .card-plate { grid-row: auto; min-height: 340px; }
  .plans { justify-content: stretch; }
  .final { margin-inline: 12px; }
}
@media (max-width: 420px) {
  .nav-actions .btn.primary { padding: 10px 14px; }
  .lang button { padding: 7px 8px; }
}

/* ---------- Hero en dos columnas (escritorio): texto a la izquierda, demo enmarcada a la derecha ---------- */
@media (min-width: 821px) {
  .hero {
    height: auto; min-height: min(100svh, 980px); max-height: none; background: var(--bg);
    display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr); grid-template-rows: auto auto; align-content: center;
    column-gap: clamp(28px, 4vw, 64px); row-gap: 18px; align-items: center;
    padding: 110px var(--pad) 48px;
  }
  .hero::before {
    content: ""; position: absolute; z-index: 0; right: -8%; top: 8%; width: 70%; height: 90%;
    background: radial-gradient(closest-side, rgba(200,239,77,.13), transparent 72%); pointer-events: none;
  }
  .hero-shade { display: none; }
  .hero-copy { position: relative; left: auto; top: auto; transform: none; max-width: 620px; grid-column: 1; grid-row: 1; }
  .hero h1 { font-size: clamp(42px, 5vw, 82px); }
  .compare {
    position: relative; inset: auto; grid-column: 2; grid-row: 1; aspect-ratio: 16 / 10; width: 100%;
    border-radius: 28px; overflow: hidden; z-index: 1;
    box-shadow: 0 0 0 1px rgba(245,245,240,.08), 0 50px 100px -30px rgba(0,0,0,.9), 0 0 120px -40px rgba(200,239,77,.35);
  }
  .compare img { object-position: 50% 55%; }
  .tag { top: 18px; } .tag-l { left: 18px; } .tag-r { right: 18px; }
  .knob { top: 55%; }
  .styles-bar { position: relative; right: auto; bottom: auto; grid-column: 2; grid-row: 2; justify-self: center; }
  .hero-note { position: relative; left: auto; bottom: auto; grid-column: 1; grid-row: 2; align-self: center; }
}
.lang button { color: var(--text-2); }

/* Tarjeta del logo: foto real de fondo en vez de espacio vacío */
.card-plate {
  background:
    linear-gradient(180deg, rgba(20,20,16,0) 0%, rgba(20,20,16,.15) 55%, rgba(20,20,16,.96) 84%),
    url("/img/plate-card.jpg") 50% 42% / cover no-repeat;
  border-color: rgba(245,245,240,.08);
}
.card-plate .plate { margin: auto auto 30px; width: min(380px, 88%); height: 86px; }
.card-plate::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(200,239,77,.12), inset 0 -120px 120px -60px rgba(200,239,77,.06);
}

/* ---------- Clientes: carrusel continuo de nombres ---------- */
.trust { padding: 56px 0 8px; border-top: 1px solid var(--line); }
.trust-title { text-align: center; font: 600 12.5px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.marquee {
  display: flex; overflow: hidden; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  flex: none; display: flex; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li {
  font: 700 clamp(22px, 2.4vw, 32px)/1 var(--head); letter-spacing: -.02em; color: #6f6f67; white-space: nowrap;
  display: flex; align-items: center; transition: color .3s var(--ease);
}
.marquee-track li:hover { color: var(--text); }
.marquee-track li::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); opacity: .7; margin: 0 clamp(28px, 4vw, 56px); }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .marquee { flex-wrap: wrap; justify-content: center; } }

/* ---------- Pie profesional ---------- */
.footer { display: block; max-width: none; margin: clamp(90px, 12vw, 150px) 0 0; padding: 0; border-top: 1px solid var(--line); background: #0b0b09; }
.foot-top { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad) 48px; display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr; gap: 40px; }
.foot-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.foot-brand p { color: var(--text-2); font-size: 15px; max-width: 34ch; }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-col h4 { margin: 0 0 6px; font: 600 12px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.foot-col a { color: var(--text-2); text-decoration: none; font-size: 14.5px; transition: color .2s; overflow-wrap: anywhere; }
.foot-col a:hover { color: var(--lime); }
.foot-bottom { max-width: var(--wrap); margin: 0 auto; padding: 22px var(--pad) 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); }
.foot-bottom p { margin: 0; }
.foot-pay b { color: var(--text-2); }
.final + .footer, .final ~ .footer { margin-top: clamp(90px, 12vw, 150px); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } }

/* Banda final con imagen panorámica: coche a la derecha, texto sobre la zona oscura */
.final { min-height: 0; aspect-ratio: 21 / 9; max-width: var(--wrap); margin-inline: auto; background: #0a0a08; }
.final img { object-position: 70% 55%; }
.final::before { background: linear-gradient(90deg, rgba(10,10,8,.85) 0%, rgba(10,10,8,.5) 38%, rgba(10,10,8,0) 60%); }
.final-copy { max-width: 560px; }
@media (max-width: 820px) {
  .final { aspect-ratio: auto; min-height: 520px; align-items: end; }
  .final img { object-position: 72% 50%; }
  .final::before { background: linear-gradient(0deg, rgba(10,10,8,.95) 30%, rgba(10,10,8,.2) 75%); }
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom)); z-index: 60;
  display: flex; align-items: center; gap: 0; height: 58px; min-width: 58px; padding: 0 15px; border-radius: 999px;
  background: #25D366; color: #fff; text-decoration: none; box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 4px 14px rgba(0,0,0,.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), gap .3s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); gap: 10px; box-shadow: 0 16px 36px -8px rgba(37,211,102,.7), 0 4px 14px rgba(0,0,0,.35); }
.wa-float svg { flex: none; }
.wa-label { max-width: 0; overflow: hidden; white-space: nowrap; font: 600 14.5px/1 var(--body); transition: max-width .35s var(--ease); }
.wa-float:hover .wa-label, .wa-float:focus-visible .wa-label { max-width: 260px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.8s ease-out infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70%, 100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
@media (max-width: 820px) { .wa-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); height: 54px; min-width: 54px; padding: 0 13px; } }
