/* =====================================================================
   RUTA PRO · SISTEMA DE DISEÑO
   Paleta de marca: Negro · Rojo · Blanco · Gris
   ===================================================================== */

:root {
  --red: #e10600;
  --red-bright: #ff2a2a;
  --red-soft: rgba(225, 6, 0, 0.12);
  --black: #08080a;
  --bg: #0c0c0f;
  --bg-2: #121217;
  --surface: #16161c;
  --surface-2: #1c1c24;
  --line: #26262e;
  --white: #ffffff;
  --gray-100: #e9e9ee;
  --gray-300: #b8b9c2;
  --gray-400: #8a8b95;
  --gray-500: #65666f;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 16px 40px -12px rgba(225, 6, 0, 0.45);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }

/* ---------- Encabezado de sección ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--red-bright);
  background: var(--red-soft); border: 1px solid rgba(225, 6, 0, 0.4);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
  box-shadow: 0 0 22px -6px rgba(225, 6, 0, .45);
}
.eyebrow-plain {
  background: none; border: none; box-shadow: none; padding: 0 0 2px;
  border-radius: 0;
}
.section-title { font-size: clamp(28px, 4.5vw, 46px); color: var(--white); }
.section-title .accent { color: var(--red-bright); text-shadow: 0 0 24px rgba(255,42,42,.35); }
/* Resplandor sutil detrás de cada encabezado de sección, para que no se vea plano */
.section-head { position: relative; }
.section-head::before {
  content: ""; position: absolute; top: -40px; left: 50%; translate: -50% 0; width: 340px; height: 200px;
  background: radial-gradient(closest-side, rgba(225,6,0,.10), transparent 75%);
  pointer-events: none; z-index: -1;
}
.section-head:not(.center)::before { left: 0; translate: 0 0; }
.section-sub { color: var(--gray-400); font-size: 17px; max-width: 620px; margin-top: 16px; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-red { background: linear-gradient(135deg, var(--red-bright), var(--red)); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(225, 6, 0, 0.6); }
.btn-ghost { background: rgba(255, 255, 255, 0.04); border-color: var(--line); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #06280f; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(37, 211, 102, 0.6); }
.btn svg { width: 18px; height: 18px; }

/* =====================================================================
   NAVBAR
   ===================================================================== */
/* ---------- Barra superior informativa ---------- */
.topbar-info {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--black); border-bottom: 1px solid var(--line);
}
.topbar-info-inner { display: flex; align-items: center; gap: 26px; height: 36px; }
.ti-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray-400); white-space: nowrap; transition: color .2s; }
.ti-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ti-item:hover { color: var(--white); }
.ti-phone { color: var(--red-bright); font-weight: 700; margin-left: auto; }

.nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(12px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s, top .2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 48px; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-300); transition: color 0.2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-ghost { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.18); }
.nav-cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero-intro { position: relative; padding-top: 90px; background: var(--bg); overflow: hidden; }
.hero-intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.hero-intro-copy-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 40px clamp(20px, 3vw, 40px) 40px clamp(20px, 3vw, 40px);
}
.hero-intro-copy { max-width: 460px; width: 100%; }
.hero-intro-brand { margin-bottom: 18px; }
.hero-intro-logo { display: block; max-width: 440px; width: 100%; height: auto; margin: 0 auto; filter: drop-shadow(0 0 30px rgba(225,6,0,.25)); }
.hero-intro-tag {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 10px;
  color: var(--gray-400); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.hero-intro-tag .ln { flex: 0 0 32px; height: 1px; background: var(--line); }
.hero-intro h1 { font-size: clamp(28px, 3vw, 36px); color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.hero-intro h1 .accent {
  background: linear-gradient(120deg, var(--red-bright), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-intro-loc {
  display: flex; align-items: center; gap: 8px; color: var(--gray-300); font-weight: 600;
  font-size: 13px; margin-bottom: 12px;
}
.hero-intro-loc svg { width: 16px; height: 16px; color: var(--red-bright); flex-shrink: 0; }
.hero-intro .lead { font-size: 13.5px; color: var(--gray-300); margin-bottom: 18px; }
.hero-intro-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-intro-media {
  position: relative; display: block; overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-intro-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.hero-intro-media:hover img { transform: scale(1.03); }

/* Fondo de moto neón, ahora en la transición hacia "Quiénes somos" */
.diff-section { position: relative; overflow: hidden; }
.diff-bg-photo {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 78% 25%; opacity: .3;
}
.diff-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(12,12,15,.55) 16%, rgba(12,12,15,.88) 45%, var(--bg) 78%),
    radial-gradient(650px 340px at 82% 6%, rgba(225,6,0,.18), transparent 70%);
}
.diff-section .container { position: relative; z-index: 1; }


/* ---------- Marquesina de marcas ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2); padding: 22px 0; overflow: hidden; position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-logo { display: flex; align-items: center; flex-shrink: 0; }
.marquee-logo img {
  height: 34px; width: auto; max-width: 130px; object-fit: contain;
  opacity: .65; transition: opacity 0.3s;
}
.marquee-logo:hover img { opacity: 1; }
/* El track se repite 4 veces en el JS; solo recorremos 1/4 (una copia) para que el loop sea perfecto y sin espacios */
@keyframes scroll { to { transform: translateX(-25%); } }

/* =====================================================================
   CATÁLOGO
   ===================================================================== */

/* ---------- Filtros avanzados (marca, precio, cc, buscador) ---------- */
.filters-adv {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 22px;
}
.fadv-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.fadv-select {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--white);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  padding: 11px 14px; border-radius: 10px; cursor: pointer; transition: border-color .2s;
  min-width: 150px; flex: 1 1 150px;
}
.fadv-select:hover, .fadv-select:focus { border-color: rgba(225, 6, 0, .5); outline: none; }
.fadv-search {
  display: flex; align-items: center; gap: 8px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 14px; flex: 2 1 220px; transition: border-color .2s;
}
.fadv-search:focus-within { border-color: rgba(225, 6, 0, .5); }
.fadv-search svg { width: 16px; height: 16px; color: var(--gray-500); flex-shrink: 0; }
.fadv-search input { background: none; border: none; color: var(--white); font-size: 14px; outline: none; width: 100%; }
.fadv-row #f-limpiar { flex: 0 0 auto; white-space: nowrap; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 100px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: var(--gray-300);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--gray-500); color: var(--white); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--shadow-red); }

.grid-motos { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 26px; }

.moto-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column; position: relative;
}
.moto-card:hover { transform: translateY(-8px); border-color: rgba(225, 6, 0, 0.5); box-shadow: var(--shadow); }
.moto-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, #1b1b22, #101015); }
.moto-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.moto-card:hover .moto-media img { transform: scale(1.07); }
.moto-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: 0.5px;
  padding: 6px 12px; border-radius: 100px; background: var(--red); color: #fff;
  text-transform: uppercase; box-shadow: var(--shadow-red);
}
.moto-badge.ejemplo { background: #3a3a44; color: var(--gray-100); box-shadow: none; border: 1px solid var(--line); }
.moto-badge.vendida { background: #111; color: #ff7a7a; box-shadow: none; border: 1px solid rgba(225,6,0,.5); }
.moto-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(8, 8, 10, 0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12); display: grid; place-items: center; color: #fff;
  cursor: pointer; transition: 0.25s;
}
.moto-fav:hover { background: var(--red); border-color: var(--red); }
.moto-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.moto-brand { font-size: 12.5px; font-weight: 600; color: var(--red); letter-spacing: 0.5px; text-transform: uppercase; }
.moto-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--white); margin: 4px 0 14px; }
.moto-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 8px; margin-bottom: 18px; }
.moto-spec { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-300); }
.moto-spec svg { width: 16px; height: 16px; color: var(--gray-500); flex-shrink: 0; }
.moto-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.moto-foot .moto-price { flex-shrink: 0; }
.moto-price .v {
  font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--red-bright);
  text-shadow: 0 0 20px rgba(255, 42, 42, .35);
}
.moto-price .c { font-size: 12px; color: var(--gray-500); }
.moto-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-head); font-weight: 700;
  font-size: 13.5px; padding: 10px 16px; border-radius: 100px; background: #25d366; color: #06280f;
  transition: 0.25s; white-space: nowrap; min-width: 0; text-align: center;
}
.moto-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.6); }
.moto-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
/* Texto más largo (motos vendidas: "Preguntar por similares") — botón compacto para que no se salga de la tarjeta */
.moto-cta.sm { font-size: 11.5px; padding: 8px 12px; gap: 5px; white-space: normal; line-height: 1.2; }
.moto-cta.sm svg { width: 13px; height: 13px; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--gray-400); }
.ver-mas-wrap { display: flex; justify-content: center; margin-top: 30px; }

