/* Automotriz Express 2.0 — sistema visual
   Negro + blanco hueso + azul rey corporativo. Titulares condensados en cursiva
   (eco de las líneas de velocidad del logo), cortes en diagonal y botones en paralelogramo. */

:root {
  --ink: #0a0d12;
  --ink-2: #10151c;
  --ink-3: #171e27;
  --line: rgba(255, 255, 255, .09);
  --bone: #f3f0ea;
  --bone-2: #e7e2d9;
  --text: #f3f0ea;
  --muted: #9aa3ae;
  --dark-text: #14181e;
  --dark-muted: #5a6370;
  --accent: #2451d6;       /* azul rey corporativo: rellenos (botones, bandas) */
  --accent-hot: #2e5ef0;
  --accent-fg: #4a78ff;    /* azul rey aclarado: texto azul sobre fondo oscuro */
  --ok: #25d366;

  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 4px;
  --skew: -12deg;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--accent); color: #fff; padding: 8px 14px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .92;
  margin: 0;
}
h1 { font-size: clamp(3.2rem, 11vw, 9.5rem); }
h2 { font-size: clamp(2.4rem, 6.4vw, 5.2rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); line-height: 1; }
.accent { color: var(--accent-fg); }
.outline { color: transparent; -webkit-text-stroke: 2px var(--text); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent-fg);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: currentColor; transform: skewX(var(--skew)); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 58ch; }

