/* =========================================================
   Jetour Soueast Tepic — Landing oficial 2026-05-15
   Diseño aprobado por cliente. Replica 1:1 jetour2.pdf
   Design width: 1920px
========================================================= */

/* ----- Fonts ----- */
@font-face {
  font-family: 'Azonix';
  src: url('assets/fonts/azonix.woff2') format('woff2'),
       url('assets/fonts/azonix.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: #fff;
  background: #231f20;
  line-height: 1.4;
  overflow-x: clip;
  overscroll-behavior-x: none;
  max-width: 100vw;
}
/* Fallback para browsers que no soporten overflow: clip */
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

/* =========================================================
   ANIMATIONS — scroll reveal estilo Oleoflor
========================================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s cubic-bezier(.2,.7,.3,1), transform .85s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

[data-animate-type="left"]      { transform: translateX(-44px); }
[data-animate-type="left"].is-visible { transform: translateX(0); }

[data-animate-type="right"]     { transform: translateX(44px); }
[data-animate-type="right"].is-visible { transform: translateX(0); }

[data-animate-type="scale"]     { transform: scale(.92); }
[data-animate-type="scale"].is-visible { transform: scale(1); }

[data-animate-type="blur"] {
  filter: blur(10px);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1), filter 1s cubic-bezier(.2,.7,.3,1);
}
[data-animate-type="blur"].is-visible { filter: blur(0); }

[data-animate-type="rise"]      { transform: translateY(52px); }
[data-animate-type="rise"].is-visible { transform: translateY(0); }

[data-animate-type="pop"] {
  opacity: 0;
  transform: translateY(38px) scale(.88);
  transition: opacity .75s cubic-bezier(.34,1.56,.64,1), transform .75s cubic-bezier(.34,1.56,.64,1);
}
[data-animate-type="pop"].is-visible { opacity: 1; transform: translateY(0) scale(1); }

[data-animate-type="reveal"] {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity .9s ease, clip-path 1.1s cubic-bezier(.7,0,.2,1);
}
/* Cintillo siempre visible — está cerca del top en mobile y el observer puede no triggerear si scroll rápido */
.cintillo[data-animate-type="reveal"] { opacity: 1; clip-path: inset(0 0 0 0); transition: none;
  transform: none;
}
[data-animate-type="reveal"].is-visible { opacity: 1; clip-path: inset(0 0 0 0); }

/* Cascade — stagger children */
[data-animate-cascade] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
[data-animate-cascade].is-visible > * { opacity: 1; transform: translateY(0); }
[data-animate-cascade].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-cascade].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-animate-cascade].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-animate-cascade].is-visible > *:nth-child(4) { transition-delay: 270ms; }
[data-animate-cascade].is-visible > *:nth-child(5) { transition-delay: 360ms; }
[data-animate-cascade].is-visible > *:nth-child(6) { transition-delay: 450ms; }

/* CTA pulse — botones bronce */
@keyframes jetourPulse {
  0%   { box-shadow: 0 6px 16px rgba(199,143,95,.28); }
  50%  { box-shadow: 0 12px 32px rgba(199,143,95,.55); }
  100% { box-shadow: 0 6px 16px rgba(199,143,95,.28); }
}
.btn-pulse { animation: jetourPulse 2.8s ease-in-out 1.2s 2; }

/* Hero Ken Burns subtle bg zoom */
@keyframes jetourKenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.10); }
}
.hero-col.is-visible .hero-bg-img { animation: jetourKenBurns 18s ease-out forwards; }

/* Reduced motion — disable everything */
@media (prefers-reduced-motion: reduce) {
  [data-animate], [data-animate-cascade] > * {
    opacity: 1; transform: none; filter: none; transition: none; clip-path: none;
  }
  .btn-pulse, .hero-col.is-visible .hero-bg-img { animation: none; }
}

/* ----- Tokens ----- */
:root {
  --c-dark: #231f20;        /* warm dark — header, CTA, catalog */
  --c-navy: #0e1d23;        /* navy dark — warranty, contact, brand-about */
  --c-orange: #f58329;
  --c-bronze: #c78f5f;
  --c-bronze-light: #f4be79;
  --c-gray-light: #d1d2d4;
  --c-gray-text: #2c3038;
  --c-white: #ffffff;
  --c-line: rgba(255,255,255,.18);

  --font-display: 'Azonix', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --max: 1920px;
}

/* Body wrapper - constrain to design width */
body { max-width: var(--max); margin: 0 auto; }

