/* ============================================================
   KIA SELTOS HN — Landing
   Sitio por alextoro.lat
   ============================================================ */

@font-face {
  font-family: 'Kia Signature';
  src: url('../assets/fonts/KiaSignatureFixOTFBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kia Signature';
  src: url('../assets/fonts/KiaSignatureFixOTFRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kia Signature';
  src: url('../assets/fonts/KiaSignatureFixOTFLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #05141F;
  --navy-2: #0C2233;
  --navy-line: rgba(255,255,255,.14);

  --bg: #FFFFFF;
  --bg-alt: #F5F6F7;

  --ink: #05141F;
  --ink-soft: #4A5560;
  --ink-faint: #8A939C;
  --line: #E2E5E8;

  --on-dark: #FFFFFF;
  --on-dark-soft: rgba(255,255,255,.72);
  --on-dark-faint: rgba(255,255,255,.45);

  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;

  --radius: 2px;
  --shadow: 0 30px 70px rgba(5,20,31,.22);

  --kia: 'Kia Signature', sans-serif;
  --sans: 'Kia Signature', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; scroll-snap-type: y proximity; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--kia); font-weight: 700;
  letter-spacing: -.01em; line-height: 1.05; margin: 0; color: var(--ink);
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.wrap { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 84px); }
.section { padding: 110px 0; border-top: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); border-top: none; color: var(--on-dark); }
@media (max-width: 767px) { .section { padding: 64px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--kia); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--on-dark-faint); }
.section-dark .section-head h2, .section-dark .section-head h3 { color: var(--on-dark); }
.eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; opacity: .5; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 300; }
.section-head h2 strong { font-weight: 700; }
.section-head p { color: var(--ink-soft); margin-top: 18px; font-size: 1.02rem; line-height: 1.65; }
.section-head.center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }
.section-head.split > div { max-width: 560px; }
.section-dark .section-head p { color: var(--on-dark-soft); }