/* ---------- Botones ---------- */
.btn {
  --bg: var(--accent); --fg: #fff;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; min-height: 54px;
  font-family: var(--display); font-weight: 800; font-style: italic; font-size: 1.15rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  color: var(--fg); background: none; border: 0; cursor: pointer; isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--bg); transform: skewX(var(--skew)); transition: transform .3s var(--ease), background .2s;
}
.btn:hover::before { transform: skewX(var(--skew)) scale(1.04); background: var(--accent-hot); }
.btn svg { width: 22px; height: 22px; flex: none; }
.btn--ghost { --fg: var(--text); }
.btn--ghost::before { background: transparent; box-shadow: inset 0 0 0 2px var(--line), inset 0 0 0 2px rgba(255,255,255,.35); }
.btn--ghost:hover::before { background: rgba(255, 255, 255, .06); }
.btn--wa { --bg: var(--ok); --fg: #062b12; }
.btn--wa:hover::before { background: #3be07a; }
.btn--dark { --bg: var(--ink); --fg: var(--bone); }
.btn--dark:hover::before { background: var(--ink-3); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px 22px; }

/* ---------- Cabecera ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled, .header.is-solid {
  background: rgba(10, 13, 18, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__in { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none; color: var(--muted); position: relative; padding: 6px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--accent); transform: skewX(var(--skew));
}
.nav .btn { padding: 10px 22px; min-height: 44px; font-size: 1rem; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); width: 48px; height: 48px; cursor: pointer; padding: 12px; }
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 6px 0; transition: transform .3s var(--ease), opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 0; flex-direction: column; align-items: flex-start; gap: 6px;
    padding: 32px var(--gutter); background: var(--ink); transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav a { font-size: 2.4rem; font-style: italic; font-weight: 800; letter-spacing: 0; }
  .nav .btn { margin-top: 20px; font-size: 1.2rem; padding: 16px 30px; }
  .nav-open .nav { transform: none; }
  .nav-open { overflow: hidden; }
  .brand img { height: 42px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: min(100svh, 940px); display: flex; align-items: flex-end;
  padding: 140px 0 72px; overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; filter: grayscale(.35) contrast(1.1); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,13,18,.96) 0%, rgba(10,13,18,.75) 45%, rgba(10,13,18,.25) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 40%);
}
.speedlines { position: absolute; right: -4%; top: 22%; width: 46%; z-index: -1; opacity: .9; pointer-events: none; }
.speedlines i {
  display: block; height: 6px; margin: 20px 0; background: linear-gradient(90deg, transparent, var(--accent));
  transform: skewX(var(--skew)); animation: dash 2.8s var(--ease) infinite;
}
.speedlines i:nth-child(2) { width: 70%; margin-left: 30%; animation-delay: .25s; }
.speedlines i:nth-child(3) { width: 85%; margin-left: 15%; animation-delay: .5s; opacity: .6; }
.speedlines i:nth-child(4) { width: 55%; margin-left: 45%; animation-delay: .75s; opacity: .4; }
@keyframes dash { 0% { transform: skewX(var(--skew)) translateX(40%); opacity: 0; } 30% { opacity: 1; } 100% { transform: skewX(var(--skew)) translateX(-10%); opacity: 0; } }
.hero h1 .line { display: block; }
.hero h1 .line:nth-child(2) { padding-left: .6em; }
.hero h1 .line:nth-child(3) { padding-left: 1.2em; }
.hero__foot { margin-top: 36px; display: grid; gap: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 28px; color: var(--muted); font-size: .98rem; }
.hero__meta b { color: var(--text); font-weight: 600; }
.stars { color: var(--accent-fg); letter-spacing: 2px; }
@media (min-width: 900px) {
  .hero__foot { grid-template-columns: 1.1fr 1fr; align-items: end; }
}
@media (max-width: 700px) {
  .hero h1 .line:nth-child(2), .hero h1 .line:nth-child(3) { padding-left: 0; }
  .speedlines { width: 80%; top: 14%; opacity: .5; }
}

/* ---------- Ticker ---------- */
.ticker { background: var(--accent); color: #fff; overflow: hidden; transform: skewY(-1.5deg); margin: 0 -10px; position: relative; z-index: 2; }
.ticker__track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker span {
  font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem); padding: 14px 0; white-space: nowrap; display: flex; align-items: center;
}
.ticker span::after { content: "///"; margin: 0 28px; opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Secciones ---------- */
.section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section--bone, .prose-wrap { --accent-fg: var(--accent); }
.section--bone { background: var(--bone); color: var(--dark-text); }
.section--bone .lead, .section--bone .muted { color: var(--dark-muted); }
.section--bone .outline { -webkit-text-stroke-color: var(--dark-text); }
.section--panel { background: var(--ink-2); }
.section__head { display: grid; gap: 24px; margin-bottom: clamp(44px, 6vw, 72px); }
@media (min-width: 900px) { .section__head--split { grid-template-columns: 1.2fr 1fr; align-items: end; } }
.muted { color: var(--muted); }

/* ---------- Servicios ---------- */
.services { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 620px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services { grid-template-columns: repeat(3, 1fr); } }
.service {
  position: relative; background: var(--ink); padding: 34px 30px 36px; overflow: hidden;
  transition: background .3s var(--ease);
}
.service::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: var(--accent);
  transition: width .45s var(--ease);
}
.service:hover { background: var(--ink-3); }
.service:hover::after { width: 100%; }
.service__num { position: absolute; top: 22px; right: 26px; font-family: var(--display); font-weight: 700; font-style: italic; color: var(--muted); opacity: .5; font-size: 1.1rem; }
.icon {
  width: 60px; height: 60px; background: var(--accent-fg); margin-bottom: 26px;
  -webkit-mask: var(--i) center / contain no-repeat; mask: var(--i) center / contain no-repeat;
}
.service h3 { margin-bottom: 12px; }
.service p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.section--bone .services { background: rgba(0,0,0,.1); border-color: rgba(0,0,0,.1); }

/* ---------- Por qué ---------- */
.why { display: grid; gap: clamp(40px, 6vw, 90px); }
@media (min-width: 960px) { .why { grid-template-columns: 1fr 1fr; align-items: center; } }
.why__img { position: relative; }
.why__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%); filter: grayscale(.2); }
.why__tag {
  position: absolute; left: -6px; bottom: 40px; background: var(--accent); color: #fff; padding: 18px 26px;
  font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; line-height: 1; font-size: 1.5rem;
  transform: skewX(var(--skew));
}
.why__tag small { display: block; font-size: .95rem; letter-spacing: .12em; opacity: .85; margin-top: 4px; font-weight: 600; }
.pillars { display: grid; gap: 0; margin-top: 40px; counter-reset: p; }
.pillar { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid rgba(0,0,0,.12); }
.pillar:last-child { border-bottom: 1px solid rgba(0,0,0,.12); }
.pillar::before {
  counter-increment: p; content: "0" counter(p);
  font-family: var(--display); font-weight: 800; font-style: italic; font-size: 2.4rem; line-height: 1; color: var(--accent-fg);
}
.pillar h3 { font-size: 1.6rem; margin-bottom: 6px; }
.pillar p { margin: 0; color: var(--dark-muted); }