/* =========================================================
   1. HEADER
========================================================= */
.site-header { width: 100%; line-height: 0; background: #0f0d0e; }
.cabecera { width: 100%; height: auto; display: block; }
.site-header picture { display: block; width: 100%; line-height: 0; }
/* Mobile usa cabecera-mobile.webp (aspect 4:1, logos legibles) vía <picture> source */

/* =========================================================
   2. HERO BANNER
========================================================= */
/* HERO carrusel — auto-rotativo en TODOS los tamaños */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 917;
  background: var(--c-dark);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .9s cubic-bezier(.55,.15,.25,1);
  will-change: transform;
}
.hero-grid[data-active="0"] { transform: translateX(0); }
.hero-grid[data-active="1"] { transform: translateX(-100%); }
.hero-col {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 90px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.hero-col.is-current .hero-bg-img { animation: jetourKenBurns 18s ease-out forwards; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,13,14,.12) 0%, rgba(15,13,14,.50) 65%, rgba(15,13,14,.92) 100%);
  z-index: 1;
}
.hero-col--left .hero-bg-img { background-image: url('assets/img/hero-jetour-banner.webp'); }
.hero-col--right .hero-bg-img { background-image: url('assets/img/hero-soueast-banner.webp'); }
.hero-text { position: relative; z-index: 2; max-width: 880px; }
/* Animación elegante de entrada para textos del hero — re-dispara cuando cambia slide */
.hero-col .hero-text > * { opacity: 0; transform: translateY(24px); filter: blur(6px); }
.hero-col.is-current .hero-text > * {
  animation: heroFadeUp .95s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero-col.is-current .hero-title    { animation-delay: .2s; }
.hero-col.is-current .hero-sub      { animation-delay: .42s; }
.hero-col.is-current .hero-body     { animation-delay: .62s; }
.hero-col.is-current .btn-descubre  { animation-delay: .82s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
/* Dots indicator + flechas — visible en todos los tamaños */
.hero-dots {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-dot {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.32);
  border: 0;
  cursor: pointer;
  transition: background .35s, width .35s;
  padding: 0;
}
.hero-dot.is-active {
  background: linear-gradient(90deg, #f7d774 0%, #c78f5f 100%);
  width: 56px;
}
/* Flechas prev/next desktop */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(15,13,14,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(199,143,95,.45);
  color: #f7d774;
  border-radius: 50%;
  cursor: pointer;
  z-index: 11;
  display: grid; place-items: center;
  transition: background .25s, transform .25s, color .25s;
}
.hero-arrow:hover {
  background: linear-gradient(180deg, #f7d774 0%, #c78f5f 100%);
  color: #1a1718;
  transform: translateY(-50%) scale(1.06);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
.hero-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: .5px;
  color: var(--c-white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 14px;
}
.hero-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-white);
  margin-bottom: 22px;
  max-width: 760px;
}
.btn-descubre { display: inline-block; line-height: 0; transition: transform .2s; }
.btn-descubre:hover { transform: translateY(-2px); }
.btn-descubre img { height: 56px; width: auto; }

/* =========================================================
   3. CTA STRIP
========================================================= */
.cta-strip {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(199,143,95,.08), transparent 55%),
    linear-gradient(180deg, #1c1819 0%, #0f0d0e 100%);
  padding: 70px 60px 60px;
  overflow: hidden;
  border-top: 1px solid rgba(199,143,95,.18);
  border-bottom: 1px solid rgba(199,143,95,.18);
}
.cta-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1700px;
  margin: 0 auto;
}
.cta-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  padding: 0 30px;
  position: relative;
}
.cta-col + .cta-col::before {
  content: '';
  position: absolute;
  left: -20px; top: 8%;
  width: 1px; height: 84%;
  background: linear-gradient(180deg, transparent 0%, rgba(199,143,95,.5) 50%, transparent 100%);
}
.cta-model {
  font-family: var(--font-display);
  font-size: 46px;
  letter-spacing: 6px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(255,255,255,.05);
}

/* Botón Agenda — código limpio, sin sombras de luz feas */
.btn-agenda {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f7d774 0%, #c78f5f 60%, #8a5a3a 100%);
  color: #1a1718;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(199,143,95,.28);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-agenda:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199,143,95,.45);
  filter: brightness(1.06);
}
.btn-agenda svg { stroke: #1a1718; }
.btn-agenda img { display: none; }  /* legacy image hidden */

.cta-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 46px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.cta-warranty {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: .5px;
}
.cta-shield { width: 22px; height: 22px; color: #f7d774; }
.cta-mes {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 42px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.cta-mes em {
  font-style: normal;
  font-weight: 500;
  font-size: .55em;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
  letter-spacing: 1.5px;
}
/* legacy watermark — hide */
.cta-watermark { display: none !important; }

/* =========================================================
   4. CINTILLO
========================================================= */
.cintillo {
  width: 100%;
  background: var(--c-dark);
  padding: 38px 24px;
  text-align: center;
}
.cintillo-inner { max-width: 1180px; margin: 0 auto; }
.cintillo-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.cintillo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.35vw, 18px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin: 12px 0 0;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .cintillo { padding: 28px 18px; }
  .cintillo-title { letter-spacing: .02em; }
  .cintillo-sub { letter-spacing: .08em; margin-top: 8px; }
}

/* =========================================================
   5. TEPIC INTRO
========================================================= */
.tepic-intro {
  background: var(--c-dark);
  padding: 80px 20px 60px;
  text-align: center;
}
.tepic-title {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 64px;
  letter-spacing: 8px;
  color: var(--c-white);
  margin-bottom: 14px;
}
.tepic-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-white);
}

/* =========================================================
   6. CATALOG
========================================================= */
.catalog {
  background:
    linear-gradient(rgba(35,31,32,.10), rgba(35,31,32,.10)),
    url('assets/img/fondo.webp') center/cover no-repeat;
  padding: 80px 60px 110px;
}
/* Carrusel horizontal desktop/tablet — vertical grid en mobile */
.catalog-wrap {
  position: relative;
  max-width: 1820px;
  margin: 0 auto;
}
.catalog-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
  scroll-padding: 8px;
  /* `auto` permite que el browser maneje ambos gestos:
     swipe-horizontal del carrusel (gracias a overflow-x:auto + scroll-snap)
     y scroll vertical de la página cuando el touch dominante sea vertical.
     pan-x explícito previo bloqueaba pan-y; pan-y explícito bloqueaba pan-x.
     Lo correcto es no restringir touch-action. */
  touch-action: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.catalog-grid::-webkit-scrollbar { display: none; }
.suv-card {
  flex: 0 0 calc((100% - 28px*3) / 4);
  scroll-snap-align: start;
  min-width: 0;
}
.cat-arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(35,31,32,.92);
  border: 2px solid #c78f5f;
  color: #f7d774;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s, opacity .25s;
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
  font-family: var(--font-body);
}
.cat-arrow:hover { background: linear-gradient(180deg, #f7d774 0%, #c78f5f 100%); color: #231f20; transform: translateY(-50%) scale(1.06); }
.cat-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }
.cat-prev { left: -22px; }
.cat-next { right: -22px; }
.suv-card {
  background: rgba(35,31,32,.85);
  border-radius: 6px;
  overflow: hidden;
  /* halo compacto inset-spread negativo evita banda rectangular extendida */
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
}
.suv-img { width: 100%; aspect-ratio: 400 / 453; overflow: hidden; position: relative; }
.suv-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.suv-pending-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: linear-gradient(180deg, #f7d774 0%, #c78f5f 100%);
  color: #231f20;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0,0,0,.35);
}
.suv-card[data-pending="true"] .suv-img { background: linear-gradient(135deg, #2a2628 0%, #1a1718 100%); }
.suv-card[data-pending="true"] { opacity: .92; }
.suv-tab { background: rgba(35,31,32,.95); padding: 22px 26px 28px; }
.suv-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-white);
  margin-bottom: 4px;
}
.suv-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
  min-height: 32px;
}
.suv-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--c-white);
}

