/* ═══════════════════════════════════════════
   ZUNIMOTOMEL – styles.css
   Paleta oficial Motomel Argentina
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --red:         #1e00e1;
  --red-dark:    #017dca;
  --red-light:   #2638ff;
  --black:       #111111;
  --gray-900:    #1A1A1A;
  --gray-800:    #222222;
  --gray-700:    #333333;
  --gray-500:    #666666;
  --gray-300:    #AAAAAA;
  --gray-100:    #F2F2F2;
  --gray-50:     #F8F8F8;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --border:      #E5E5E5;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --transition: 0.25s ease;
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(225,6,0,.3);
}
.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px rgba(225,6,0,.45);
  transform: translateY(-1px);
}

.btn--cta {
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(225,6,0,.3);
}
.btn--cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--card {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.btn--card:hover {
  background: var(--red);
  color: var(--white);
}

.btn--full { width: 100%; }
.btn--lg { padding: 16px 32px; font-size: 14px; }

/* ── Section helpers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 52px; padding: 0 20px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: rgba(255,255,255,.6); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.navbar__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__logo-icon { width: 40px; height: 28px; }
.navbar__logo-text { display: flex; align-items: baseline; gap: 0; }
.navbar__brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--white);
}
.navbar__brand-accent {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--red);
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.navbar__link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(4, 32, 248, 0.75);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar__link:hover {
  color: var(--white);
  background: rgba(4, 32, 248, 0.75);
}
.navbar__link.active { color: var(--red); }

.navbar__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 770px;
  overflow: hidden;
}

.hero__slider { width: 100%; height: 100%; position: relative; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero__slide--active { opacity: 1; z-index: 1; }

.hero__img {
  width: 100vw;       /* 100% del ancho del viewport */
  height: 100vh;      /* 100% del alto del viewport */
  object-fit: contain; /* Asegura que se vea completa sin estirarse */
  object-position: center;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, #2a0000 100%);
}
/* Placeholder visual cuando no existe la imagen */
.hero__img[src*="assets"] {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
  min-height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.4) 55%,
    rgba(0,0,0,.15) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 80px 120px;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.hero__arrow:hover { background: rgba(225,6,0,.7); border-color: var(--red); }
.hero__arrow svg { width: 20px; height: 20px; }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 56px;
  left: 80px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
  transition: background var(--transition), width var(--transition);
}
.hero__dot--active {
  background: var(--red);
  width: 48px;
}

/* Ticker */
.hero__ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  height: 36px;
  background: var(--red);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.hero__ticker-track span {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__ticker-sep { color: rgba(255,255,255,.5) !important; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats { background: var(--gray-900); padding: 40px 24px; }
.stats__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stats__item { text-align: center; }
.stats__num {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.stats__label {
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: .04em;
}
.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* ═══════════════════════════════════════════
   CATÁLOGO
═══════════════════════════════════════════ */
.catalogo { padding: 96px 0 80px; background: var(--gray-50); }
.catalogo .section-header { margin-bottom: 40px; }

/* Filtros */
.catalogo__filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 24px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  color: var(--gray-500);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn--active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Slider */
.catalogo__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  max-width: 1340px;
  margin: 0 auto;
}
.catalogo__track-container {
  flex: 1;
  overflow: hidden;
}
.catalogo__track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Arrows catálogo */
.catalogo__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  color: var(--gray-700);
}
.catalogo__arrow:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: var(--shadow-md);
}
.catalogo__arrow svg { width: 18px; height: 18px; }

