/* ============================================================
   REYKO MOTORS — SISTEMA DE DISEÑO PREMIUM DARK LUXURY
   Enfoque: Máximo confort visual, contraste equilibrado,
   micro-interacciones fluidas, radar loader y estética de alta gama.
   ============================================================ */

:root {
  /* Paleta Base (Carbono profundo con descanso ocular) */
  --bg-deep: #060907;
  --bg-body: #090d0b;
  --surface-0: #0d1210;
  --surface-1: #121815;
  --surface-2: #17201b;
  --surface-3: #1e2a24;
  --surface-glass: rgba(13, 18, 16, 0.78);
  --surface-card: rgba(18, 24, 21, 0.92);

  /* Acentos de Marca (Oro Racing & Respaldo) */
  --gold: #f5b700;
  --gold-light: #ffe066;
  --gold-dark: #d99f00;
  --gold-glow: rgba(245, 183, 0, 0.2);
  --gold-glow-strong: rgba(245, 183, 0, 0.45);
  
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.16);

  /* Tipografía y Jerarquía */
  --text-pure: #ffffff;
  --text-bright: #f8fafc;
  --text-main: #e2e8f0;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  /* Bordes y Reflejos */
  --line-subtle: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.11);
  --line-highlight: rgba(255, 255, 255, 0.2);
  --line-gold: rgba(245, 183, 0, 0.38);

  /* Sombras y Elevación */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 14px 36px -8px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 26px 70px -14px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 16px 40px -10px rgba(245, 183, 0, 0.28);

  /* Tipografías */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Geometría y Curvas */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transiciones */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 0.18s var(--ease);
  --trans-base: 0.28s var(--ease);
  --trans-slow: 0.6s var(--ease);
}

/* Reseteo y Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-deep);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.62;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button, input, select, textarea {
  font: inherit;
}

/* ============================================================
   LOADER & PRELOADER (RADAR PULSE PIN)
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  animation: preloader-pulse 1.8s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; text-shadow: 0 0 12px var(--gold); }
}

.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 44.8px;
  height: 44.8px;
  position: relative;
  transform: rotate(45deg);
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 0 50%;
  background: #0000;
  background-image: radial-gradient(circle 11.2px at 50% 50%, #0000 94%, var(--gold));
}

.loader:after {
  animation: pulse-ytk0dhmd 1s infinite;
  transform: perspective(336px) translateZ(0px);
}

@keyframes pulse-ytk0dhmd {
  to {
    transform: perspective(336px) translateZ(168px);
    opacity: 0;
  }
}

/* Luces ambientales */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.45;
}

.ambient-glow--1 {
  width: 650px;
  height: 650px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.14) 0%, rgba(16, 185, 129, 0.04) 55%, transparent 70%);
}

.ambient-glow--2 {
  width: 800px;
  height: 800px;
  bottom: 15%;
  left: -200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(245, 183, 0, 0.05) 50%, transparent 70%);
}

/* Contenedor */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TIPOGRAFÍA Y DECORADORES
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 15%, var(--gold-light) 65%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.h-xl {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-pure);
  margin-bottom: 14px;
}

.h-l {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.h-m {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-bright);
}

.section__subtext {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 64ch;
  line-height: 1.68;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.section__header .eyebrow {
  justify-content: center;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  transition: transform var(--trans-fast), background-color var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast), color var(--trans-fast);
}

.btn:active {
  transform: scale(0.97);
}

.btn--yellow {
  background: var(--gold);
  color: #000000;
  box-shadow: 0 6px 20px rgba(245, 183, 0, 0.3);
}
.btn--yellow:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(245, 183, 0, 0.45);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--text-pure);
  color: #080c0a;
}
.btn--light:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-bright);
  border-color: var(--line-highlight);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--text-pure);
  color: var(--text-pure);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--surface-1);
  color: var(--text-bright);
  border-color: var(--line);
}
.btn--dark:hover {
  background: var(--surface-2);
  border-color: var(--line-highlight);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 11px;
}

.btn--lg {
  padding: 16px 30px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

/* ============================================================
   NAVEGACIÓN PRINCIPAL
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 12, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background var(--trans-base), border-color var(--trans-base);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: var(--text-pure);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}
.nav__logo svg {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--trans-fast);
}

.nav-link:hover {
  color: var(--text-pure);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--trans-fast);
}
.nav-link:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-bright);
  border-radius: 2px;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

/* Menú móvil */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px 28px;
  background: var(--surface-0);
  border-bottom: 1px solid var(--line);
}
.nav.is-open .nav__mobile {
  display: flex;
}
.nav__mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-subtle);
}
.nav__mobile-link:hover {
  color: var(--gold);
}
.nav__mobile-cta {
  margin-top: 14px;
}

