/* ============================================================
   MotoFlash — Estilos
   Mobile-first. Negro · Amarillo · Blanco · Morado.
   ============================================================ */

:root {
  /* Base — gradiente púrpura estilo vignette (aplicado en body) */
  --bg:        #150425;
  --bg-2:      #1F0838;
  --bg-3:      #2A0F4A;
  --line:      rgba(255, 255, 255, 0.10);
  --text:      #FFFFFF;
  --muted:     #C4B6D6;

  /* Colores extraídos del logo oficial */
  --yellow:    #FFC629;   /* dorado marca ("Flash", rayos, cascos) */
  --yellow-2:  #FFD75E;
  --purple:    #5B2C87;   /* morado marca (capa, delivery) */
  --purple-2:  #7A3B9E;   /* morado chevrones portada */
  --navy:      #1A1F2E;

  /* Neutrales para secciones en blanco */
  --ink:       #150425;   /* texto oscuro sobre blanco */
  --ink-muted: #5A4D6A;
  --paper:     #FFFFFF;
  --paper-2:   #F6F2FA;
  --line-ink:  #E7DFF0;

  --wa:        #25D366;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --shadow-y:  0 8px 24px rgba(255,198,41,.28);

  --container: 1180px;
  --nav-h:     128px;

  --ff: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-black: 'Archivo Black', var(--ff);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, select, textarea, button { font-family: inherit; }
::selection { background: var(--yellow); color: #000; }

body {
  font-family: var(--ff);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 72px; /* espacio para bottom bar en móvil */

  /* Gradiente radial púrpura — "spotlight" vignette (queda fijo al hacer scroll) */
  background:
    radial-gradient(1400px 900px at 50% 22%, #7A1CA0 0%, transparent 60%),
    radial-gradient(1100px 900px at 50% 78%, #4A1470 0%, transparent 65%),
    #100320;
  background-attachment: fixed;
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 820px; }

.section {
  padding: 72px 0;
  position: relative;
}
@media (min-width: 900px) {
  .section { padding: 110px 0; }
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section__title {
  font-family: var(--ff-black);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 10px 0 12px;
  text-transform: none;
}
.section__sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}
.hl { color: var(--yellow); }
.arrow { color: var(--yellow); padding: 0 6px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,198,41,.15);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,198,41,.15); }
  50%      { box-shadow: 0 0 0 10px rgba(255,198,41,0); }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--sm  { padding: 9px 16px;  font-size: 13px; }
.btn--lg  { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--yellow);
  color: #000;
  box-shadow: var(--shadow-y);
}
.btn--primary:hover { background: var(--yellow-2); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover { border-color: var(--text); background: rgba(255,255,255,.06); }

/* -------- Brand + Nav -------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand__img {
  display: block;
  height: 48px;      /* móvil */
  width: auto;
  object-fit: contain;
  /* Contorno blanco delgado (4 direcciones) + sombra suave abajo */
  filter:
    drop-shadow( 1px  0 0 #fff)
    drop-shadow(-1px  0 0 #fff)
    drop-shadow( 0  1px 0 #fff)
    drop-shadow( 0 -1px 0 #fff)
    drop-shadow(0 3px 10px rgba(0, 0, 0, .4));
}
.brand--lg .brand__img {
  height: 84px;      /* footer móvil */
  filter:
    drop-shadow( 1.2px  0 0 #fff)
    drop-shadow(-1.2px  0 0 #fff)
    drop-shadow( 0  1.2px 0 #fff)
    drop-shadow( 0 -1.2px 0 #fff)
    drop-shadow(0 4px 18px rgba(0, 0, 0, .4));
}
@media (min-width: 900px) {
  .brand__img { height: 84px; }        /* desktop — más presencia */
  .brand--lg .brand__img { height: 110px; }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,10,.75);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center;
  gap: 32px;
}
/* La nav abarca TODO el ancho de la ventana (no centrada) para que el
   logo pueda pegarse a la esquina izquierda real y el botón a la derecha. */
.nav__inner.container {
  max-width: 100%;
  padding-left: 48px;
  padding-right: 32px;
}
@media (max-width: 700px) {
  .nav__inner.container { padding-left: 20px; padding-right: 16px; }
}
.nav__inner .brand { margin-right: 4px; margin-left: 0; }
.nav .btn--primary { margin-left: auto; }
.nav__links {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.nav__links a { color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--yellow); }

.nav__burger {
  background: transparent; border: 0; padding: 8px;
  display: inline-flex; flex-direction: column; gap: 5px;
  margin-left: auto;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .2s;
}

.nav .btn--primary { display: none; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav .btn--primary { display: inline-flex; }
}

.nav__mobile {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.nav__mobile[hidden] { display: none; }        /* respeta atributo hidden */
@media (min-width: 900px) {
  .nav__mobile { display: none !important; }   /* nunca en desktop */
}
.nav__mobile a {
  padding: 12px 8px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.nav__mobile a:last-child { border-bottom: 0; margin-top: 8px; justify-content: center; }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 30px);
  padding-bottom: 0;
  overflow: hidden;
  background: var(--bg);
  min-height: 92vh;
  display: flex; align-items: center;
}

/* Portada oficial como capa de fondo */
.hero__cover {
  position: absolute;
  inset: 0;
  background-image: url('assets/portada2.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  z-index: 0;
  opacity: .9;
}

/* Degradado oscuro para legibilidad del texto */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,15,.85) 0%, rgba(10,10,15,.55) 45%, rgba(10,10,15,.85) 100%),
    radial-gradient(700px 400px at 30% 40%, rgba(91,44,135,.35), transparent 70%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero__cover {
    background-position: right center;
  }
  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(10,10,15,.95) 0%, rgba(10,10,15,.75) 40%, rgba(10,10,15,.15) 75%, rgba(10,10,15,0) 100%),
      radial-gradient(600px 400px at 20% 50%, rgba(91,44,135,.25), transparent 70%);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 60px;
  max-width: 660px;
  margin-left: 0;      /* anclado al lado IZQUIERDO */
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 900px) {
  .hero__inner {
    padding-bottom: 80px;
    padding-left: 48px;   /* alineado con la nav */
    max-width: 640px;
  }
}
@media (min-width: 1200px) {
  .hero__inner { max-width: 700px; padding-left: 56px; }
}

.hero__title {
  font-family: var(--ff-black);
  font-size: clamp(38px, 8.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.hero__accent {
  display: inline-block;
  position: relative;
  color: #000;
  background: var(--yellow);
  padding: 2px 12px 6px;
  transform: skew(-6deg);
  box-shadow: 6px 6px 0 var(--purple);
}
.hero__excl { color: #000; margin-left: 2px; }

.hero__desc {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 620px;
  margin: 0 0 26px;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}
.hero__link {
  color: var(--yellow);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.hero__link:hover { border-bottom-color: var(--yellow); }

/* Marquee */
.hero__marquee {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(0deg);
}
.marquee__track {
  display: inline-flex;
  gap: 22px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-family: var(--ff-black);
  font-size: 14px;
  letter-spacing: .08em;
}
.marquee__track span:nth-child(even) { opacity: .5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- Secciones sobre el gradiente púrpura --------
   Casi todas transparentes para que se vea el fondo.
   Requisitos + FAQ van en BLANCO para el mix negro/blanco. */
.pasos, .marcas, .catalogo, .paraquien, .accesorios, .testimonios, .sucursales, .simulador { background: transparent !important; border-color: transparent !important; }
.beneficios { background: rgba(15, 3, 32, .45) !important; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); backdrop-filter: blur(6px); }
.solicitar  { background: rgba(15, 3, 32, .45) !important; backdrop-filter: blur(6px); }

/* -------- PASOS -------- */
.pasos { background: var(--bg); }
.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.step {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-4px); border-color: var(--yellow); }
.step::before {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,198,41,.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.step__num {
  font-family: var(--ff-black);
  font-size: 56px;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  text-shadow: 4px 4px 0 rgba(122,59,158,.35);
}
.step__title {
  font-family: var(--ff-black);
  font-size: 22px;
  margin: 0 0 8px;
}
.step__text { color: var(--muted); margin: 0; }

/* -------- BENEFICIOS -------- */
.beneficios { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefits {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .benefits { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.benefit {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s;
}
.benefit:hover { transform: translateY(-3px); border-color: var(--purple); }
.benefit__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(122,59,158,.15);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.benefit__icon svg {
  width: 22px; height: 22px;
  stroke: var(--purple-2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { font-family: var(--ff-black); font-size: 18px; margin: 0 0 6px; }
.benefit p  { color: var(--muted); margin: 0; font-size: 15px; }

/* -------- CATÁLOGO -------- */
.catalogo { background: var(--bg); }
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); border-color: var(--yellow); }

.card__visual {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-3), #000);
  overflow: hidden;
  display: grid; place-items: center;
}
.card__visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--_c, var(--yellow)), transparent 55%);
  opacity: .35;
}
.card__moto {
  position: relative;
  z-index: 2;
  width: 60%; opacity: .95;
}
.card__moto svg { width: 100%; height: auto; fill: var(--text); }
.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #000;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  z-index: 3;
}
.card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__name { font-family: var(--ff-black); font-size: 22px; margin: 0; }
.card__tag  { color: var(--muted); font-size: 14px; margin: 0; }
.card__meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 4px 0;
}
.card__meta span {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--muted);
}
.card__feats { display: grid; gap: 6px; margin: 6px 0 4px; }
.card__feats li { color: var(--muted); font-size: 14px; padding-left: 20px; position: relative; }
.card__feats li::before {
  content: "✓";
  color: var(--yellow);
  position: absolute; left: 0; top: 0;
  font-weight: 900;
}
.card__price {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.card__price strong {
  font-family: var(--ff-black);
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}
.card__price small { color: var(--muted); font-size: 13px; }
.card .btn { margin-top: 8px; }

/* -------- SIMULADOR -------- */
.simulador { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.simulator {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .simulator { grid-template-columns: 1.1fr 1fr; gap: 32px; } }

.simulator__form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.field { display: grid; gap: 8px; }
.field > span { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color .15s, background .15s;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--yellow); background: #1c1c1c; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.simulator__result {
  background: linear-gradient(160deg, #1a1a1a, #0e0e0e);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.simulator__result::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,198,41,.25), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.result__label { color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.result__amount {
  display: flex; align-items: baseline; gap: 4px;
  font-family: var(--ff-black);
  color: var(--yellow);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  margin: 8px 0 14px;
}
.result__amount .currency { font-size: .5em; padding-top: 6px; }
.result__amount .per { color: var(--muted); font-family: var(--ff); font-size: .3em; font-weight: 700; }
.result__meta { display: grid; gap: 6px; color: var(--muted); font-size: 14px; margin: 8px 0 18px; }
.result__meta strong { color: var(--text); }
.result__note { color: var(--muted); font-size: 12px; margin: 10px 0 0; }

/* -------- REQUISITOS (fondo BLANCO) -------- */
.requisitos {
  background: var(--paper) !important;
  color: var(--ink);
}
.requisitos .section__title { color: var(--ink); }
.requisitos .section__sub   { color: var(--ink-muted); }
.requisitos .eyebrow        { color: var(--purple); }
.requisitos .eyebrow .dot   { background: var(--purple); box-shadow: 0 0 0 4px rgba(91,44,135,.15); }
.requisitos .hl             { color: var(--purple); }

.checks {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: 12px;
}
.requisitos .checks li {
  background: var(--paper-2);
  border: 1px solid var(--line-ink);
  color: var(--ink);
}
.checks li {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.check {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  background: var(--yellow); color: #000;
  border-radius: 8px;
  font-weight: 900;
  flex-shrink: 0;
}

/* -------- PARA QUIÉN -------- */
.paraquien { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) { .audience { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1000px){ .audience { grid-template-columns: repeat(5, 1fr); gap: 22px; } }
.aud {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 22px 30px;
  text-align: center;
  transition: transform .2s, border-color .2s;
  min-height: 240px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.aud:hover { transform: translateY(-4px); border-color: var(--yellow); }
.aud__ico { display: block; font-size: 48px; margin-bottom: 14px; line-height: 1; }
.aud h3 { font-family: var(--ff-black); font-size: 19px; margin: 8px 0 10px; }
.aud p  { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.45; }

/* -------- ACCESORIOS -------- */
.accesorios { background: var(--bg); }
.accs {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .accs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px){ .accs { grid-template-columns: repeat(6, 1fr); } }
.acc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.acc:hover { border-color: var(--purple); transform: translateY(-2px); }
.acc__ico {
  width: 44px; height: 44px; margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(255,198,41,.12);
  display: grid; place-items: center;
}
.acc__ico svg { width: 22px; height: 22px; fill: var(--yellow); }
.acc h4 { font-size: 14px; margin: 6px 0 4px; font-weight: 700; }
.acc__price { color: var(--yellow); font-family: var(--ff-black); font-size: 16px; }

/* -------- TESTIMONIOS -------- */
.testimonios { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quotes {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute; top: -14px; right: 16px;
  font-family: Georgia, serif;
  font-size: 80px; line-height: 1;
  color: var(--yellow); opacity: .35;
}
.quote__text { font-size: 16px; margin: 0 0 14px; }
.quote__name { font-family: var(--ff-black); font-size: 15px; margin: 0; }
.quote__role { color: var(--muted); font-size: 13px; margin: 2px 0 0; }

/* -------- SOLICITAR -------- */
.solicitar {
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(122,59,158,.20), transparent 60%),
    var(--bg);
}
.form-wrap {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  background: linear-gradient(160deg, #141414, #0b0b0b);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
@media (min-width: 900px) {
  .form-wrap { grid-template-columns: 1fr 1fr; padding: 40px; gap: 40px; }
}
.form-copy .section__title { text-align: left; margin: 10px 0 12px; }
.form-copy .eyebrow { justify-content: flex-start; }
.form-copy p { color: var(--muted); }
.form-copy__list { display: grid; gap: 8px; margin-top: 16px; }
.form-copy__list li { color: var(--text); font-weight: 600; font-size: 15px; }
.form {
  display: grid; gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.form .field:nth-child(1),
.form .field:nth-child(3),
.form .field:nth-child(4),
.form .field:nth-child(5),
.form .btn,
.form__note { grid-column: 1 / -1; }
@media (min-width: 600px) {
  .form .field:nth-child(3),
  .form .field:nth-child(4) { grid-column: auto; }
}
.form__note { color: var(--muted); font-size: 12px; text-align: center; margin: 4px 0 0; }

/* -------- FAQ (fondo BLANCO) -------- */
.faq {
  background: var(--paper) !important;
  color: var(--ink);
}
.faq .section__title { color: var(--ink); }
.faq .section__sub   { color: var(--ink-muted); }
.faq .eyebrow        { color: var(--purple); }
.faq .eyebrow .dot   { background: var(--purple); box-shadow: 0 0 0 4px rgba(91,44,135,.15); }
.faq .hl             { color: var(--purple); }

.faqs { display: grid; gap: 10px; }
.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line-ink);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
  color: var(--ink);
}
.faq-item[open] { border-color: var(--purple); }
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--purple);
  font-family: var(--ff-black);
  font-size: 24px;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--ink-muted);
  padding: 0 20px 20px;
  margin: 0;
}

/* -------- FOOTER -------- */
.footer {
  background: rgba(10, 2, 22, 0.75);
  border-top: 1px solid var(--line);
  padding: 56px 0 20px;
  backdrop-filter: blur(6px);
}
.footer__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand p { color: var(--muted); margin: 12px 0 0; max-width: 320px; }
.footer__col h4 {
  font-family: var(--ff-black);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--yellow);
}
.footer__col ul { display: grid; gap: 8px; }
.footer__col li, .footer__col a { color: var(--muted); font-size: 14px; }
.footer__col a:hover { color: var(--yellow); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
  flex-wrap: wrap; gap: 10px;
}

/* -------- FLOATING WHATSAPP -------- */
.fab {
  position: fixed;
  right: 16px;
  bottom: 84px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(37,211,102,.35);
  z-index: 40;
  transition: transform .2s;
  animation: fabIn .5s ease .3s both;
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 28px; height: 28px; fill: #fff; }
@keyframes fabIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (min-width: 900px) {
  .fab { bottom: 22px; right: 22px; width: 60px; height: 60px; }
  .fab svg { width: 30px; height: 30px; }
}

/* -------- BOTTOM BAR (móvil) -------- */
.bottombar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.bottombar__btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
}
.bottombar__btn svg { width: 20px; height: 20px; }
.bottombar__btn--primary { background: var(--yellow); color: #000; }
.bottombar__btn--primary svg { fill: #000; }
.bottombar__btn--wa { background: var(--wa); color: #fff; }
.bottombar__btn--wa svg { fill: #fff; }

@media (min-width: 900px) {
  .bottombar { display: none; }
}

/* -------- TRUST BAR (bajo hero) -------- */
.trustbar {
  background: var(--yellow);
  color: #000;
  padding: 22px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.trustbar__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .trustbar__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .trustbar__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.trust-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.trust-item__ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #000; color: var(--yellow);
  border-radius: 10px;
  display: grid; place-items: center;
}
.trust-item__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { margin: 0 0 2px; font-family: var(--ff-black); font-size: 15px; line-height: 1.15; }
.trust-item p  { margin: 0; font-size: 13px; font-weight: 600; line-height: 1.3; }

/* -------- MARCAS -------- */
.marcas { background: var(--bg); }
.brands {
  display: grid; gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 700px)  { .brands { grid-template-columns: repeat(6, 1fr); } }

.brand-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 12px;
  text-align: center;
  font-family: var(--ff-black);
  font-size: 17px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: border-color .2s, transform .2s, color .2s, background .2s;
  cursor: pointer;
}
.brand-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  color: var(--text);
  background: var(--bg-3);
}

/* -------- FILTROS CATÁLOGO -------- */
.filters {
  display: flex; flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin: 0 0 32px;
}
.filters__group {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.chip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  letter-spacing: .02em;
}
.chip:hover { border-color: var(--yellow); color: var(--text); }
.chip.is-active {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.cards__empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* -------- SUCURSALES -------- */
.sucursales {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stores {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.store {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 6px;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.store::before {
  content: "";
  position: absolute; right: -30px; top: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,198,41,.14), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.store:hover { border-color: var(--yellow); transform: translateY(-3px); }
.store__city {
  font-size: 11px;
  color: var(--yellow);
  font-family: var(--ff-black);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.store__name {
  font-family: var(--ff-black);
  font-size: 18px;
  margin: 4px 0 8px;
  line-height: 1.15;
}
.store__row {
  display: flex; gap: 8px; align-items: flex-start;
  color: var(--muted); font-size: 14px;
}
.store__row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: var(--yellow); }
.store__actions {
  display: flex; gap: 8px; margin-top: 14px;
}
.store__actions .btn { flex: 1; }

/* -------- LEMA (cursivo grande) -------- */
.lema {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}
@media (min-width: 900px) {
  .lema { padding: 120px 20px; }
}
.lema__text {
  /* Yellowtail (Google Fonts) — brush signature, alternativa gratuita
     con vibra parecida a DaVinci Signature. */
  font-family: 'Yellowtail', 'Brush Script MT', cursive;
  font-weight: 400;
  color: #FFFFFF;
  font-size: clamp(44px, 8.5vw, 124px);
  line-height: 1.15;
  margin: 0 auto;
  max-width: 1200px;
  letter-spacing: 0;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, .35),
    0 0 60px rgba(255, 255, 255, .10);
}
.lema__accent {
  display: inline-block;
  color: var(--yellow);               /* amarillo oficial MotoFlash #FFC629 */
  padding: 0 4px;
  font-size: 1.18em;
  white-space: nowrap;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, .45),
    0 0 40px rgba(255, 198, 41, .30),
    0 0 12px rgba(255, 198, 41, .20);
}
/* Comilla de cierre — mismo amarillo marca */
.lema__accent .lema__quote--close {
  color: var(--yellow);
  font-size: 1em;
  margin-left: 4px;
}
/* Comillas ligeramente más grandes y separadas para acentuar */
.lema__quote {
  display: inline-block;
  color: rgba(255, 255, 255, .85);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.15em;
}
.lema__quote--open  { margin-right: 6px; }
.lema__quote--close { margin-left: 4px; }

/* -------- Toque amarillo en TODAS las tarjetas --------
   Brillo cálido sutil en reposo + borde superior brillante amarillo al pasar el cursor. */

/* Tarjetas sobre fondo oscuro */
.step, .benefit, .aud, .brand-card, .store, .quote {
  box-shadow:
    inset 0 0 40px rgba(255, 198, 41, .045),
    0 6px 24px rgba(0, 0, 0, .18);
  transition:
    transform .2s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}
.step:hover,
.benefit:hover,
.aud:hover,
.brand-card:hover,
.store:hover,
.quote:hover {
  border-top-color: rgba(255, 198, 41, .95) !important;
  box-shadow:
    0 -10px 32px 2px rgba(255, 198, 41, .55),
    inset 0 0 40px rgba(255, 198, 41, .06);
}

/* Tarjetas sobre fondo blanco (FAQ + Requisitos) — glow más suave */
.faq-item, .requisitos .checks li {
  box-shadow: 0 3px 12px rgba(91, 44, 135, .08);
  transition:
    transform .2s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}
.faq-item:hover,
.requisitos .checks li:hover {
  border-top-color: var(--yellow) !important;
  box-shadow: 0 -8px 24px rgba(255, 198, 41, .45) !important;
  transform: translateY(-1px);
}

/* -------- Reveal on scroll (soft) -------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