/* =========================================================
   7+8. PROMO SECTION (bronze diagonal — title + body + cards)
========================================================= */
.promo {
  position: relative;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(247,215,116,.18), transparent 55%),
    linear-gradient(180deg, #f0c068 0%, #c78f5f 60%, #8a5a3a 100%);
  padding: 80px 60px 120px;
}
.promo-intro {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto 50px;
}
.sd-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 56px;
  color: var(--c-gray-text);
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.sd-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-gray-text);
  margin-bottom: 22px;
}
.sd-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-gray-text);
  max-width: 1200px;
  margin: 0 auto;
}
/* Promo carrusel 5 ofertas — desktop/tablet horizontal scroll */
.promo-wrap {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}
.promo-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 6px 18px;
  scroll-padding: 10px;
  /* `auto` deja al browser elegir gesto dominante (mismo fix que .catalog-grid).
     pan-x bloqueaba scroll vertical sobre las cards en mobile. */
  touch-action: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.promo-grid::-webkit-scrollbar { display: none; }
.promo-card {
  position: relative;
  flex: 0 0 calc((100% - 32px*2) / 3);  /* 3 visibles default */
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  scroll-snap-align: start;
  min-width: 0;
}
.pc-media {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,.45);
}
.pc-media > img,
.promo-card > img {
  width: 100%;
  height: auto;
  display: block;
}
.promo-arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(35,31,32,.92);
  border: 2px solid #c78f5f;
  color: #f7d774;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .25s, color .25s, transform .25s, opacity .25s;
  box-shadow: 0 8px 22px rgba(0,0,0,.55);
}
.promo-arrow:hover { background: linear-gradient(180deg, #f7d774 0%, #c78f5f 100%); color: #231f20; transform: translateY(-50%) scale(1.06); }
.promo-arrow:disabled { opacity: .25; cursor: default; pointer-events: none; }
.promo-prev { left: -24px; }
.promo-next { right: -24px; }

/* Overlay textos modular — visible solo cuando bg image NO trae texto rendered */
.pc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4%, 40px);
  pointer-events: none;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.promo[data-bg-has-text="true"] .pc-overlay { display: none; }

.pc-overlay-top { display: flex; flex-direction: column; gap: 12px; }
.pc-overlay-bottom { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.pc-headline {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.02;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pc-headline em {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 1px;
  margin-top: 6px;
  color: #ffd24a;
}
.pc-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: .5px;
  text-transform: uppercase;
  max-width: 90%;
  opacity: .95;
}
.pc-price {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -.5px;
}
.pc-price sup {
  font-size: .38em;
  vertical-align: super;
  font-weight: 700;
  margin-left: 2px;
}
.pc-bono {
  background: linear-gradient(180deg, #f7d774 0%, #c78f5f 100%);
  color: #231f20;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 1.2px;
  padding: 7px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 6px 14px rgba(199,143,95,.45);
}
.pc-bono strong { font-weight: 900; }
.pc-bono sup { font-size: .7em; vertical-align: super; }

.btn-ficha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #f7d774 0%, #c78f5f 60%, #8a5a3a 100%);
  color: #231f20;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  /* halo compacto: spread negativo evita banda rectangular extendida sobre fondo amarillo */
  box-shadow: 0 6px 16px -6px rgba(120,75,40,.45);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-ficha::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23231f20'%3E%3Cpath d='M12 16l-5-5h3V4h4v7h3l-5 5zm-7 4v-2h14v2H5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-ficha:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -6px rgba(120,75,40,.55); filter: brightness(1.05); }
.btn-ficha img { display: none; }  /* legacy image hidden if used */

/* =========================================================
   9. WARRANTY / TECH STRIP
========================================================= */
.warranty {
  background: var(--c-navy);
  padding: 80px 60px 90px;
  text-align: center;
}
.war-headline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 6px;
  line-height: 1.45;
}
.war-headline strong { font-weight: 700; }
.war-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--c-white);
  line-height: 1.7;
  max-width: 1500px;
  margin: 28px auto 0;
}
.war-body strong { font-weight: 700; }

/* =========================================================
   10. MARCA GLOBAL
========================================================= */
.marca {
  background: var(--c-gray-light);
  padding: 110px 60px 130px;
  text-align: center;
  color: var(--c-gray-text);
}
.marca-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 56px;
  color: var(--c-gray-text);
  margin-bottom: 24px;
  line-height: 1.1;
}
.marca-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  color: var(--c-gray-text);
  margin-bottom: 50px;
  line-height: 1.45;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto;
  justify-items: center;
}
.stat-card { width: 100%; max-width: 504px; }
.stat-card img { width: 100%; height: auto; }

/* =========================================================
   11. CONTACT
========================================================= */
.contact { background: var(--c-navy); padding: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr 460px;
  min-height: 720px;
}
.contact-info {
  background: var(--c-orange);
  padding: 70px 40px 40px;
  text-align: center;
  color: var(--c-white);
  display: flex; flex-direction: column; align-items: center;
}
.phone-icon { margin-bottom: 28px; }
.phone-icon img { width: 90px; height: auto; }
.contact-block { margin-bottom: 24px; }
.ci-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-white);
  line-height: 1.3;
}
.ci-value a { color: inherit; text-decoration: none; }

.contact-form-wrap {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(199,143,95,.06), transparent 60%),
    var(--c-navy);
  padding: 70px 70px;
  display: flex; flex-direction: column; align-items: stretch;
  border-left: 1px solid rgba(199,143,95,.08);
  border-right: 1px solid rgba(199,143,95,.08);
}
.cf-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c78f5f;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.cf-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, #c78f5f);
}
.cf-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 52px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.05;
  letter-spacing: -.5px;
}
.cf-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.cf-label em {
  font-style: normal;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 1px;
  opacity: .7;
  margin-left: 4px;
}
.contact-form input,
.contact-form textarea,
.contact-form select.cf-select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  letter-spacing: .3px;
  outline: none;
  width: 100%;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select.cf-select:hover {
  border-color: rgba(199,143,95,.4);
  background: rgba(255,255,255,.06);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select.cf-select:focus {
  border-color: #c78f5f;
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(199,143,95,.18);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.32);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.contact-form select.cf-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c78f5f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.contact-form select.cf-select option {
  color: #231f20;
  background: #fff;
  text-transform: none;
  font-weight: 500;
}
.contact-form select.cf-select option[disabled] { color: rgba(60,60,70,.55); }

.btn-enviar {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #f7d774 0%, #c78f5f 60%, #8a5a3a 100%);
  color: #1a1718;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(199,143,95,.28);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199,143,95,.45);
  filter: brightness(1.06);
}
.btn-enviar svg { stroke: #1a1718; }
.btn-enviar img { display: none; }
.cf-success {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--c-orange);
  font-size: 16px;
}

.brand-about {
  background: var(--c-navy);
  padding: 70px 50px 50px;
  text-align: center;
  color: var(--c-white);
}
.ba-logo { margin: 0 auto 24px; height: 36px; width: auto; }
.ba-lead {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-white);
  margin-bottom: 24px;
}
.ba-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-white);
}