/* =====================================================================
   QUIÉNES SOMOS
   ===================================================================== */
.diff-section { padding: 8px 0 70px; background: var(--bg); }
.diff-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 26px; align-items: stretch; }
.diff-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s;
}
.diff-card:hover { transform: translateY(-6px); border-color: rgba(225, 6, 0, .4); }
.diff-ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-soft); border: 1px solid rgba(225, 6, 0, 0.3); color: var(--red-bright);
  margin-bottom: 18px;
}
.diff-ic svg { width: 24px; height: 24px; }
.diff-card h3 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
.diff-card p { color: var(--gray-400); font-size: 14px; }

.diff-stats {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.diff-stat { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.diff-stat:last-child { border-bottom: none; padding-bottom: 0; }
.diff-stat .di-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--red-soft); border: 1px solid rgba(225, 6, 0, .35); color: var(--red-bright);
}
.diff-stat .di-ic svg { width: 21px; height: 21px; }
.diff-stat .n { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--white); line-height: 1.1; }
.diff-stat .l { font-size: 12.5px; color: var(--gray-400); margin-top: 2px; }

/* =====================================================================
   PROCESO (cómo funciona)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num {
  font-family: var(--font-head); font-weight: 800; font-size: 40px;
  background: linear-gradient(120deg, var(--red-bright), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 14px;
}
.step h4 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.step p { color: var(--gray-400); font-size: 14px; }

/* =====================================================================
   MARCAS (grid de logos)
   ===================================================================== */
/* Panel de marcas (imagen del diseñador) */
.brands-panel {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #000; box-shadow: var(--shadow); max-width: 1000px; margin: 0 auto;
}
.brands-panel img { width: 100%; display: block; }

/* ---------- Ubicación / mapa ---------- */
.ubic-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 26px; align-items: stretch; }
.ubic-mapa { position: relative; display: block; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.ubic-mapa iframe { width: 100%; height: 100%; min-height: 380px; display: block; }
.ubic-mapa-tag { position: absolute; bottom: 16px; right: 16px; z-index: 2; background: rgba(8,8,10,.75); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); color: #fff; padding: 9px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: background .2s; }
.ubic-mapa-tag:hover { background: rgba(225,6,0,.85); }
.ubic-info { display: flex; flex-direction: column; gap: 18px; background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.ubic-item { display: flex; gap: 14px; align-items: flex-start; }
.ubic-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--red-soft);
  border: 1px solid rgba(225,6,0,.3); display: grid; place-items: center; color: var(--red-bright); }
.ubic-ic svg { width: 20px; height: 20px; }
.ubic-k { font-size: 12.5px; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; }
.ubic-v { color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 15px; margin-top: 3px; line-height: 1.4; }
.ubic-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.ubic-actions .btn { width: 100%; }
@media (max-width: 860px) { .ubic-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   VENDEMOS TU MOTO / RETOMA
   ===================================================================== */
.retoma-section { background: var(--bg-2); }

.retoma-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.retoma-benefit {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .3s var(--ease), border-color .3s;
}
.retoma-benefit:hover { transform: translateY(-6px); border-color: rgba(225, 6, 0, .4); }
.retoma-benefit-ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--red-soft); border: 1px solid rgba(225, 6, 0, 0.3); font-size: 22px;
  margin-bottom: 16px;
}
.retoma-benefit h3 { font-size: 16.5px; color: var(--white); margin-bottom: 8px; }
.retoma-benefit p { color: var(--gray-400); font-size: 13.5px; line-height: 1.5; }