/* ---------- Proceso ---------- */
.steps { display: grid; gap: 1px; background: var(--line); grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.step { background: var(--ink-2); padding: 36px 30px; position: relative; }
.step__n { font-family: var(--display); font-weight: 800; font-style: italic; font-size: 5rem; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--accent-fg); display: block; margin-bottom: 22px; }
.step h3 { font-size: 1.6rem; margin-bottom: 10px; }
.step p { margin: 0; color: var(--muted); font-size: 1.02rem; }

/* ---------- Opiniones ---------- */
.reviews { display: grid; gap: 24px; }
@media (min-width: 860px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review { background: var(--ink-3); padding: clamp(30px, 4vw, 48px); position: relative; border-left: 4px solid var(--accent); }
.review::before { content: "“"; position: absolute; right: 26px; top: -10px; font-family: var(--display); font-size: 9rem; line-height: 1; color: var(--accent-fg); opacity: .25; font-style: italic; }
.review blockquote { margin: 0 0 24px; font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.55; }
.review cite { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; }
.review .stars { display: block; margin-bottom: 16px; }

/* ---------- Big CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--accent); color: #fff; isolation: isolate; }
.cta::before {
  content: "EXPRESS"; position: absolute; right: -2%; bottom: -12%; z-index: -1;
  font-family: var(--display); font-weight: 800; font-style: italic; font-size: clamp(8rem, 26vw, 24rem); line-height: 1;
  color: rgba(0,0,0,.09); white-space: nowrap;
}
.cta h2 { max-width: 12ch; }
.cta .lead { color: rgba(255,255,255,.9); }
.cta__grid { display: grid; gap: 36px; }
@media (min-width: 900px) { .cta__grid { grid-template-columns: 1.3fr 1fr; align-items: end; } }
.cta .btn { --bg: var(--ink); }
.cta .btn:hover::before { background: #000; }
.cta .btn--wa { --bg: #fff; --fg: var(--ink); }
.cta .btn--wa:hover::before { background: var(--bone); }

/* ---------- Ubicación ---------- */
.visit { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 900px) { .visit { grid-template-columns: repeat(3, 1fr); } }
.visit > div { background: var(--ink); padding: 36px 30px; }
.visit h3 { font-size: 1.4rem; color: var(--accent-fg); margin-bottom: 14px; }
.visit p { margin: 0 0 6px; }
.visit a { text-decoration-color: var(--accent); text-underline-offset: 4px; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; font-weight: 600; }

/* ---------- Page hero (interiores) ---------- */
.page-hero { padding: 170px 0 70px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(3rem, 9vw, 7.5rem); }
.page-hero .lead { margin-top: 24px; }
.page-hero::after {
  content: ""; position: absolute; right: -60px; top: 110px; width: 380px; height: 220px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 24px);
  transform: skewX(var(--skew)); opacity: .14; pointer-events: none;
}