/* =========================================================
   12. FOOTER
========================================================= */
.site-footer {
  background: #000;
  padding: 60px 60px 40px;
  color: var(--c-white);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1700px;
  margin: 0 auto;
}
.foot-brand img { width: 220px; height: auto; }
/* Modelos en 2 columnas para no agrandar el footer */
.foot-models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 6px;
}
.foot-col h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--c-white);
}
.foot-col ul li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 6px;
}
.foot-col ul li a {
  color: var(--c-white);
  transition: opacity .2s;
}
.foot-col ul li a:hover { opacity: .7; }
.social-icons { display: flex; gap: 18px; margin-top: 4px; justify-content: center; align-items: center; }
.social-icons img { width: 40px; height: 40px; }
.social-icons a { transition: transform .2s; display: inline-flex; }
.social-icons a:hover { transform: translateY(-2px); }
.foot-social { text-align: center; }
.foot-social h3 { text-align: center; }

/* =========================================================
   13. WHATSAPP WIDGET (replicado de SAQUIMI Operaciones)
========================================================= */
.wa-btn { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.wa-trigger {
  width: 64px; height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: all .3s;
  border: none;
  position: relative;
  z-index: 2;
}
.wa-trigger:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.65); }
.wa-pulse {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.6);opacity:0} }

.wa-form {
  position: absolute; bottom: 80px; right: 0;
  width: 340px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  overflow: hidden;
  transform: scale(.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
}
.wa-form.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wa-form-header {
  background: linear-gradient(135deg, var(--c-navy), #25D366);
  padding: 18px 20px 16px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
}
.wa-avatar {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(37,211,102,.25);
  border: 1.5px solid rgba(37,211,102,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-agent-name { color: white; font-weight: 700; font-size: 15px; font-family: var(--font-body); }
.wa-agent-tagline { color: rgba(255,255,255,.78); font-size: 12px; margin-top: 2px; }
.wa-form-body { padding: 18px 20px 20px; }
.wa-bubble {
  background: rgba(14,29,35,.07);
  border: 1px solid rgba(14,29,35,.1);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--c-gray-text);
  line-height: 1.5;
  margin-bottom: 14px;
}
.wa-form-body label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--c-navy); margin-bottom: 4px; margin-top: 8px;
}
.wa-form-body input,
.wa-form-body select {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid rgba(14,29,35,.18);
  border-radius: 8px;
  font-family: var(--font-body); font-size: 13px;
  color: var(--c-gray-text);
  background: #fafbfc; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.wa-form-body input:focus,
.wa-form-body select:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,.15);
}
.wa-send-btn {
  width: 100%; margin-top: 14px;
  padding: 12px;
  background: linear-gradient(135deg, var(--c-navy), #25D366);
  color: white; border: none;
  border-radius: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.wa-send-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.wa-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.18); border: none;
  border-radius: 50%; width: 28px; height: 28px;
  color: white; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.wa-close:hover { background: rgba(255,255,255,.32); }

.field-warn { border-color: #f0a500 !important; background: #fffbf0 !important; box-shadow: 0 0 0 3px rgba(240,165,0,.15) !important; }
.field-ok { border-color: #25D366 !important; }

/* =========================================================
   14. AVISO DE PRIVACIDAD MODAL
========================================================= */
.privacy-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(14,29,35,.55);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.privacy-modal-overlay.open { opacity: 1; pointer-events: all; }
.privacy-modal-box {
  position: relative; background: white;
  border-radius: 24px;
  width: 100%; max-width: 720px; max-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
  transform: translateY(30px) scale(.97);
  transition: transform .35s ease;
}
.privacy-modal-overlay.open .privacy-modal-box { transform: translateY(0) scale(1); }
.privacy-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--c-gray-light); border: none;
  border-radius: 50%; width: 38px; height: 38px;
  color: var(--c-navy); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.privacy-modal-close:hover { background: var(--c-orange); color: white; }
.privacy-modal-scroll { overflow-y: auto; padding: 40px 48px; position: relative; z-index: 1; }

/* Fichas técnicas grid dentro del modal */
.fichas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 640px) { .fichas-grid { grid-template-columns: 1fr; } }
.ficha-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #f7f5f1;
  border: 1px solid #e6e2db;
  border-radius: 6px;
  color: var(--c-navy);
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .25s;
}
.ficha-item:hover {
  border-color: #c78f5f;
  background: #fff;
  transform: translateY(-2px);
}
.ficha-item--pending {
  opacity: .55;
  cursor: not-allowed;
}
.ficha-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #f7d774 0%, #c78f5f 60%, #8a5a3a 100%);
  border-radius: 6px;
  display: grid; place-items: center;
  color: #1a1718;
}
.ficha-name { font-weight: 700; font-size: 15px; }
.ficha-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: #8a8a95;
  text-transform: uppercase;
  text-align: right;
}
.privacy-modal-header {
  text-align: center; margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e8eb;
}
.privacy-modal-header h2 {
  font-family: var(--font-body); font-weight: 700;
  color: var(--c-navy); font-size: 28px;
  margin-bottom: 6px;
}
.privacy-modal-company { font-size: 14px; color: var(--c-orange); font-weight: 600; margin-bottom: 12px; }
.privacy-pdf-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  padding: 8px 14px;
  background: var(--c-navy);
  color: var(--c-white) !important;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.privacy-pdf-link:hover { background: var(--c-orange); transform: translateY(-1px); }