/* ============================================================
   1 · HERO CINEMATOGRÁFICO 360° (MÁXIMA LEGIBILIDAD)
   ============================================================ */
.cine {
  position: relative;
  height: 270vh;
  background: var(--bg-deep);
}

.cine__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 60% 40%, #1c2620 0%, #0c120f 50%, #060907 100%);
}

.cine__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cine__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) brightness(0.92);
}

/* Scrim optimizado para garantizar 100% de contraste de texto */
.cine__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 950px 750px at 18% 60%, rgba(6, 9, 7, 0.97) 0%, rgba(6, 9, 7, 0.88) 45%, rgba(6, 9, 7, 0.3) 80%, transparent 100%),
    linear-gradient(90deg, rgba(6, 9, 7, 0.98) 0%, rgba(6, 9, 7, 0.90) 36%, rgba(6, 9, 7, 0.42) 64%, transparent 100%),
    linear-gradient(0deg, rgba(6, 9, 7, 0.96) 0%, rgba(6, 9, 7, 0.5) 32%, transparent 70%);
}

.cine__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8vh;
  z-index: 2;
  max-width: 820px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245, 183, 0, 0.14);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-ring 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--gold); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.cine__title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Subtítulo del Hero: Ampliado, blanco nítido y con máximo contraste */
.cine__sub {
  color: #ffffff !important;
  font-size: clamp(1.22rem, 1.85vw, 1.45rem) !important;
  font-weight: 450 !important;
  line-height: 1.68 !important;
  margin-bottom: 30px !important;
  max-width: 62ch !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.98);
  opacity: 0.98;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  background: rgba(14, 20, 17, 0.7);
  border: 1px solid var(--line-highlight);
  backdrop-filter: blur(14px);
  color: var(--text-pure);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all var(--trans-fast);
}
.promo-badge:hover {
  background: rgba(245, 183, 0, 0.16);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.promo-badge__ic {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 11px;
}

/* Métricas en el Hero */
.hero__stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__stat .n {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}
.hero__stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Indicador de scroll */
.cine__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-bright);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.3s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.cine__scroll-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-highlight);
  background: rgba(14, 20, 17, 0.8);
  backdrop-filter: blur(8px);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.cine__intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--bg-deep);
  pointer-events: none;
  animation: cine-intro-fade 1.1s var(--ease) 0.2s forwards;
}
@keyframes cine-intro-fade {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

/* ============================================================
   CINTA DE BENEFICIOS (TICKER)
   ============================================================ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-0);
  padding: 14px 0;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-slide 38s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
.ticker__item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.ticker__item::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
}
@keyframes ticker-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

/* ============================================================
   2 · BENTO GRID ("POR QUÉ REYKO")
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  grid-column: span 6;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
  backdrop-filter: blur(16px);
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-highlight);
  box-shadow: var(--shadow-md);
}

.bento-card--accent {
  border-color: rgba(245, 183, 0, 0.28);
  background: linear-gradient(145deg, rgba(245, 183, 0, 0.08) 0%, var(--surface-card) 60%);
}
.bento-card--accent:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.bento-card--highlight {
  border-color: rgba(16, 185, 129, 0.25);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.07) 0%, var(--surface-card) 60%);
}
.bento-card--highlight:hover {
  border-color: var(--emerald);
}

.bento-card__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.bento-card__bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.38) contrast(1.12);
  transform: scale(1.06);
  opacity: 0.72;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease), transform 0.6s var(--ease);
}

.bento-card:hover .bento-card__bg-video video {
  opacity: 0.92;
  filter: blur(0px) brightness(0.5) contrast(1.18);
  transform: scale(1.02);
}

.bento-card__video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(6, 9, 7, 0.46) 0%, rgba(6, 9, 7, 0.84) 85%);
  pointer-events: none;
}

.bento-card__icon,
.bento-card__body {
  position: relative;
  z-index: 1;
}

.bento-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--line-highlight);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform var(--trans-fast);
}
.bento-card:hover .bento-card__icon {
  transform: scale(1.08);
}

.bento-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.bento-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.bento-card__text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* ============================================================
   3 · CATÁLOGO Y FILTROS
   ============================================================ */
.catalog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.catalog-top__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 44ch;
}

/* Barra de Filtros */
.filter-bar {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(16px);
}