/* ── Botones ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: var(--radius);
  font-family: var(--kia); font-weight: 700; font-size: .84rem; letter-spacing: .05em; text-transform: uppercase;
  border: 1.5px solid transparent; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #E9EBEC; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-outline { border-color: rgba(5,20,31,.28); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 20px; font-size: .74rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--kia); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; border-bottom: 1.5px solid currentColor; padding-bottom: 4px; }
.link-arrow i { font-size: .74rem; transition: transform .2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ── Reveal on scroll ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.header.scrolled.theme-light {
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled.theme-dark {
  background: rgba(5,20,31,.78); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--navy-line);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { position: relative; display: block; width: 102px; height: 24px; overflow: hidden; }
.brand-logo { position: absolute; display: block; }
.brand-logo:not(.is-black) { width: 103.03px; height: 51.51px; top: -13.96px; left: -0.5px; }
.brand-logo.is-black { width: 101.59px; height: 25.4px; top: -1.02px; left: 0; }
.header.scrolled .brand { transform: scale(.85); transform-origin: left center; }

.nav-links { display: none; align-items: center; gap: 20px; }
.nav-link {
  position: relative; font-family: var(--kia); font-size: .92rem; font-weight: 400; letter-spacing: .02em;
  color: var(--on-dark-soft); padding-bottom: 4px;
}
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: #fff; transition: right .2s ease; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.header.scrolled.theme-light .nav-link { color: var(--ink-soft); }
.header.scrolled.theme-light .nav-link::after { background: var(--navy); }
.header.scrolled.theme-light .nav-link:hover, .header.scrolled.theme-light .nav-link.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; padding: 11px 20px; }
.header.scrolled.theme-light .header-cta.btn-light { background: var(--navy); color: #fff; }
.header.scrolled.theme-light .header-cta.btn-light:hover { background: var(--navy-2); }
.burger {
  width: 42px; height: 42px; border-radius: var(--radius);
  border: 1.5px solid var(--navy-line); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; flex-shrink: 0;
  transition: color .2s ease, border-color .2s ease;
}
.header.scrolled.theme-light .burger { color: var(--navy); border-color: rgba(5,20,31,.18); }
.mobile-menu { display: none; flex-direction: column; background: var(--navy-2); border-top: 1px solid var(--navy-line); padding: 8px 28px 20px; }
.mobile-menu.show { display: flex; }
.mobile-menu .nav-link { padding: 15px 2px; border-bottom: 1px solid var(--navy-line); color: var(--on-dark-soft); }
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu .nav-link::after { content: none; }
.mobile-menu .nav-link-text { position: relative; display: inline-block; padding-bottom: 2px; }
.mobile-menu .nav-link-text::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: #fff; transition: right .2s ease; }
.mobile-menu .nav-link:hover .nav-link-text::after, .mobile-menu .nav-link.active .nav-link-text::after { right: 0; }

@media (min-width: 1120px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
}

/* ── Hero (video) ───────────────────────────────────────── */
.hero { border-top: none; padding: 0; position: relative; background: var(--navy); overflow: hidden; scroll-snap-align: start; }
.hero-media { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(5,20,31,.95) 0%, rgba(5,20,31,.4) 40%, rgba(5,20,31,.15) 65%, rgba(5,20,31,.35) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 130px 0 44px; text-align: left; }
.hero-year { font-family: var(--kia); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero h1 { font-size: clamp(3rem, 7vw, 5.2rem); color: #fff; margin-top: 10px; font-weight: 300; letter-spacing: .01em; }
.hero-lead { margin-top: 14px; font-family: var(--kia); font-size: 1.05rem; color: rgba(255,255,255,.78); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ── Carrusel de estilo de vida ──────────────────────────── */
.lifestyle-carousel { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.lifestyle-carousel::-webkit-scrollbar { display: none; }
.lifestyle-slide {
  position: relative; flex: 0 0 min(680px, 88vw); scroll-snap-align: start;
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: var(--navy-2);
}
.lifestyle-slide img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,31,.85) 0%, rgba(5,20,31,0) 55%); }
.lifestyle-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; color: #fff; }
.lifestyle-caption p { font-family: var(--kia); font-size: 1.3rem; font-weight: 300; max-width: 320px; line-height: 1.3; }
.lifestyle-caption .btn { margin-top: 18px; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line); padding: 0; }
.carousel-dots button.active { background: var(--navy); width: 22px; border-radius: 4px; transition: width .2s ease; }
.section-dark .carousel-dots button { background: var(--navy-line); }
.section-dark .carousel-dots button.active { background: #fff; }

/* ── Selector de color ───────────────────────────────────── */
.color-picker { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .color-picker { grid-template-columns: 1.3fr .8fr; } }
.color-stage { position: relative; aspect-ratio: 4/3; background: linear-gradient(180deg, #F0F1F2 0%, #E4E6E8 100%); border-radius: var(--radius); overflow: hidden; }
.color-stage canvas, .color-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.color-stage-badge { position: absolute; bottom: 16px; left: 16px; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-faint); background: rgba(255,255,255,.8); padding: 6px 12px; border-radius: var(--radius); }

.color-list { display: flex; flex-direction: column; gap: 4px; }
.color-option {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 14px 14px; border: none; border-bottom: 1px solid var(--line); background: transparent;
  text-align: left; border-radius: var(--radius); transition: background .2s ease, box-shadow .2s ease;
}
.color-option:hover { background: rgba(5,20,31,.04); }
.color-option.active { background: #FAFAFA; box-shadow: 0 6px 18px rgba(5,20,31,.08); }
.color-option .dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(5,20,31,.12); flex-shrink: 0; transition: border-color .2s ease; }
.color-option.active .dot, .color-option:hover .dot { border-color: var(--navy); }
.color-option .name { font-family: var(--kia); font-size: .92rem; font-weight: 400; color: var(--ink); transition: font-weight .1s ease; }
.color-option.active .name { font-weight: 700; }
.color-option .status { margin-left: auto; font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-faint); }
.color-option.disabled { opacity: .7; cursor: default; }
.color-picker-note { margin-top: 20px; font-size: .76rem; color: var(--ink-faint); line-height: 1.6; }

/* ── 360 showcase (canvas scroll-scrub) ─────────────────── */
.showcase-360 { position: relative; background: linear-gradient(180deg, #EFF1F2 0%, #DCDFE1 100%); border-top: none; }
.showcase-360-pin { position: relative; height: 340vh; }
.showcase-360-stage { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding-top: 126px; overflow: hidden; }
#showcase-canvas { width: 100%; flex: 1; min-height: 0; display: block; }
.showcase-360-hint {
  position: absolute; top: 178px; left: 50%; transform: translateX(-50%);
  font-family: var(--kia); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  display: flex; align-items: center; gap: 8px; z-index: 2;
}
.showcase-tabs { position: absolute; top: 126px; right: clamp(20px, 4vw, 64px); display: flex; gap: 6px; z-index: 2; }
.showcase-progress { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); width: 200px; height: 2px; background: rgba(5,20,31,.12); border-radius: 2px; overflow: hidden; z-index: 2; }
.showcase-progress-bar { height: 100%; width: 0%; background: var(--navy); }
.showcase-title { position: absolute; top: 126px; left: clamp(20px, 4vw, 64px); z-index: 2; }
.showcase-title .eyebrow { margin-bottom: 6px; }
.showcase-title h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; }

.tab-pill { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(5,20,31,.16); font-family: var(--kia); font-size: .74rem; font-weight: 400; color: var(--ink-faint); background: rgba(255,255,255,.6); }
.tab-pill.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ── Interior callout ────────────────────────────────────── */
.interior-callout { position: relative; border-top: none; padding: 0; height: 100vh; overflow: hidden; scroll-snap-align: start; }
.interior-slideshow { position: absolute; inset: 0; }
.interior-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.interior-slideshow img.is-active { opacity: 1; }
.interior-callout-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,20,31,.82) 0%, rgba(5,20,31,.1) 55%); }
.interior-callout-content { position: absolute; left: 0; top: 0; bottom: 0; display: flex; align-items: center; z-index: 1; }
.interior-callout-content .wrap { max-width: 460px; }
.interior-callout-content .eyebrow { color: var(--on-dark-faint); }
.interior-callout-content h3 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 300; line-height: 1.25; }
.interior-callout-content p { color: rgba(255,255,255,.72); margin-top: 14px; font-size: .94rem; line-height: 1.6; max-width: 380px; }