.privacy-modal-footer-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e6e8eb;
  font-size: 12px !important;
  color: #6b7480 !important;
  text-align: center;
}
.privacy-modal-body ol { padding-left: 22px; margin-bottom: 10px; }
.privacy-modal-body ol li { margin-bottom: 4px; color: #475561; font-size: 14px; line-height: 1.7; }
.privacy-modal-body a { color: var(--c-navy); text-decoration: underline; }
.privacy-modal-body a:hover { color: var(--c-orange); }
/* Numerated list with paren style: 1) 2) 3) — preserves PDF original */
.privacy-modal-body ol.privacy-paren { list-style: none; padding-left: 0; counter-reset: paren; }
.privacy-modal-body ol.privacy-paren > li {
  counter-increment: paren;
  padding-left: 28px;
  position: relative;
}
.privacy-modal-body ol.privacy-paren > li::before {
  content: counter(paren) ")";
  position: absolute; left: 0; top: 0;
  font-weight: 600; color: var(--c-navy);
}
.privacy-signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e6e8eb;
  text-align: center;
  font-style: italic;
  font-size: 13px !important;
  color: #6b7480 !important;
}
.privacy-modal-body h3 {
  font-family: var(--font-body); color: var(--c-navy);
  font-size: 17px; margin: 24px 0 8px; font-weight: 700;
}
.privacy-modal-body p,
.privacy-modal-body ul {
  color: #475561; font-size: 14px; line-height: 1.7; margin-bottom: 10px;
}
.privacy-modal-body ul { padding-left: 22px; }
.privacy-modal-body ul li { margin-bottom: 4px; }
.privacy-modal-body strong { color: var(--c-navy); }

/* =========================================================
   RESPONSIVE — Mobile-first scaling
========================================================= */
/* Wide desktops (default = 1920 design) */
@media (max-width: 1919px) {
  body { width: 100%; }
}

/* Smaller laptop (1440-1280) */
@media (max-width: 1440px) {
  .catalog-grid { gap: 22px; }
  .suv-card { flex-basis: calc((100% - 22px*3) / 4); }
  .promo-grid { gap: 60px; }
}

/* Tablet landscape / small laptop (1024-1280) */
@media (max-width: 1280px) {
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 18px; }
  .hero-body { font-size: 12px; }
  .btn-descubre img { height: 46px; }

  .cta-grid { grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; }
  .cta-model { font-size: 36px; }
  .cta-price { font-size: 32px; }
  .cta-mes { font-size: 28px; }
  .cta-warranty { font-size: 15px; }

  .tepic-title { font-size: 48px; letter-spacing: 5px; }

  .catalog-grid { gap: 18px; }
  .suv-card { flex-basis: calc((100% - 18px*2) / 3); }  /* 3 visible en laptop pequeña */
  .suv-name { font-size: 22px; }
  .suv-tag { font-size: 13px; }

  .sd-title { font-size: 44px; }

  .promo-grid { gap: 24px; }
  .promo-card { flex-basis: calc((100% - 24px*1) / 2); max-width: 480px; }

  .marca-title { font-size: 44px; }
  .marca-body { font-size: 18px; }

  .contact-grid { grid-template-columns: 320px 1fr 380px; }
  .cf-title { font-size: 48px; }

  .foot-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 30px; }
}

/* Tablet (768-1023) — Hero usa banner horizontal igual que desktop, ajusta tipografía */
@media (max-width: 1023px) and (min-width: 721px) {
  .hero { aspect-ratio: 16 / 11; }
  .hero-col { padding: 0 40px 80px; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: 38px; line-height: 1.05; }
  .hero-sub { font-size: 18px; line-height: 1.35; }
  .hero-body { font-size: 14px; line-height: 1.55; }
  .hero-arrow { width: 48px; height: 48px; }
  .hero-prev { left: 16px; }
  .hero-next { right: 16px; }
}

/* Mobile <=720 — usa imágenes verticales + flechas hidden */
@media (max-width: 720px) {
  .hero { aspect-ratio: auto; height: 100vh; height: 100dvh; min-height: 540px; }
  .hero-col {
    flex: 0 0 100%;
    height: 100%;
    padding: 40px 24px 100px;
  }
  .hero-col--left .hero-bg-img { background-image: url('assets/img/hero-jetour-vertical.webp'); }
  .hero-col--right .hero-bg-img { background-image: url('assets/img/hero-soueast-vertical.webp'); }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(15,13,14,.10) 0%, rgba(15,13,14,.40) 55%, rgba(15,13,14,.92) 100%);
  }
  .hero-dots { bottom: 24px; gap: 10px; }
  .hero-dot { width: 28px; }
  .hero-dot.is-active { width: 40px; }
  .hero-arrow { display: none; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: 28px; line-height: 1.05; }
  .hero-sub { font-size: 15px; line-height: 1.35; }
  .hero-body { font-size: 13px; line-height: 1.55; }
}

/* Tablet/Mobile (≤1023px) — todo lo que NO es hero */
@media (max-width: 1023px) {
  /* CTA stacks */
  .cta-strip { padding: 50px 30px 40px; }
  .cta-grid { grid-template-columns: 1fr; gap: 30px; max-width: 600px; }
  .cta-col + .cta-col::before {
    display: block;
    left: 50%; top: -16px;
    width: 60%; height: 1px;
    transform: translateX(-50%);
  }
  .cta-watermark { display: none; }

  /* Tepic */
  .tepic-intro { padding: 50px 20px 40px; }
  .tepic-title { font-size: 36px; letter-spacing: 4px; }
  .tepic-sub { font-size: 16px; }

  /* Catalog → carrusel 2 visibles tablet */
  .catalog { padding: 36px 30px 40px; }
  .catalog-grid { gap: 20px; }
  .suv-card { flex-basis: calc((100% - 20px) / 2); }
  .cat-prev { left: -8px; }
  .cat-next { right: -8px; }
  .cat-arrow { width: 48px; height: 48px; }

  /* Soueast title + body */
  .promo { padding: 60px 30px 80px; }
  .sd-title { font-size: 34px; }
  .sd-body { font-size: 13px; }
  .promo-grid { gap: 22px; }
  .promo-card { flex-basis: 80%; max-width: none; }
  .promo-prev { left: -8px; }
  .promo-next { right: -8px; }
  .promo-arrow { width: 48px; height: 48px; }

  /* Warranty */
  .warranty { padding: 50px 30px 60px; }
  .war-headline { font-size: 18px; }
  .war-body { font-size: 13px; }

  /* Marca global */
  .marca { padding: 70px 30px 80px; }
  .marca-title { font-size: 36px; }
  .marca-body { font-size: 16px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 700px; }
  .stat-card { max-width: 240px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 50px 30px 40px; }
  .contact-form-wrap { padding: 50px 30px; }
  .brand-about { padding: 50px 30px 40px; }
  .cf-title { font-size: 40px; }

  /* Footer */
  .site-footer { padding: 40px 30px 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; text-align: left; }
  .foot-brand { grid-column: 1 / -1; text-align: center; margin-bottom: 10px; }

  /* WA widget */
  .wa-trigger { width: 56px; height: 56px; }
  .wa-form { width: 320px; bottom: 70px; }
}