.condition-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line-subtle);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.cond-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--trans-fast);
}
.cond-btn:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.04);
}
.cond-btn.is-active {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 14px rgba(245, 183, 0, 0.25);
}

.chips-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface-1);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--trans-fast);
}
.chip:hover {
  color: var(--text-pure);
  border-color: var(--line-highlight);
}
.chip.is-active {
  background: rgba(245, 183, 0, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.filter-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}
.input--search {
  width: 100%;
  padding-left: 40px !important;
}

.input, .select {
  background: var(--surface-1);
  border: 1px solid var(--line);
  color: var(--text-pure);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 13.5px;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.input:focus, .select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.15);
}
.input::placeholder {
  color: var(--text-dim);
}

.catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.catalog-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.catalog-demo-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/* Cuadrícula de Tarjetas */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--surface-1);
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img {
  transform: scale(1.06);
}

.card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.badge--new {
  background: var(--gold);
  color: #000;
}
.badge--used {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-bright);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.badge--soft {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
  margin-bottom: 12px;
}

.card__meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card__meta span:not(:last-child)::after {
  content: "•";
  color: var(--line-highlight);
  margin-left: 8px;
}

.card__swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.sw {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card__foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.price {
  display: flex;
  flex-direction: column;
}
.price__label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.price__value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.price__from {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface-card);
  border: 1px dashed var(--line-highlight);
  border-radius: var(--radius-lg);
}
.empty-state__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.empty-state h3 {
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 6px;
}
.empty-state p {
  color: var(--text-muted);
}

/* ============================================================
   4 · SIMULADOR DE FINANCIAMIENTO DEDICADO
   ============================================================ */
.section--finance {
  background: radial-gradient(circle at 80% 50%, rgba(245, 183, 0, 0.08) 0%, transparent 60%);
}

.finance-box {
  background: var(--surface-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(20px);
}

.finance-box__intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 14px 0 24px;
}

.finance-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-bright);
}
.f-feat__ic {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald);
  font-weight: 700;
  font-size: 11px;
}

.finance-box__calc {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-row label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
  display: block;
}

.calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.calc-curr {
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 700;
}
.calc-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line-highlight);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 14px 10px 32px;
  outline: none;
}
.calc-input:focus {
  border-color: var(--gold);
}

.calc-label-split {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-val-preview {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.range--full {
  width: 100%;
  accent-color: var(--gold);
}

.calc-terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.calc-term-btn {
  padding: 8px 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--trans-fast);
}
.calc-term-btn:hover {
  color: var(--text-pure);
  border-color: var(--line-highlight);
}
.calc-term-btn.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}

.calc-result-card {
  background: var(--surface-2);
  border: 1px solid var(--line-highlight);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.calc-result-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.calc-result-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin: 4px 0;
}
.calc-result-sub {
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================================
   5 · TESTIMONIOS (REVIEWS)
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(12px);
  transition: transform var(--trans-base), border-color var(--trans-base);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-highlight);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.review-card__quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-bright);
  font-style: italic;
}

.review-card__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle);
}

.avatar-ph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 12.5px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
}

.author-name {
  font-weight: 600;
  color: var(--text-pure);
  font-size: 0.95rem;
}
.author-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================================
   6 · CONTACTO (BENTO CONTACT CON RADAR PIN)
   ============================================================ */
.contact-bento {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 36px;
  align-items: stretch;
}

.contact-bento__info {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
}

.contact-bento__desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 14px 0 28px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
}
.contact-list li .ic {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list li a {
  color: var(--text-bright);
}
.contact-list li a:hover {
  color: var(--gold);
}

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

.contact-bento__card {
  display: flex;
}

.vip-box {
  background: linear-gradient(150deg, rgba(245, 183, 0, 0.1) 0%, var(--surface-1) 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-gold);
  width: 100%;
}

.vip-box__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.loader-location {
  transform: scale(0.74);
  flex-shrink: 0;
  margin-right: -4px;
}

.vip-badge {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.vip-box h3 {
  font-size: 1.35rem;
  color: var(--text-pure);
  line-height: 1.2;
}

.vip-box p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.vip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-bright);
  margin: 6px 0 10px;
}