.retoma-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.retoma-copy-title { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.retoma-copy-text { color: var(--gray-300); font-size: 14.5px; line-height: 1.6; }

/* ---------- Variante "Retoma": mismo sistema visual, look distinto (outline en vez de relleno) ---------- */
.retoma-section-alt { background: var(--bg); }
.eyebrow-alt { background: transparent; box-shadow: none; border-color: rgba(225, 6, 0, .55); }
.retoma-benefit-ic-alt { background: transparent; border: 2px solid rgba(225, 6, 0, .45); }

.retoma-form-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow);
}
.retoma-form-card h3 { font-size: 21px; color: var(--white); margin-bottom: 6px; }
.retoma-form-sub { color: var(--gray-400); font-size: 14px; margin-bottom: 22px; }
.retoma-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--gray-400); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--white);
  font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px; border-radius: 10px;
  outline: none; transition: border-color .2s; resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(225, 6, 0, .55); }
.retoma-submit { margin-top: 4px; width: 100%; }
.retoma-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-msg { font-size: 13.5px; min-height: 18px; }
.form-msg.ok { color: #4ade80; }
.form-msg.err { color: #ff7a7a; }

/* ---------- Banners promocionales de retoma ---------- */
.retoma-banner {
  display: flex; align-items: center; gap: 18px; margin-top: 28px;
  background: linear-gradient(90deg, var(--red-soft), transparent);
  border: 1px solid rgba(225, 6, 0, .35); border-radius: var(--radius);
  padding: 18px 24px; text-decoration: none; transition: border-color .25s, transform .25s;
}
.retoma-banner:hover { border-color: rgba(225, 6, 0, .7); transform: translateY(-2px); }
.retoma-banner-ic { font-size: 26px; flex-shrink: 0; }
.retoma-banner-txt { flex: 1; color: var(--gray-300); font-size: 14.5px; line-height: 1.4; }
.retoma-banner-txt strong { color: var(--white); }
.retoma-banner-cta {
  flex-shrink: 0; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--red-bright);
  white-space: nowrap;
}

.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.brand-tile {
  aspect-ratio: 16 / 9; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); display: grid; place-items: center; padding: 18px;
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.brand-tile:hover { border-color: rgba(225, 6, 0, 0.5); background: var(--surface-2); transform: translateY(-4px); }
.brand-tile img { max-height: 48px; max-width: 80%; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: 0.8; transition: 0.3s; }
.brand-tile:hover img { filter: none; opacity: 1; }
.brand-tile .brand-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--gray-300); text-align: center; transition: color 0.3s; }
.brand-tile:hover .brand-name { color: var(--white); }

/* =====================================================================
   TESTIMONIOS
   ===================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px;
}
.testi .stars { color: #ffb800; font-size: 16px; letter-spacing: 2px; }
.testi p { color: var(--gray-100); font-size: 15.5px; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #7a0400); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; }
.testi .who .nm { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 15px; }
.testi .who .ct { font-size: 13px; color: var(--gray-400); }

/* =====================================================================
   CTA WHATSAPP
   ===================================================================== */