/* Mobile (≤720px) — hereda ajustes de hero del breakpoint específico arriba */
@media (max-width: 720px) {
  .hero-col { padding: 36px 22px 80px; }
  .hero-title { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 12px; }
  .hero-body { margin-bottom: 20px; }
  .btn-descubre img { height: 50px; }

  .cta-strip { padding: 24px 20px 24px; }
  .cta-model { font-size: 28px; }
  .cta-price { font-size: 26px; }
  .cta-mes { font-size: 24px; }
  .cta-warranty { font-size: 14px; }

  .tepic-intro { padding: 30px 20px 24px; }
  .tepic-title { font-size: 28px; letter-spacing: 3px; }
  .tepic-sub { font-size: 14px; }

  /* Mobile: carrusel 1.15 cards visible (peek el siguiente) */
  .catalog { padding: 40px 16px 50px; }
  .catalog-grid { gap: 14px; padding: 8px 0 14px; }
  .suv-card { flex-basis: 86%; max-width: none; margin: 0; }
  .cat-arrow { display: none; }  /* swipe nativo en mobile, sin flechas */

  .promo { padding: 50px 16px 60px; }
  .sd-title { font-size: 26px; }
  .sd-sub { font-size: 14px; }
  .sd-body { font-size: 12px; }
  .promo-grid { gap: 16px; padding: 8px 0 14px; }
  .promo-card { flex-basis: 86%; }
  .promo-arrow { display: none; }

  .warranty { padding: 40px 20px 50px; }
  .war-headline { font-size: 16px; }
  .war-body { font-size: 12px; }

  .marca { padding: 50px 16px 60px; }
  .marca-title { font-size: 28px; }
  .marca-body { font-size: 14px; }
  .stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { max-width: 320px; }

  .contact-info { padding: 40px 20px 30px; }
  .ci-label { font-size: 18px; }
  .ci-value { font-size: 16px; }
  .phone-icon img { width: 70px; }

  .contact-form-wrap { padding: 40px 20px 50px; }
  .cf-title { font-size: 30px; padding-right: 70px; }  /* padding evita overlap con WA widget */
  .cf-sub { font-size: 13px; padding-right: 70px; }
  .cf-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select.cf-select { padding: 13px 16px; font-size: 15px; }
  .btn-enviar { width: 100%; justify-content: center; }

  .brand-about { padding: 40px 20px 30px; }
  .ba-lead { font-size: 15px; }
  .ba-body { font-size: 13px; }

  .site-footer { padding: 30px 20px 20px; }
  .foot-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .foot-col h3 { font-size: 18px; }
  .foot-col ul li { font-size: 14px; }
  .foot-brand img { width: 180px; margin: 0 auto; }
  .foot-models-grid { max-width: 320px; margin: 0 auto; }
  .social-icons { justify-content: center; }
  .social-icons img { width: 36px; height: 36px; }

  /* WA widget mobile */
  .wa-btn { bottom: 76px; right: 14px; }
  .wa-trigger { width: 54px; height: 54px; }
  .wa-form { width: calc(100vw - 32px); right: -8px; max-width: 340px; bottom: 64px; }
  /* Espacio extra al final del catálogo para evitar overlap del widget WA con "DESDE $X" */
  .catalog { padding-bottom: 86px; }
  .suv-card { margin-bottom: 6px; }

  /* Privacy modal */
  .privacy-modal-scroll { padding: 30px 24px; }
  .privacy-modal-header h2 { font-size: 22px; }
}

/* Reduced motion (Windows accessibility) — keep brand pulses/transitions, kill heavy animations */
@media (prefers-reduced-motion: reduce) {
  .wa-trigger:hover, .btn-descubre:hover, .btn-agenda:hover,
  .btn-ficha:hover, .btn-enviar:hover, .social-icons a:hover { transform: none; }
  /* but keep wa-pulse and form transitions — those are brand identity */
}

/* =========================================================
   15. EFFECTS UPGRADE — Tier 1 + Tier 2 (2026-05-18)
   Microinteracciones premium · NO altera layout aprobado
========================================================= */

/* ── Tokens auxiliares para glows ── */
:root {
  --c-orange-glow: rgba(245,131,41,.45);
  --c-bronze-glow: rgba(199,143,95,.40);
  --c-orange-rgb: 245,131,41;
}

/* JS overrides scroll-behavior; keep CSS smooth as fallback for hash-loads */

/* ─── A. SUV catalog cards hover — lift + shine sweep + border glow ─── */
.suv-card {
  cursor: default;
  position: relative;
  transition:
    transform .5s cubic-bezier(.2,.7,.3,1),
    box-shadow .5s cubic-bezier(.2,.7,.3,1),
    filter .5s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.suv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: box-shadow .45s ease;
  z-index: 3;
}
.suv-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 36px 72px rgba(199,143,95,.32),
    0 14px 30px rgba(0,0,0,.55);
  filter: brightness(1.04);
}
.suv-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(247,215,116,.5);
}
.suv-img { position: relative; overflow: hidden; }
.suv-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(247,215,116,.28) 50%, transparent 65%);
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 2;
  transition: transform .9s cubic-bezier(.2,.7,.3,1);
}
.suv-card:hover .suv-img::before { transform: translateX(110%); }
.suv-img img {
  transition: transform .9s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.suv-card:hover .suv-img img { transform: scale(1.08); }

.suv-card .suv-tab { transition: background .4s; }
.suv-card:hover .suv-tab { background: rgba(35,31,32,.98); }
.suv-card .suv-price { transition: color .4s; }
.suv-card:hover .suv-price { color: var(--c-bronze-light); }

/* ─── B. Promo OC cards hover — lift + shine + image brightness ─── */
.promo-card {
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.promo-card:hover { transform: translateY(-8px); }
.pc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(247,215,116,.22) 50%, transparent 70%);
  transform: translateX(-110%);
  pointer-events: none;
  z-index: 2;
  transition: transform .95s cubic-bezier(.2,.7,.3,1);
}
.promo-card:hover .pc-media::after { transform: translateX(110%); }
.pc-media {
  transition:
    box-shadow .5s cubic-bezier(.2,.7,.3,1),
    filter .5s cubic-bezier(.2,.7,.3,1);
}
.promo-card:hover .pc-media {
  box-shadow:
    0 4px 10px rgba(199,143,95,.18),
    0 16px 36px rgba(199,143,95,.32),
    0 36px 72px rgba(0,0,0,.40);
  filter: brightness(1.04);
}