/* ============================================================
   PIE DE PÁGINA (FONDO NEGRO + TWISTING RIBBON)
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: #000000;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer-ribbon-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.footer-ribbon-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-subtle);
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 14px;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38ch;
  margin-bottom: 20px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(245, 183, 0, 0.1);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
}
.social-chip:hover {
  background: var(--gold);
  color: #000;
}

.footer__social-row {
  display: flex;
  justify-content: center;
  padding: 8px 0 34px;
}

.footer__social-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.social-btn svg { fill: #fff; transition: fill 0.25s; }
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.social-btn--whatsapp { background: #25d366; }
.social-btn--whatsapp:hover { background: var(--surface-3); }
.social-btn--whatsapp:hover svg { fill: #25d366; }

.social-btn--instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-btn--instagram:hover { background: var(--surface-3); }
.social-btn--instagram:hover svg { fill: #d6249f; }

.social-btn--facebook { background: #1877f2; }
.social-btn--facebook:hover { background: var(--surface-3); }
.social-btn--facebook:hover svg { fill: #1877f2; }

.social-btn--tiktok { background: #000; }
.social-btn--tiktok:hover { background: var(--surface-3); }
.social-btn--tiktok:hover svg { fill: #25f4ee; }

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}
.footer__nav-col a {
  color: var(--text-muted);
}
.footer__nav-col a:hover {
  color: var(--gold);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.footer__col a {
  color: var(--text-muted);
}
.footer__col a:hover {
  color: var(--gold);
}

.foot-link--wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-bright) !important;
}
.foot-link--wa .ic {
  color: var(--gold);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-subtle);
}
.footer__legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}
.footer__legal a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 24px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   PÁGINAS LEGALES (privacidad / términos / cookies)
   Ancho de lectura acotado, tipografía cómoda para texto largo.
   ============================================================ */
.legal {
  padding: 160px 0 100px;
  min-height: 70vh;
}
.legal__wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 10px;
}
.legal__updated {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}
.legal__intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal__section {
  padding: 28px 0;
  border-top: 1px solid var(--line-subtle);
}
.legal__section:last-child {
  padding-bottom: 0;
}
.legal__section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 10px;
}
.legal__section p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.legal__section p + p {
  margin-top: 14px;
}
.legal__section a {
  color: var(--gold);
  text-underline-offset: 2px;
}

/* ============================================================
   MODAL DE DETALLE DE MOTOCICLETA
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open {
  display: flex;
}

.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 5, 0.86);
  backdrop-filter: blur(16px);
  animation: modal-fade-in 0.25s var(--ease);
}

.modal__card {
  position: relative;
  z-index: 1;
  background: var(--surface-0);
  border: 1px solid var(--line-highlight);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1040px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modal-scale-in 0.3s var(--ease);
}

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-scale-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  z-index: 10;
  transition: all var(--trans-fast);
}
.modal__close:hover {
  background: var(--surface-3);
  color: var(--text-pure);
  border-color: var(--text-pure);
}

.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px;
}

.detail__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail__hero {
  aspect-ratio: 4/3;
  background: var(--surface-1);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.detail__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.thumb {
  width: 70px;
  height: 54px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--trans-fast);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb.is-active, .thumb:hover {
  border-color: var(--gold);
}

.detail__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
}

.detail__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.detail__price .big {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.detail__desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  white-space: pre-line;
}

.colors-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-muted);
  transition: all var(--trans-fast);
}
.color-opt.is-active, .color-opt:hover {
  border-color: var(--gold);
  color: var(--text-pure);
}
.color-opt .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.specs__item {
  display: flex;
  flex-direction: column;
}
.specs__k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.specs__v {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-bright);
}

.finance {
  background: var(--surface-1);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.finance__head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
}
.finance__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.finance__row label {
  font-size: 12px;
  color: var(--text-muted);
}
.terms {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.term-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text-muted);
  cursor: pointer;
}
.term-btn.is-active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  font-weight: 700;
}
.finance__result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.finance__monthly {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.finance__note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============================================================
   REVEAL / ANIMACIONES AL SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-pure);
  color: #000;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 300;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast--error {
  background: #ff5252;
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento-card {
    grid-column: span 12;
  }
  .finance-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-bento {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .nav__links, .nav__right {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .detail {
    grid-template-columns: 1fr;
  }
  .cine__scrim {
    background:
      radial-gradient(ellipse 700px 600px at 30% 70%, rgba(6, 9, 7, 0.98) 0%, rgba(6, 9, 7, 0.92) 50%, rgba(6, 9, 7, 0.5) 85%, transparent 100%),
      linear-gradient(0deg, rgba(6, 9, 7, 0.98) 0%, rgba(6, 9, 7, 0.65) 45%, rgba(6, 9, 7, 0.1) 75%);
  }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 16px;
  }
  .cine {
    height: 220vh;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__stats {
    gap: 20px;
  }
  .calc-terms {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand-col {
    grid-column: span 1;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