.cta-wa { position: relative; overflow: hidden; }
.cta-wa-inner {
  background: linear-gradient(135deg, #1a0303, #0e0e12);
  border: 1px solid rgba(225, 6, 0, 0.3); border-radius: var(--radius-lg);
  padding: 60px 50px; text-align: center; position: relative; overflow: hidden;
}
.cta-wa-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% -10%, rgba(225, 6, 0, 0.28), transparent 70%);
}
.cta-wa-inner > * { position: relative; z-index: 1; }
.cta-wa h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-wa p { color: var(--gray-300); font-size: 18px; max-width: 560px; margin: 0 auto 32px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 50px; }
.footer-logo img { height: 60px; margin-bottom: 18px; border-radius: 8px; }
.footer-about { color: var(--gray-400); font-size: 14.5px; max-width: 320px; }
.footer-col h5 { font-family: var(--font-head); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--gray-400); font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red-bright); }
.footer-contact li { display: flex; gap: 10px; color: var(--gray-300); font-size: 14.5px; margin-bottom: 12px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gray-300); transition: 0.25s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--gray-500); font-size: 13.5px; }
.footer-bottom a { color: var(--gray-400); }

/* ---------- Tag pequeño reutilizable ---------- */
.tag {
  font-family: var(--font-head); font-weight: 600; font-size: 11.5px;
  padding: 5px 11px; border-radius: 100px; background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line); color: var(--gray-300);
}

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease); animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 12px 30px -8px rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.7); }
}

/* ---------- Animaciones de aparición ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero-intro-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-intro-media { clip-path: none; height: 320px; }
  .hero-intro-copy-wrap { padding: 40px clamp(20px, 5vw, 48px) 28px; }
  .hero-intro-logo { max-width: 360px; margin: 0 auto; }
  .diff-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .retoma-grid { grid-template-columns: 1fr; gap: 30px; }
  .retoma-benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .retoma-banner { flex-wrap: wrap; }
  .retoma-banner-cta { width: 100%; }
  .retoma-benefits { grid-template-columns: 1fr; }
}

/* Menú hamburguesa: aparece antes para que el logo siempre quepa */
@media (max-width: 900px) {
  /* La barra superior se oculta en tablet/móvil; el navbar vuelve a top:0 */
  .topbar-info { display: none; }
  .nav { top: 0; }
  .hero-intro { padding-top: 90px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: rgba(10, 10, 12, 0.97); backdrop-filter: blur(16px); padding: 24px;
    gap: 20px; border-bottom: 1px solid var(--line);
  }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 62px 0; }
  .diff-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-wa-inner { padding: 44px 24px; }
}

/* ---------- Ajustes finos para teléfono ---------- */
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .nav-inner { height: 66px; }
  .nav-logo img { height: 40px; }
  /* Botón "Escríbenos" compacto para que no domine el navbar */
  .nav-cta { gap: 8px; }
  .nav-cta .btn-red { padding: 9px 15px; font-size: 13px; }
  .nav-toggle span { width: 24px; }

  .hero-intro { padding-top: 80px; }
  .hero-intro-copy-wrap { padding: 32px 20px 16px; }
  .hero-intro-media { height: 220px; }
  .hero-intro-logo { max-width: 230px; }
  .diff-bg-photo { opacity: .2; }
  .hero-intro h1 { font-size: 22px; margin-bottom: 10px; }
  .hero-intro .lead { font-size: 13.5px; margin-bottom: 18px; }
  .hero-intro-actions { gap: 11px; }
  .hero-intro-actions .btn { width: 100%; }

  .section-title { font-size: clamp(26px, 7.4vw, 34px); }
  .section-sub { font-size: 15.5px; }
  .section-head { margin-bottom: 34px; }

  .grid-motos { grid-template-columns: 1fr; gap: 18px; }
  .filters { gap: 8px; }
  .chip { padding: 9px 16px; font-size: 13.5px; }
  .filters-adv { padding: 14px 16px; }
  .fadv-row { flex-direction: column; align-items: stretch; }
  .fadv-select, .fadv-search, .fadv-row #f-limpiar { flex: 1 1 auto; width: 100%; min-width: 0; }

  .diff-stats { padding: 24px 22px; }
  .steps { grid-template-columns: 1fr; }
  .ubic-info { padding: 22px; }
  .ubic-actions { flex-direction: column; }

  .cta-wa-inner h2 { font-size: 26px; }
  .cta-wa-inner p { font-size: 16px; }

  .footer { padding: 54px 0 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
  .brands-panel { border-radius: var(--radius); }
}