/* ── Trims carousel ───────────────────────────────────────── */
.trims-scroll-section { padding: 0; }
.trims-scroll-pin { position: relative; height: 170vh; }
.trims-scroll-stage { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.trims-carousel-wrap { position: relative; }
.trims-grid {
  display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.trims-grid::-webkit-scrollbar { display: none; }
.trims-grid .trim-card { flex: 0 0 calc((100% - 2 * 28px) / 3.18); scroll-snap-align: start; }
.trims-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; cursor: pointer; z-index: 2; box-shadow: var(--shadow); transition: opacity .2s ease;
}
.trims-nav.next { right: -8px; }
.trims-nav.prev { left: -8px; }
.trims-nav:hover { background: var(--bg-alt); }
.trims-nav[disabled] { opacity: 0; pointer-events: none; }
.trim-card {
  background: var(--bg-alt); border: none; border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.trim-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.trim-card .trim-photo { aspect-ratio: 16/10; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 30px 26px 10px; }
.trim-card .trim-photo img { width: 100%; height: 100%; object-fit: contain; }
.trim-card-body { padding: 8px 30px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.trim-card h3 { font-size: 1.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.trim-tagline { font-size: .96rem; color: var(--ink-soft); line-height: 1.55; }
.trim-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.trim-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
.trim-features i { color: var(--navy); margin-top: 4px; font-size: .68rem; flex-shrink: 0; }
.trim-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.trim-view-btn {
  background: none; border: none; padding: 0 0 4px; position: relative;
  font-family: var(--kia); font-weight: 700; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy);
}
.trim-view-btn::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--navy); transition: right .2s ease; }
.trim-view-btn:hover::after { right: 0; }

/* ── Modal de versión ────────────────────────────────────── */
.trim-modal { position: fixed; inset: 0; z-index: 2100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.trim-modal-overlay { position: absolute; inset: 0; background: rgba(5,20,31,.75); backdrop-filter: blur(4px); }
.trim-modal-panel {
  position: relative; background: #fff; width: min(1000px, 100%); max-height: 88vh; overflow-y: auto;
  border-radius: var(--radius); display: grid; grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .trim-modal-panel { grid-template-columns: .9fr 1.1fr; max-height: 82vh; overflow: hidden; }
  .trim-modal-media { height: 100%; }
  .trim-modal-body { max-height: 82vh; overflow-y: auto; }
}
.trim-modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 1rem; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.trim-modal-media { background: var(--bg-alt); display: flex; align-items: center; justify-content: center; padding: 24px; min-height: 240px; }
.trim-modal-media img { width: 100%; height: 100%; object-fit: contain; }
.trim-modal-body { padding: 44px 40px; }
.trim-modal-body h3 { font-size: 1.8rem; font-weight: 700; text-transform: uppercase; }
.trim-modal-tagline { color: var(--ink-soft); margin-top: 10px; line-height: 1.6; font-size: .96rem; }
.trim-modal-swatches { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.trim-modal-swatches span { width: 26px; height: 26px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(5,20,31,.15); }
.trim-modal-categories { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }
.trim-modal-cat h4 { font-family: var(--kia); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.trim-modal-cat ul { display: flex; flex-direction: column; gap: 8px; }
.trim-modal-cat li { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; padding-left: 16px; position: relative; }
.trim-modal-cat li::before { content: ""; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-faint); }
.trim-modal-cat li.is-new { color: var(--ink); font-weight: 700; }
.trim-modal-cat li.is-new::before { background: var(--navy); }
body.modal-open { overflow: hidden; }

/* ── Video showcase ──────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--navy-2); border: 1px solid var(--navy-line); }
.video-card video, .video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,20,31,.85) 0%, rgba(5,20,31,.1) 50%); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem;
  backdrop-filter: blur(4px);
}
.video-card-label { position: absolute; left: 18px; bottom: 18px; z-index: 1; color: #fff; }
.video-card-label .cat { font-family: var(--kia); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.video-card-label .title { font-family: var(--kia); font-size: 1.05rem; font-weight: 400; margin-top: 4px; }
.video-card.pending .video-play { opacity: .5; }
.video-card.pending .video-card-label .title { color: rgba(255,255,255,.5); }
.videos-more { text-align: center; margin-top: 32px; }

/* ── Especificaciones ───────────────────────────────────── */
.specs-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin-bottom: 52px; }
@media (min-width: 700px) {
  .specs-stats { grid-template-columns: repeat(4, 1fr); }
  .specs-stat { padding-left: 20px; border-left: 1px solid var(--line); }
  .specs-stat:first-child { border-left: none; padding-left: 0; }
}
.specs-stat-num { display: block; font-family: var(--kia); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.specs-stat-label { display: block; margin-top: 6px; font-size: .84rem; color: var(--ink-soft); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-top: 1px solid var(--line); }
.specs-table tr:last-child { border-bottom: 1px solid var(--line); }
.specs-table td { padding: 20px 4px; font-size: .95rem; }
.specs-table td:first-child { color: var(--ink-soft); font-family: var(--kia); }
.specs-table td:last-child { text-align: right; font-weight: 700; }

/* ── Newsletter / CTA final ─────────────────────────────── */
.cta-final { position: relative; border-top: none; padding: 0; }
.cta-final-bg { position: relative; min-height: 640px; display: flex; align-items: center; }
.cta-final-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-final-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,20,31,.92) 0%, rgba(5,20,31,.55) 55%, rgba(5,20,31,.35) 100%); z-index: 1; }
.cta-final-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 40px; padding: 70px 0; width: 100%; }
@media (min-width: 992px) { .cta-final-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.cta-final-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; }
.cta-final-copy p { color: rgba(255,255,255,.72); margin-top: 16px; max-width: 380px; line-height: 1.6; }