/* ─── C. Stat cards (marca global) hover — shine sweep dorado ─── */
.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition:
    transform .45s cubic-bezier(.2,.7,.3,1),
    filter .45s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 30%, rgba(247,215,116,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 2;
  transition: transform .85s cubic-bezier(.2,.7,.3,1);
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.025);
  filter: drop-shadow(0 16px 32px rgba(199,143,95,.35));
}
.stat-card:hover::before {
  transform: translateX(100%);
}

/* ─── D. PNG buttons (hover refinado, sin drop-shadow naranja) ─── */
.btn-descubre {
  transition:
    transform .35s cubic-bezier(.2,.7,.3,1),
    filter .35s cubic-bezier(.2,.7,.3,1);
  will-change: transform, filter;
}
.btn-descubre:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}
.btn-descubre:active {
  transform: translateY(-1px);
  filter: brightness(.96);
  transition-duration: .1s;
}
/* btn-agenda / btn-ficha / btn-enviar ya manejan hover en sus reglas propias */

/* ─── E. WA trigger — REVERTED al original (single pulse del HTML span) ─── */

/* ─── F. Footer links hover (color shift + underline grow) ─── */
.foot-col ul li a {
  position: relative;
  display: inline-block;
  transition: color .25s ease, opacity .25s ease;
}
.foot-col:not(.foot-social) ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.foot-col ul li a:hover {
  color: var(--c-orange);
  opacity: 1;
}
.foot-col:not(.foot-social) ul li a:hover::after { transform: scaleX(1); }

/* ─── G. Social icons hover (scale + glow drop-shadow) ─── */
.social-icons a {
  transition:
    transform .4s cubic-bezier(.2,.7,.3,1),
    filter .4s cubic-bezier(.2,.7,.3,1);
}
.social-icons a:hover {
  transform: translateY(-4px) scale(1.15);
  filter: brightness(1.2) drop-shadow(0 8px 16px var(--c-orange-glow));
}

/* ─── H. Warranty section glow (radial naranja + text-shadow strong) ─── */
.warranty {
  position: relative;
  overflow: hidden;
}
.warranty::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1300px;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(245,131,41,.16) 0%,
    rgba(245,131,41,.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
.war-headline,
.war-body { position: relative; z-index: 1; }
.war-headline strong {
  text-shadow: 0 0 28px rgba(245,131,41,.55);
}

/* CTA: animación elegante de entrada (stagger col por col) */
.cta-strip .cta-col {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1), filter .8s ease;
}
.cta-grid.is-visible .cta-col { opacity: 1; transform: translateY(0); filter: blur(0); }
.cta-grid.is-visible .cta-col--model { transition-delay: .1s; }
.cta-grid.is-visible .cta-col--price { transition-delay: .28s; }
.cta-grid.is-visible .cta-col--mes   { transition-delay: .46s; }
/* Separador entre cols aparece al final */
.cta-col + .cta-col::before { opacity: 0; transition: opacity .6s ease .7s; }
.cta-grid.is-visible .cta-col + .cta-col::before { opacity: 1; }

/* ─── J. Phone icon — continuous subtle pulse ─── */
@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.phone-icon img {
  animation: phonePulse 3.2s ease-in-out infinite;
  transform-origin: center;
}

/* ─── K. Form inputs focus (manejado en regla principal con borde dorado) ─── */

/* ─── L. Hero btn-descubre + cta-warranty + ba-logo extras (Tier 2) ─── */

/* Hero btn-descubre — shine sweep al hover */
.btn-descubre {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}
.btn-descubre::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,.32) 50%,
    transparent 70%
  );
  transition: left .95s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
  z-index: 1;
}
.btn-descubre:hover::before { left: 120%; }

/* Contact-info — border glow on hover */
.contact-info {
  transition:
    box-shadow .5s cubic-bezier(.2,.7,.3,1);
  position: relative;
}
.contact-info:hover {
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.22),
    0 28px 70px rgba(245,131,41,.35);
}

/* Brand-about logo — subtle float */
@keyframes baLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.ba-logo {
  animation: baLogoFloat 4s ease-in-out infinite;
  will-change: transform;
}

/* Foot-brand logo — hover subtle scale */
.foot-brand img {
  transition: transform .4s cubic-bezier(.2,.7,.3,1), filter .4s ease;
}
.foot-brand:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* Privacy modal PDF link — small glow on hover */
.privacy-pdf-link:hover {
  box-shadow: 0 8px 20px rgba(245,131,41,.35);
}

/* =========================================================
   16. EFFECTS BATCH v2 — Más animaciones (2026-05-18 sesión 2)
   Premium feel: progress bar · tilt 3D · letter wave · drifts
========================================================= */

/* ─── M. Scroll progress bar — top fixed thin orange ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 99999;
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-bronze-light) 50%, var(--c-orange) 100%);
  background-size: 200% 100%;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .12s linear;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(245,131,41,.7);
  animation: scrollBarShimmer 4s linear infinite;
}
@keyframes scrollBarShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ─── N. SUV cards — 3D tilt prep (transform-style + perspective) ─── */
.catalog-grid {
  perspective: 1400px;
}
.suv-card {
  transform-style: preserve-3d;
}