/* Moto Card */
.moto-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.moto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.moto-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 99px;
}
.moto-card__badge--new { background: var(--gray-900); }
.moto-card__badge--eco { background: #1D9E75; }

.moto-card__img-wrap {
  width: 100%;
  height: 200px;
  background: linear-gradient(145deg, var(--gray-100), var(--gray-50));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moto-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  /* Placeholder cuando no hay imagen */
  background: linear-gradient(145deg, #f0f0f0, #e8e8e8);
}
.moto-card:hover .moto-card__img { transform: scale(1.05); }

.moto-card__body { padding: 20px; }
.moto-card__cat {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.moto-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.moto-card__cc { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; }
.moto-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.moto-card__from { font-size: 11px; color: var(--gray-500); }
.moto-card__price strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

/* ═══════════════════════════════════════════
   CRÉDITO
═══════════════════════════════════════════ */
.credito {
  background: var(--gray-900);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.credito::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,.12) 0%, transparent 70%);
  pointer-events: none;
}

.credito__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.credito__desc { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; }

.credito__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.credito__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.8);
}
.credito__features svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Simulator */
.simulator {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.simulator__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.simulator__field { margin-bottom: 24px; }
.simulator__field label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.simulator__slider-wrap { display: flex; align-items: center; gap: 16px; }
.simulator__range {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-100);
  outline: none;
}
.simulator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(225,6,0,.4);
}
.simulator__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: none;
}
.simulator__output {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  min-width: 90px;
  text-align: right;
}

/* Cuotas grid */
.simulator__cuotas-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.cuota-btn {
  flex: 1;
  min-width: 52px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--white);
  transition: all var(--transition);
}
.cuota-btn:hover { border-color: var(--red); color: var(--red); }
.cuota-btn--active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Resultado */
.simulator__result {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.simulator__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.simulator__result-row:last-child { border-bottom: none; }
.simulator__result-row strong { font-weight: 700; color: var(--black); }
.simulator__result-row--main { margin-top: 8px; padding-top: 12px; border-top: 2px solid var(--border); }
.simulator__result-row--main span { font-size: 15px; font-weight: 600; color: var(--black); }
.simulator__result-row--main strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
}
.simulator__disclaimer { font-size: 11px; color: var(--gray-300); text-align: center; margin-top: 12px; }

/* ═══════════════════════════════════════════
   SUCURSALES
═══════════════════════════════════════════ */
.sucursales { padding: 96px 24px; background: var(--white); }
.sucursales__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.sucursal-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.sucursal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sucursal-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}
.sucursal-card__icon svg { width: 44px; height: 44px; }
.sucursal-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.sucursal-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.sucursal-card span { font-size: 12px; color: var(--gray-300); display: block; margin-bottom: 16px; }
.sucursal-card__link {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.sucursal-card__link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   CONTACTO
═══════════════════════════════════════════ */
.contacto { padding: 96px 24px; background: var(--gray-50); }
.contacto__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contacto__desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contacto__info { display: flex; flex-direction: column; gap: 16px; }
.contacto__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contacto__info-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Form */
.contacto__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form__row .form__field { margin-bottom: 0; }
.form__label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--gray-300); }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,6,0,.1);
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.form__checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.form__check a { color: var(--red); }

.form__success {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #1D9E75;
  margin-top: 16px;
  padding: 14px 16px;
  background: #E1F5EE;
  border-radius: var(--radius-md);
}
.form__success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form__success.visible { display: flex; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--black); padding: 64px 24px 0; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer__links h5, .footer__social h5 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--red); }

.footer__social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--red); color: var(--red); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .credito__inner { grid-template-columns: 1fr; gap: 48px; }
  .credito__text { order: 1; }
  .credito__simulator { order: 2; }
  .contacto__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .navbar__nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-top: 1px solid rgb(255, 255, 255);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 999;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar__link { width: 100%; font-size: 15px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }

  .navbar__hamburger { display: flex; }
  .btn--cta { display: none; }

  .hero__content { padding: calc(var(--nav-h) + 32px) 24px 100px; }
  .hero__title { font-size: clamp(36px, 9vw, 56px); }
  .hero__dots { left: 24px; bottom: 48px; }
  .hero__arrow { display: none; }

  .stats__divider { display: none; }
  .stats__inner { justify-content: center; gap: 32px; }

  .moto-card { width: 240px; }

  .simulator { padding: 28px 20px; }

  .form__row--2 { grid-template-columns: 1fr; }
  .contacto__form-wrap { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .catalogo__arrow { display: none; }
  .catalogo__wrapper { padding: 0 16px; }
  .catalogo__track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .moto-card { scroll-snap-align: start; }
}