/* ---------- Blog ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.chip {
  font: inherit; font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  background: none; color: var(--muted); border: 1px solid var(--line); padding: 8px 18px; cursor: pointer; border-radius: 999px;
  transition: all .2s;
}
.chip:hover { color: var(--text); border-color: var(--muted); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.posts { display: grid; gap: 40px 28px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.post-card { text-decoration: none; display: flex; flex-direction: column; gap: 16px; }
.post-card__img { overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink-3); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s; filter: grayscale(.3); }
.post-card:hover .post-card__img img { transform: scale(1.06); filter: none; }
.post-card h3 { font-size: 1.7rem; transition: color .2s; }
.post-card:hover h3 { color: var(--accent-fg); }
.post-card p { margin: 0; color: var(--muted); font-size: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-family: var(--display); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .9rem; color: var(--muted); }
.meta .cat { color: var(--accent-fg); }
.post-card--feature { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .post-card--feature { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
  .post-card--feature h3 { font-size: 3.2rem; }
  .post-card--feature .post-card__img { aspect-ratio: 16 / 9; }
}

/* Artículo */
.article-hero { padding: 150px 0 0; }
.article-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); max-width: 18ch; margin: 18px 0 26px; }
.article-cover { margin-top: 50px; }
.article-cover img { width: 100%; max-height: 620px; object-fit: cover; }
.prose-wrap { background: var(--bone); color: var(--dark-text); padding: clamp(50px, 8vw, 100px) 0; }
.prose { max-width: 720px; margin: 0 auto; font-size: 1.16rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.1em; }
.prose p, .prose ul, .prose ol { margin-bottom: 0; }
.prose h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 1.8em; margin-bottom: -.1em; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .45em 0; }
.prose li::marker { color: var(--accent-fg); font-weight: 700; }
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose strong { color: #000; }
.prose > p:first-child { font-size: 1.32rem; line-height: 1.6; color: #2a2f36; }
.article-cta {
  max-width: 720px; margin: 60px auto 0; background: var(--ink); color: var(--text); padding: 40px 36px; position: relative; overflow: hidden;
}
.article-cta::after { content: ""; position: absolute; right: -40px; top: 0; bottom: 0; width: 160px; background: var(--accent); transform: skewX(var(--skew)); opacity: .9; }
.article-cta > * { position: relative; z-index: 1; max-width: 460px; }
.article-cta h3 { font-size: 2.1rem; margin-bottom: 12px; }
.article-cta p { color: var(--muted); margin: 0 0 24px; }
.back { display: inline-flex; gap: 8px; align-items: center; text-decoration: none; color: var(--muted); font-family: var(--display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .95rem; }
.back:hover { color: var(--accent-fg); }

/* ---------- Contacto ---------- */
.contact { display: grid; gap: clamp(40px, 6vw, 80px); }
@media (min-width: 960px) { .contact { grid-template-columns: 1.1fr 1fr; } }
.form { display: grid; gap: 18px; }
.form .row { display: grid; gap: 18px; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-family: var(--display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1.05rem; color: var(--text); background: var(--ink-2);
  border: 1px solid var(--line); border-bottom: 2px solid rgba(255,255,255,.2); padding: 14px 16px; border-radius: 0;
  transition: border-color .2s, background .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); background: var(--ink-3); }
.form small { color: var(--muted); font-size: .9rem; }
.contact-cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); align-self: start; }
.contact-card { display: flex; gap: 20px; align-items: flex-start; padding: 26px 28px; background: var(--ink); text-decoration: none; transition: background .2s; }
a.contact-card:hover { background: var(--ink-3); }
.contact-card svg { width: 28px; height: 28px; color: var(--accent-fg); flex: none; margin-top: 2px; }
.contact-card strong { display: block; font-family: var(--display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 1.5rem; line-height: 1.1; }
.contact-card span { color: var(--muted); font-size: 1rem; }
.map { margin-top: 60px; border: 1px solid var(--line); filter: grayscale(1) invert(.92) contrast(.9); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: #06080b; border-top: 1px solid var(--line); padding: 80px 0 40px; font-size: 1rem; }
.footer__grid { display: grid; gap: 44px; }
@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer img { height: 90px; width: auto; margin-bottom: 18px; }
.footer h4 { font-family: var(--display); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .95rem; color: var(--accent-fg); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer p { color: var(--muted); margin: 0 0 6px; }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: all .2s; }
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.social svg { width: 20px; height: 20px; }
.footer__bottom { margin-top: 60px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between; color: var(--muted); font-size: .9rem; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 62px; height: 62px; border-radius: 50%;
  background: var(--ok); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 2.2rem; margin: 2em 0 .6em; }
.legal p, .legal li { color: var(--dark-muted); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