/* ─── O. Letter wave entry for hero titles + tepic title + marca title ─── */
.split-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotateX(-30deg);
  transform-origin: bottom center;
  transition:
    opacity .55s cubic-bezier(.34,1.56,.64,1),
    transform .55s cubic-bezier(.34,1.56,.64,1);
  will-change: transform, opacity;
}
.split-letter.is-shown {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
/* Preserve space for the literal " " characters */
.split-letter[data-char=" "] { width: .35em; }

/* ─── P. CTA watermark — slow drift + breath scale ─── */
@keyframes ctaWatermarkDrift {
  0%   { transform: translate(-50%, -50%) scale(1.00); opacity: .32; }
  50%  { transform: translate(-49%, -51%) scale(1.04); opacity: .42; }
  100% { transform: translate(-50%, -50%) scale(1.00); opacity: .32; }
}
.cta-watermark {
  animation: ctaWatermarkDrift 18s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ─── Q. Cintillo — continuous diagonal shine sweep ─── */
.cintillo {
  position: relative;
  overflow: hidden;
}
.cintillo::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,.18) 50%,
    transparent 70%
  );
  transform: rotate(0deg);
  animation: cintilloShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes cintilloShine {
  0%   { transform: translateX(-200%) skewX(-12deg); }
  50%  { transform: translateX(600%) skewX(-12deg); }
  100% { transform: translateX(600%) skewX(-12deg); }
}

/* ─── R. Marca title — subtle gradient shimmer text ─── */
.marca-title {
  background: linear-gradient(
    90deg,
    var(--c-gray-text) 0%,
    var(--c-gray-text) 35%,
    var(--c-orange) 50%,
    var(--c-gray-text) 65%,
    var(--c-gray-text) 100%
  );
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: marcaTitleShimmer 8s ease-in-out infinite;
}
@keyframes marcaTitleShimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}

/* ─── S. Catalog bg — extra slow zoom continuous ─── */
@keyframes catalogBgZoom {
  0%, 100% { background-size: 100% auto; }
  50%      { background-size: 108% auto; }
}
.catalog {
  animation: catalogBgZoom 28s ease-in-out infinite;
  background-position: center center !important;
  will-change: background-size;
}

/* ─── T. Form input focus (sin animation, manejado en regla principal) ─── */

/* ─── U. Phone tel link — hover underline-grow + brightness ─── */
.ci-value a {
  position: relative;
  display: inline-block;
  transition: filter .25s ease;
}
.ci-value a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 80%;
  height: 2px;
  background: var(--c-white);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.ci-value a:hover { filter: brightness(1.15); }
.ci-value a:hover::after { transform: translateX(-50%) scaleX(1); }

/* ─── V. Promo intro sub — gradient underline grow on entry ─── */
.sd-title {
  position: relative;
  display: inline-block;
}
.sd-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--c-bronze) 30%, var(--c-orange) 70%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .9s cubic-bezier(.2,.7,.3,1) .3s;
}
.promo-intro.is-visible .sd-title::after { transform: scaleX(1); }

/* ─── W. Tepic intro title — subtle text-shadow glow on entry ─── */
@keyframes tepicTitleGlow {
  0%   { text-shadow: 0 0 0 rgba(245,131,41,0); }
  60%  { text-shadow: 0 0 30px rgba(245,131,41,.4), 0 0 60px rgba(245,131,41,.2); }
  100% { text-shadow: 0 0 0 rgba(245,131,41,0); }
}
.tepic-title.is-visible {
  animation: tepicTitleGlow 2.6s ease-in-out .4s 1;
}

/* ─── X. CF Contactanos title — subtle bronze drop-shadow ─── */
.cf-title {
  transition: text-shadow .5s ease;
}
.contact-form-wrap.is-visible .cf-title {
  animation: tepicTitleGlow 2.6s ease-in-out .4s 1;
}

/* ─── Y. Warranty headline strong — continuous subtle pulse glow ─── */
@keyframes warStrongPulse {
  0%, 100% { text-shadow: 0 0 24px rgba(245,131,41,.45); }
  50%      { text-shadow: 0 0 40px rgba(245,131,41,.75), 0 0 80px rgba(245,131,41,.3); }
}
.war-headline strong {
  animation: warStrongPulse 4s ease-in-out infinite;
}

/* ─── Z. Brand-about ba-lead — subtle quote-like fade word emphasis on entry ─── */
.brand-about.is-visible .ba-lead {
  animation: tepicTitleGlow 2.6s ease-in-out .6s 1;
}

/* ─── Reduced motion — disable batch v2 ─── */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .cta-watermark,
  .cintillo::after,
  .marca-title,
  .catalog,
  .war-headline strong { animation: none; }
  .cintillo::after { display: none; }
  .marca-title {
    background: none;
    -webkit-text-fill-color: var(--c-gray-text);
    color: var(--c-gray-text);
  }
  .contact-form input:focus,
  .contact-form textarea:focus { animation: none; outline: 2px solid rgba(245,131,41,.65); }
  .split-letter { opacity: 1; transform: none; transition: none; }
  .sd-title::after { display: none; }
  .tepic-title.is-visible,
  .contact-form-wrap.is-visible .cf-title,
  .brand-about.is-visible .ba-lead { animation: none; }
}

/* ─── Reduced motion — disable heavy effects (preserve brand WA pulse + form transitions) ─── */
@media (prefers-reduced-motion: reduce) {
  .suv-card:hover,
  .promo-card:hover,
  .stat-card:hover,
  .btn-descubre:hover,
  .btn-agenda:hover,
  .btn-ficha:hover,
  .btn-enviar:hover,
  .social-icons a:hover,
  .foot-brand:hover img,
  .suv-card:hover .suv-img img { transform: none; filter: none; }
  .phone-icon img,
  .ba-logo { animation: none; }
  .cta-grid.is-visible .cta-price,
  .cta-grid.is-visible .cta-mes,
  .cta-grid.is-visible .cta-shield { animation: none; }
  .btn-descubre::before { display: none; }
  .warranty::before { opacity: .5; }
}


/* Barra inferior del footer - copyright + credito Strata Studio */
.foot-bottom{max-width:1700px;margin:40px auto 0;padding-top:24px;border-top:1px solid var(--c-line);display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:10px 28px;font-family:var(--font-body);font-size:14px;color:rgba(255,255,255,.6);}
.foot-bottom p{margin:0;}
.foot-bottom .foot-credit a{color:var(--c-bronze-light);text-decoration:none;transition:color .2s ease;}
.foot-bottom .foot-credit a:hover,.foot-bottom .foot-credit a:focus{color:var(--c-orange);text-decoration:underline;}
@media (max-width:760px){.foot-bottom{justify-content:center;text-align:center;}}
