/* ============================================================
   Landing de conversión /promo — Grúa para Motos BS
   Tema OSCURO (oro & negro), mobile-first.
   Independiente de assets/css/styles.css
   ============================================================ */

:root {
  --gold: #d4af37;
  --gold-dim: #b8912a;
  --gold-soft: #f3e4b8;
  --gold-line: rgba(212, 175, 55, .28);
  --ink: #f2efe8;
  --ink-2: #b6b0a2;
  --bg: #0a0908;
  --bg-2: #121110;
  --surface: #171613;
  --line: rgba(255, 255, 255, .09);
  --wa: #25d366;
  --ff-head: 'Cinzel', Georgia, serif;
  --ff-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 560px;
  --r: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 76px; /* espacio para la barra fija inferior */
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- Franja superior deslizante ---------- */
.strip {
  background: var(--gold);
  color: #160f02;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
  animation: strip-scroll 30s linear infinite;
  width: max-content;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip__track { animation: none; }
}

/* ---------- Encabezado ---------- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--gold-line);
}
.top__logo { height: 34px; width: auto; }
.top__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 38px 0 30px;
  background: #0a0908;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .38;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,7,6,.55), rgba(8,7,6,.92));
}
.hero .wrap { position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 700;
}
.hero h1 .g { color: var(--gold); }
.hero__sub {
  margin: 0 auto 22px;
  max-width: 34ch;
  color: #ded9cd;
  font-size: 16px;
}

/* ---------- Botones ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--r);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
}
.btn + .btn { margin-top: 10px; }
.btn--wa { background: var(--wa); color: #06331a; }
.btn--call {
  background: linear-gradient(135deg, #e7c65a, var(--gold-dim));
  color: #1a1204;
}
.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold-line); }
.btn--dark { background: var(--surface); color: var(--gold); border: 1px solid var(--gold-line); }
.btn__ic { width: 22px; height: 22px; flex: none; fill: currentColor; }

.hero__note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-2);
}

/* ---------- Badges ---------- */
.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--gold-line);
}
.badge {
  background: var(--bg-2);
  padding: 16px 12px;
  text-align: center;
}
.badge b {
  display: block;
  font-family: var(--ff-head);
  font-size: 19px;
  color: var(--gold);
  margin-bottom: 2px;
}
.badge span { font-size: 13px; color: var(--ink-2); line-height: 1.3; display: block; }

/* ---------- Secciones ---------- */
.sec { padding: 34px 0; background: var(--bg); }
.sec--alt { background: var(--bg-2); }
.sec h2 {
  font-family: var(--ff-head);
  font-size: 23px;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 6px;
  color: #fff;
}
.sec__lead {
  text-align: center;
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 auto 20px;
  max-width: 32ch;
}

/* ---------- Accesos rápidos "¿Qué te pasó?" ---------- */
.quick { display: grid; gap: 10px; }
.quick__item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--surface);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  padding: 14px 15px;
  text-decoration: none;
  font-weight: 600;
  transition: border-color .25s ease, transform .25s ease;
}
.quick__item:hover { border-color: var(--gold); transform: translateY(-2px); }
.quick__ic {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 11px;
  background: radial-gradient(circle at 40% 30%, rgba(212,175,55,.22), rgba(212,175,55,.05));
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
}
.quick__ic svg { width: 22px; height: 22px; fill: var(--gold); }
.quick__txt { flex: 1; }
.quick__txt small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 1px;
}
.quick__go { color: var(--gold); font-size: 20px; font-weight: 700; }

/* ---------- Galería ---------- */
.shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.shots img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.shots a:first-child { grid-column: 1 / -1; }
.shots a:first-child img { height: 190px; }

/* ---------- Pasos ---------- */
.steps { display: grid; gap: 14px; }
.step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.step__n {
  width: 32px; height: 32px;
  flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(212,175,55,.25), rgba(212,175,55,.06));
  border: 1px solid var(--gold-line);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.step b { display: block; font-size: 16px; color: #fff; }
.step span { color: var(--ink-2); font-size: 15px; }

/* ---------- Garantías ---------- */
.guards { display: grid; gap: 12px; }
.guard {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 13px 14px;
}
.guard svg { width: 20px; height: 20px; flex: none; fill: var(--gold); margin-top: 2px; }
.guard b { display: block; font-size: 15px; color: #fff; }
.guard span { color: var(--ink-2); font-size: 14px; }

/* ---------- Cobertura ---------- */
.zones { text-align: center; }
.zones h3 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 8px;
}
.zones p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 8px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 14px;
}
.faq details[open] { border-color: var(--gold-line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after { content: '−'; }
.faq p {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 15px;
}

/* ---------- Cierre ---------- */
.close-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-line);
  color: #fff;
  text-align: center;
  padding: 34px 0;
}
.close-cta h2 { font-family: var(--ff-head); font-size: 23px; margin: 0 0 8px; }
.close-cta p { color: var(--ink-2); margin: 0 0 20px; font-size: 15px; }

/* ---------- Pie ---------- */
.foot {
  text-align: center;
  padding: 22px 16px 26px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot img { height: 30px; margin: 0 auto 10px; opacity: .8; }
.foot a { color: var(--gold); }

/* ---------- Barra fija inferior ---------- */
.bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 9, 8, .94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-line);
}
.bar .btn { padding: 13px 10px; font-size: 15px; margin: 0; }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Escritorio ---------- */
@media (min-width: 720px) {
  :root { --wrap: 680px; }
  body { padding-bottom: 0; }
  .bar { display: none; }
  .hero { padding: 62px 0 54px; }
  .hero h1 { font-size: 44px; }
  .hero__sub { font-size: 18px; max-width: 40ch; }
  .hero__btns { display: flex; gap: 12px; }
  .hero__btns .btn { margin-top: 0; }
  .badges { grid-template-columns: repeat(4, 1fr); }
  .sec { padding: 52px 0; }
  .sec h2 { font-size: 30px; }
  .quick { grid-template-columns: 1fr 1fr; }
  .shots img { height: 150px; }
  .shots a:first-child { grid-column: auto; }
  .shots a:first-child img { height: 150px; }
  .guards { grid-template-columns: repeat(3, 1fr); }
}