.form-card { background: rgba(255,255,255,.04); border: 1px solid var(--navy-line); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(6px); }
.field-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--kia); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; border: 1.5px solid var(--navy-line); border-radius: var(--radius);
  background: rgba(255,255,255,.05); color: #fff; padding: 13px 14px; font-size: .95rem;
}
.field input::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus { outline: none; border-color: #fff; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select option { background: var(--navy); color: #fff; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.field-check input { width: auto; margin-top: 3px; }
.field-check label { font-size: .78rem; color: var(--on-dark-soft); text-transform: none; letter-spacing: 0; font-weight: 400; font-family: var(--sans); }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--on-dark-soft); padding-top: 44px; border-top: 1px solid var(--navy-line); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 36px; border-bottom: 1px solid var(--navy-line); }
.footer-logo { height: 42px; width: auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 44px 0; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid .footer-col:last-child { align-items: flex-end; text-align: right; }
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-col h6 { font-family: var(--kia); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.footer-col a, .footer-col span { display: inline-flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--on-dark-soft); }
.footer-col a { position: relative; padding-bottom: 2px; }
.footer-col a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: #fff; transition: right .25s ease; }
.footer-col a:hover { color: #fff; }
.footer-col a:hover::after { right: 0; }
.footer-col i { color: var(--on-dark-faint); width: 16px; flex-shrink: 0; }
.dealer-logo-wrap { width: 150px; height: 76px; overflow: hidden; position: relative; }
.dealer-logo { position: absolute; top: -34px; left: -22px; width: 196px; max-width: none; }
.dealer-name { font-family: var(--kia); font-size: .88rem; color: var(--on-dark-soft); margin-top: 4px; }

.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-square {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid var(--navy-line); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background .2s ease;
}
.social-square:hover { background: rgba(255,255,255,.16); }

.footer-disclaimer { padding: 18px 0 36px; font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.6; border-top: 1px solid var(--navy-line); }

.footer-bottom {
  padding: 22px 0; border-top: 1px solid var(--navy-line);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: .76rem; color: var(--on-dark-faint);
}
.footer-bottom a { color: var(--on-dark-faint); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .credit-link { color: rgba(255,255,255,.18); text-decoration: none; transition: color .2s ease; }
.footer-bottom .credit-link:hover { color: rgba(255,255,255,.55); }

/* ── Flotantes ──────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--whatsapp); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; box-shadow: 0 14px 32px rgba(0,0,0,.28);
  z-index: 999; cursor: pointer;
}
.wa-float:hover { background: var(--whatsapp-dark); }

.btt-float {
  position: fixed; bottom: 88px; right: 24px;
  width: 52px; height: 52px; border-radius: var(--radius);
  background: #fff; color: var(--navy); border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: 0 10px 28px rgba(0,0,0,.15);
  z-index: 999; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.btt-float.show { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 767px) {
  .wa-float { bottom: 20px; width: 48px; height: 48px; font-size: 1.25rem; }
  .btt-float { bottom: 78px; width: 48px; height: 48px; }
  .showcase-360-stage { padding-top: 84px; }
  .showcase-title, .showcase-tabs, .showcase-360-hint { position: static; transform: none; text-align: center; margin-bottom: 16px; }
  .showcase-tabs { justify-content: center; flex-wrap: wrap; }
  .interior-callout-content .wrap { max-width: 90%; }
  .trims-grid .trim-card { flex-basis: 82%; }
  .trims-nav { display: none; }
}
@media (min-width: 768px) and (max-width: 1119px) {
  .trims-grid .trim-card { flex: 0 0 calc((100% - 28px) / 2.15); }
}
