:root {
  --bg-deep: #050a14;
  --bg: #0a1628;
  --bg-elevated: #0f1f3a;
  --accent: #f5c518;
  --accent-dim: #c9a012;
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --border: rgba(245, 197, 24, 0.15);
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --header-h-expanded: 132px;
  --header-blue: #0f2744;
  --header-blue-dark: #0a1628;
  --surface-light: #eef1f6;
  --surface-white: #ffffff;
  --text-dark: #0f172a;
  --text-soft: #475569;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 92vw);
}

/* Header — layout: logo | enlaces | WA + redes · arriba: transparente + logo grande · scroll: azul oscuro + logo chico */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    min-height 0.35s ease;
}

.header--light {
  background: var(--surface-white);
  border-bottom: 1px solid rgba(15, 39, 68, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* Sobre el hero: sin fondo, logo grande */
.header--light.header--transparent:not(.header--scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  min-height: var(--header-h-expanded);
}

.header--light.header--transparent:not(.header--scrolled) .header__inner {
  min-height: var(--header-h-expanded);
  padding-block: 0.65rem;
}

.header--light.header--transparent:not(.header--scrolled) .brand__logo {
  height: clamp(72px, 13vw, 118px);
  max-width: min(300px, 72vw);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.header--light.header--transparent:not(.header--scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header--light.header--transparent:not(.header--scrolled) .nav__link:hover {
  color: var(--accent);
}

.header--light.header--transparent:not(.header--scrolled) .header__social-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.header--light.header--transparent:not(.header--scrolled) .header__social-link:hover {
  background: var(--accent);
  color: #0a0f18;
  border-color: var(--accent);
}

.header--light.header--transparent:not(.header--scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.28);
}

.header--light.header--transparent:not(.header--scrolled) .nav-toggle__bar {
  background: #fff;
}

/* Al hacer scroll: barra azul oscuro + logo compacto */
.header--light.header--scrolled {
  background: linear-gradient(180deg, #0f2744 0%, #0c1d35 55%, #0a1628 100%);
  border-bottom: 1px solid rgba(245, 197, 24, 0.22);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  min-height: var(--header-h);
}

.header--light.header--scrolled .header__inner {
  min-height: var(--header-h);
  padding-block: 0.45rem;
}

.header--light.header--scrolled .brand__logo {
  height: 48px;
  max-width: min(168px, 40vw);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.header--light.header--scrolled .nav__link {
  color: rgba(226, 232, 240, 0.94);
  text-shadow: none;
}

.header--light.header--scrolled .nav__link:hover {
  color: var(--accent);
}

.header--light.header--scrolled .header__social-link {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.header--light.header--scrolled .header__social-link:hover {
  background: rgba(245, 197, 24, 0.18);
  color: var(--accent);
  border-color: rgba(245, 197, 24, 0.45);
}

.header--light.header--scrolled .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.header--light.header--scrolled .nav-toggle__bar {
  background: var(--accent);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  padding-block: 0.45rem;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--header-blue);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand__logo {
  height: 48px;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(15, 39, 68, 0.12);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.brand__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.header__panel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2.5vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav__link {
  color: var(--header-blue);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.4rem 0.15rem;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--accent-dim);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #1ebe5d 100%);
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42);
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.header__wa:hover {
  text-decoration: none;
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

.header__wa-icon {
  flex-shrink: 0;
  color: #fff;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--header-blue);
  background: rgba(15, 39, 68, 0.04);
  border: 1px solid rgba(15, 39, 68, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header__social-link:hover {
  text-decoration: none;
  background: var(--header-blue);
  color: var(--accent);
  border-color: var(--header-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 39, 68, 0.15);
  border-radius: 10px;
  background: rgba(15, 39, 68, 0.04);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--header-blue);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: #0a0f18;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.25);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn--hero-primary {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.88rem;
  padding: 1rem 1.75rem;
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

/* Hero fullscreen */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h-expanded) + 2rem) 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

.hero--fullscreen .hero__content {
  grid-template-columns: 1fr;
  max-width: 52rem;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(5, 10, 20, 0.92) 0%, rgba(5, 10, 20, 0.55) 45%, rgba(5, 10, 20, 0.35) 100%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(245, 197, 24, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__slider-mark {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__slider-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 197, 24, 0.5);
  border-radius: 50%;
}

.hero__slider-line {
  width: 2px;
  height: 4rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 1px;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Aire lateral en celular (el .container no tenía padding) */
.hero .container {
  padding-inline: max(1.25rem, env(safe-area-inset-left, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.hero__copy {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--hero {
  color: rgba(255, 255, 255, 0.95);
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0 0 1.75rem;
  color: rgba(226, 232, 240, 0.92);
  font-size: 1.08rem;
  max-width: 32rem;
  line-height: 1.55;
}

.hero__lead strong {
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

@media (max-width: 540px) {
  .hero {
    padding: calc(var(--header-h-expanded) + 1rem) 0 2.75rem;
  }

  .hero .container {
    padding-inline: max(1.35rem, env(safe-area-inset-left, 0px)) max(1.35rem, env(safe-area-inset-right, 0px));
  }

  .hero__title {
    font-size: clamp(1.45rem, 6.2vw + 0.35rem, 2.4rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }

  .hero__lead {
    font-size: 1rem;
    margin-bottom: 1.35rem;
  }

  .eyebrow--hero {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn--hero-primary {
    padding: 0.9rem 1.25rem;
  }
}

/* Franja de imágenes — carrusel continuo (velocidad: --image-strip-duration) */
[data-image-strip] {
  --image-strip-duration: 62s;
}

.image-strip__viewport {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg);
}

.image-strip__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.image-strip__track.is-animated {
  animation: image-strip-marquee var(--image-strip-duration, 50s) linear infinite;
}

@keyframes image-strip-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-strip__track.is-animated {
    animation: none;
    transform: none;
  }

  .image-strip__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .image-strip__track {
    flex-wrap: nowrap;
  }
}

.image-strip__group {
  display: flex;
  gap: clamp(1rem, 2.2vw, 1.65rem);
  padding: 0.65rem clamp(0.65rem, 2vw, 1.1rem);
  flex: 0 0 auto;
}

.image-strip__group img {
  flex: 0 0 auto;
  width: min(220px, 42vw);
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated, #1a1d24);
}

/* Logos (PNG con transparencia) */
.image-strip__logo-wrap {
  flex: 0 0 auto;
  width: min(220px, 42vw);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.image-strip__logo-wrap img {
  flex: none;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: none;
  background: transparent;
}

.image-strip__group img.is-broken {
  object-fit: none;
  object-position: center;
  background: repeating-linear-gradient(
    -45deg,
    var(--bg-elevated, #1a1d24),
    var(--bg-elevated, #1a1d24) 6px,
    rgba(255, 255, 255, 0.04) 6px,
    rgba(255, 255, 255, 0.04) 12px
  );
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--light {
  background: var(--surface-light);
  color: var(--text-dark);
}

.section--light a:not(.btn):not(.card__hover-btn) {
  color: #0a4d8c;
}

.section--store-wrap {
  background: var(--surface-light);
}

.section--alt {
  background: linear-gradient(180deg, rgba(15, 31, 58, 0.5) 0%, transparent 100%);
}

/* Sobre nosotros — emojis de fondo (herramientas / taller) */
.section--nosotros {
  position: relative;
  overflow: hidden;
}

.section--nosotros > .container {
  position: relative;
  z-index: 1;
}

/* Sobre nosotros — bloque único, una foto, stats limpios (emojis de fondo sin cambios) */
.nosotros__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  padding-inline: clamp(0.25rem, 2vw, 0.5rem);
}

.nosotros__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nosotros__title {
  margin-bottom: 0.65rem;
}

.nosotros__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

.nosotros__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.nosotros__figure {
  margin: 0;
  min-width: 0;
}

.nosotros__photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(245, 197, 24, 0.45);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 197, 24, 0.12);
}

.nosotros__photo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Foto del local: proporción más panorámica (fachada) */
.nosotros__photo-frame--local img {
  aspect-ratio: 3 / 2;
}

.nosotros__caption {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: center;
}

.nosotros__content {
  min-width: 0;
}

.nosotros__checks {
  margin-top: 1.35rem;
}

.nosotros__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.nosotros__stat {
  background: rgba(15, 31, 58, 0.55);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nosotros__stat:hover {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.nosotros__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.nosotros__stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .nosotros__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .nosotros__figure {
    max-width: min(520px, 100%);
    margin-inline: auto;
  }

  .nosotros__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .nosotros__stat {
    padding: 0.85rem 0.5rem;
  }

  .nosotros__stat-value {
    font-size: 1.25rem;
  }

  .nosotros__stat-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .nosotros__stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .nosotros__stat {
    padding: 1rem 1rem;
  }
}

.nosotros-bg-icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.nosotros-bg-icon {
  --nosotros-dur: 28s;
  --nosotros-delay: 0s;
  position: absolute;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, filter;
  animation-duration: var(--nosotros-dur);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--nosotros-delay);
  user-select: none;
}

/* Emojis en amarillo logo (#f5c518): filtro sobre glifo a color */
.nosotros-bg-icon--emoji {
  font-size: clamp(1.2rem, 3.2vw, 1.95rem);
  line-height: 1;
  width: max-content;
  height: max-content;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
  filter: brightness(0) saturate(100%) invert(86%) sepia(68%) saturate(1800%) hue-rotate(352deg) brightness(1.04) contrast(1.02);
}

.nosotros-bg-icon--drift-a {
  animation-name: nosotros-bg-drift-a;
}

.nosotros-bg-icon--drift-b {
  animation-name: nosotros-bg-drift-b;
}

.nosotros-bg-icon--drift-c {
  animation-name: nosotros-bg-drift-c;
}

.nosotros-bg-icon--drift-d {
  animation-name: nosotros-bg-drift-d;
}

.nosotros-bg-icon--drift-e {
  animation-name: nosotros-bg-drift-e;
}

.nosotros-bg-icon--drift-f {
  animation-name: nosotros-bg-drift-f;
}

@keyframes nosotros-bg-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(18vw, -12vh, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(-12vw, 14vh, 0) rotate(-6deg);
  }
  75% {
    transform: translate3d(10vw, 8vh, 0) rotate(4deg);
  }
}

@keyframes nosotros-bg-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(-16vw, 10vh, 0) rotate(-7deg);
  }
  50% {
    transform: translate3d(14vw, -10vh, 0) rotate(5deg);
  }
  75% {
    transform: translate3d(-8vw, -14vh, 0) rotate(-4deg);
  }
}

@keyframes nosotros-bg-drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  20% {
    transform: translate3d(12vw, 16vh, 0) rotate(6deg);
  }
  55% {
    transform: translate3d(-18vw, -8vh, 0) rotate(-8deg);
  }
  80% {
    transform: translate3d(6vw, -12vh, 0) rotate(3deg);
  }
}

@keyframes nosotros-bg-drift-d {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  30% {
    transform: translate3d(-10vw, -16vh, 0) rotate(-5deg);
  }
  60% {
    transform: translate3d(16vw, 6vh, 0) rotate(7deg);
  }
  85% {
    transform: translate3d(-14vw, 12vh, 0) rotate(-3deg);
  }
}

@keyframes nosotros-bg-drift-e {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(-14vw, 11vh, 0) rotate(6deg);
  }
  70% {
    transform: translate3d(11vw, -9vh, 0) rotate(-5deg);
  }
}

@keyframes nosotros-bg-drift-f {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  40% {
    transform: translate3d(9vw, 15vh, 0) rotate(-6deg);
  }
  80% {
    transform: translate3d(-17vw, -11vh, 0) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nosotros-bg-icon {
    animation: none;
  }
}

.section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 640px;
  margin-inline: auto;
}

.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-inline: 0;
}

.section__title {
  font-family: var(--font-heading);
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__title--dark {
  color: var(--text-dark);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
}

.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__subtitle--dark {
  color: var(--text-soft);
}

/* Productos destacados — banner + widget WhatsApp */
.section--product-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Amarillo + azul (misma línea que el logo: --accent y fondos del sitio) */
  background: linear-gradient(
    105deg,
    #f5c518 0%,
    #e6b814 22%,
    #3d6ea8 48%,
    #152238 78%,
    #0a1628 100%
  );
  color: #fff;
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

/* Destello / brillo amarillo que cruza la sección */
.section--product-showcase::before {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -35%;
  width: min(55vw, 420px);
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 252, 220, 0) 35%,
    rgba(255, 236, 120, 0.55) 48%,
    rgba(245, 197, 24, 0.75) 50%,
    rgba(255, 236, 120, 0.55) 52%,
    rgba(255, 252, 220, 0) 65%,
    transparent 100%
  );
  transform: skewX(-16deg) translateX(-120%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 1;
  animation: product-showcase-gleam 7s ease-in-out infinite;
}

.section--product-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 12% 40%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 88% 55%, rgba(15, 31, 58, 0.35) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

@keyframes product-showcase-gleam {
  0% {
    transform: skewX(-16deg) translateX(-140%);
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  28% {
    transform: skewX(-16deg) translateX(340%);
    opacity: 1;
  }
  32%,
  100% {
    transform: skewX(-16deg) translateX(340%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--product-showcase::before {
    animation: none;
    opacity: 0;
  }
}

.product-showcase {
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-showcase__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.product-showcase__title {
  margin: 0 auto 0.65rem;
  max-width: 22ch;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.product-showcase__lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.product-showcase__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  max-width: min(960px, 100%);
  margin-inline: auto;
}

.product-showcase__cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 1rem);
  flex: 0 1 min(480px, 100%);
  max-width: min(480px, 100%);
  margin-inline: 0;
  align-content: start;
}

.product-showcase__piece {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  display: block;
}

.wa-widget {
  flex: 0 1 min(360px, 100%);
  width: 100%;
  max-width: 360px;
  margin-inline: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-widget__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #0f2744 0%, #0a1628 100%);
  color: #fff;
}

.wa-widget__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.wa-widget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.2rem;
}

.wa-widget__header-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.wa-widget__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.wa-widget__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.wa-widget__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.35);
}

.wa-widget__body {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  background: #e8f5e9;
}

.wa-widget__bubble {
  display: inline-block;
  max-width: 92%;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.45rem;
  border-radius: 0 12px 12px 12px;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-widget__bubble--in + .wa-widget__bubble--in {
  margin-top: -0.15rem;
}

.wa-widget__body .wa-widget__bubble:last-child {
  margin-bottom: 0;
}

.wa-widget__composer {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem 0.65rem;
  background: #f0f2f5;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-widget__input {
  flex: 1;
  min-height: 44px;
  max-height: 100px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  font-family: var(--font);
  font-size: 0.88rem;
  resize: vertical;
  background: #fff;
  color: var(--text-dark);
}

.wa-widget__input::placeholder {
  color: #94a3b8;
}

.wa-widget__input:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.wa-widget__send {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wa-widget__send:hover {
  background: #1fb855;
}

.wa-widget__send:active {
  transform: scale(0.96);
}

@media (max-width: 899px) {
  .product-showcase__row {
    flex-direction: column;
    align-items: center;
  }

  .product-showcase__cluster {
    margin-inline: auto;
    width: 100%;
  }

  .wa-widget {
    margin-inline: auto;
  }
}

@media (min-width: 900px) {
  .product-showcase__row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .product-showcase__cluster {
    grid-template-columns: 1fr;
  }
}

/* Pestañas productos */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.product-tabs__btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-tabs__btn:hover {
  border-color: rgba(245, 197, 24, 0.6);
  color: var(--text-dark);
}

.product-tabs__btn.is-active {
  background: var(--accent);
  color: #0a0f18;
  border-color: var(--accent);
}

.product-panel[hidden] {
  display: none !important;
}

.product-panel {
  padding-top: 1.5rem;
}

/* Grid cards */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card--light {
  background: var(--surface-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.card--light:hover {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e2e8f0;
}

.card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(5, 10, 20, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover .card__hover {
  opacity: 1;
}

.card__hover-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #0a0f18;
  border-radius: 4px;
  text-decoration: none;
}

.card__hover-btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.card__hover-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card__img {
  transform: scale(1.06);
}

.card__body {
  padding: 1.35rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__brand {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 0.35rem;
}

.card__title--dark {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.card__text--muted {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.card__stars {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.split--visual {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.split__photos {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.split__photos-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split__photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.split__photos-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.prose {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose strong {
  color: var(--text);
}

.checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.split__panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.split__panel--with-img {
  padding: 0;
  overflow: hidden;
}

.split__panel-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.split__panel--with-img .stat {
  padding-inline: 1.75rem;
}

.split__panel--with-img .stat:first-of-type {
  padding-top: 1rem;
}

.split__panel--with-img .stat:last-child {
  padding-bottom: 1.75rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.stat__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Franja “Repuestos…” — solo CSS, responsive */
.section--lead {
  padding: 0;
}

.lead-band {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(480px, 78vh);
  overflow: hidden;
  background: linear-gradient(165deg, #0d1f3d 0%, #050a14 40%, #0a1628 100%);
  isolation: isolate;
}

.lead-band__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.lead-band__diagonal-yellow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: min(70%, 520px);
  height: 160%;
  z-index: 0;
  background: linear-gradient(200deg, rgba(245, 197, 24, 0.22) 0%, rgba(245, 197, 24, 0.05) 45%, transparent 70%);
  transform: skewX(-14deg);
  pointer-events: none;
}

.lead-band__diagonal-blue {
  position: absolute;
  bottom: -20%;
  left: -25%;
  width: 80%;
  height: 90%;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(15, 31, 58, 0.9) 0%, transparent 65%);
  pointer-events: none;
}

.lead-band__hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 5vw, 3rem) 0 0;
  flex: 1 1 auto;
}

.lead-band__copy {
  padding-right: 0.5rem;
}

.lead-band__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.lead-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 4.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.lead-band__tagline {
  margin: 0 0 1.1rem;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.5;
  max-width: 26rem;
}

.lead-band__brand-chip {
  display: inline-block;
  position: relative;
  padding: 0.5rem 1.75rem 0.5rem 1rem;
  background: linear-gradient(90deg, #1e3a5f 0%, #2d4a7c 100%);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  border-left: 3px solid var(--accent);
}

.lead-band__brand-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
}

.lead-band__visual {
  position: relative;
  min-height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes lead-band-card-border-glow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  50% {
    border-color: rgba(245, 197, 24, 0.95);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(245, 197, 24, 0.35),
      0 0 18px rgba(245, 197, 24, 0.4);
  }
}

.lead-band__card {
  position: absolute;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.6));
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: lead-band-card-border-glow 2.2s ease-in-out infinite;
}

.lead-band__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lead-band__card--1 {
  width: min(50%, 200px);
  aspect-ratio: 4 / 3;
  top: 6%;
  right: 10%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.lead-band__card--2 {
  width: min(56%, 220px);
  aspect-ratio: 1;
  top: 26%;
  right: 36%;
  transform: rotate(6deg);
  z-index: 1;
  background: linear-gradient(160deg, rgba(51, 65, 85, 0.9), rgba(30, 41, 59, 0.7));
  animation-delay: 0.35s;
}

.lead-band__card--3 {
  width: min(48%, 182px);
  aspect-ratio: 4 / 3;
  bottom: 4%;
  right: 4%;
  transform: rotate(-14deg);
  animation-delay: 0.7s;
}

.lead-band__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
  padding-top: clamp(1rem, 3vw, 1.5rem);
  padding-bottom: clamp(1rem, 3vw, 1.75rem);
  padding-left: max(1rem, calc((100% - min(1120px, 92vw)) / 2 + 0.5rem));
  padding-right: max(2.75rem, calc(2.75rem + env(safe-area-inset-right, 0px)));
  box-sizing: border-box;
  pointer-events: none;
}

.lead-band__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: auto;
}

.lead-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  margin: 0;
}

.lead-band__phone:hover {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.lead-band__wa {
  margin: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* Store */
.store {
  text-align: center;
}

.store__intro {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--text-dark);
  text-align: left;
  letter-spacing: -0.02em;
}

.store__steps {
  text-align: left;
  margin-bottom: 2rem;
}

.store__steps--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 0 1.35rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.step-card__img {
  aspect-ratio: 3 / 4;
  min-height: clamp(280px, 32vw, 400px);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8ecf2 100%);
}

.step-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.step-card__n {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 20, 0.88);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.step-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  padding-inline: 1.15rem;
}

.step-card__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  padding-inline: 1.15rem;
}

.store__cta {
  width: 100%;
  max-width: 360px;
}

/* Contact */
.section--contact {
  position: relative;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(
      155deg,
      rgba(5, 10, 20, 0.88) 0%,
      rgba(10, 22, 40, 0.78) 42%,
      rgba(5, 10, 20, 0.9) 100%
    ),
    url("assets/Local.jpeg");
  background-size: cover;
  background-position: 28% center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.section__head--on-dark .section__title {
  color: var(--text);
}

.section__head--on-dark .section__subtitle {
  color: var(--text-muted);
}

.contact-layout .section__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-form-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
}

.contact-panel__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.15rem;
}

.contact-form__row {
  margin-bottom: 1rem;
}

.contact-form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.contact-form__input:hover {
  border-color: rgba(245, 197, 24, 0.35);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.contact-form__hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form__hint a {
  font-weight: 600;
}

.contact-info {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.contact-info__title--second {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.contact-info__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info__key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}

a.contact-info__value:hover {
  color: var(--accent);
  text-decoration: none;
}

.contact-info .locales__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info .locales__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}

.locales__pin {
  flex-shrink: 0;
}

.locales__link {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 197, 24, 0.35);
}

.locales__link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.locales__city {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer — azul oscuro + detalles amarillos */
.site-footer {
  position: relative;
  background: linear-gradient(165deg, #0f2744 0%, #0a1628 42%, #050a14 100%);
  color: #e8edf5;
  border-top: none;
  /* El FAB de WhatsApp es fixed; no hace falta reservar ~56px extra abajo */
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  box-shadow: inset 0 1px 0 rgba(245, 197, 24, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(45%, 380px);
  height: 120px;
  background: radial-gradient(ellipse at 100% 0%, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Línea superior amarilla centrada (~mitad del ancho), no de punta a punta */
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: var(--accent);
  z-index: 2;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__top {
  position: relative;
  border-bottom: none;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.site-footer__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: rgba(245, 197, 24, 0.28);
  pointer-events: none;
}

.site-footer__top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.site-footer__logo-block {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.site-footer__logo-block:hover {
  text-decoration: none;
  opacity: 0.92;
}

.site-footer__logo-img {
  display: block;
  width: 100px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__pitch {
  flex: 1 1 min(100%, 480px);
  max-width: 560px;
  margin-left: auto;
  text-align: right;
}

.site-footer__pitch-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-footer__pitch-text {
  margin: 0 0 1.1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

.site-footer__pitch-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--accent);
  color: #0a0f18;
  border: 2px solid rgba(245, 197, 24, 0.65);
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(245, 197, 24, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.site-footer__cta-btn:hover {
  background: #e6b800;
  color: #0a0f18;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.45);
}

.site-footer__main {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-bottom: none;
}

.site-footer__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: rgba(245, 197, 24, 0.22);
  pointer-events: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.site-footer__contact-list li:last-child {
  margin-bottom: 0;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 197, 24, 0.95);
}

.site-footer__contact-icon--wa {
  color: #25d366;
}

.site-footer__contact-icon--ig {
  color: #f5c518;
}

.site-footer__contact-line {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  word-break: break-word;
}

.site-footer__contact-line:hover {
  color: var(--accent);
}

.site-footer__col-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer__col-text {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
}

.site-footer__col-text--tight {
  margin-bottom: 0;
}

.site-footer__hint {
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.site-footer__link--strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.site-footer__legal {
  padding: 0.85rem 0 0.5rem;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.85);
}

.site-footer__credit {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.72);
}

.site-footer__credit a {
  color: rgba(226, 232, 240, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__credit a:hover {
  color: var(--accent);
}

/* FAB WhatsApp */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab:hover {
  transform: scale(1.06);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__slider-mark {
    display: none;
  }

  .lead-band__hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1.5rem;
  }

  .lead-band__visual {
    min-height: 188px;
    max-height: 268px;
  }

  .lead-band__card--1 {
    width: min(44%, 162px);
    right: 6%;
  }

  .lead-band__card--2 {
    width: min(50%, 182px);
    right: 33%;
  }

  .lead-band__card--3 {
    width: min(42%, 148px);
  }

  .lead-band__inner {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split--visual {
    grid-template-columns: 1fr;
  }

  .store__steps--cards {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col:nth-child(3) {
    grid-column: 1 / -1;
  }

  .site-footer__top-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__pitch {
    max-width: none;
    margin-left: 0;
    text-align: left;
  }

  .site-footer__pitch-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header__panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 39, 68, 0.1);
    box-shadow: 0 12px 32px rgba(15, 39, 68, 0.12);
  }

  .header--light.header--transparent:not(.header--scrolled) .header__panel {
    background: rgba(8, 18, 36, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }

  .header--light.header--scrolled .header__panel {
    background: linear-gradient(180deg, #0f2744 0%, #0a1628 100%);
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .header__panel.is-open {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav__link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(15, 39, 68, 0.08);
    color: var(--header-blue);
  }

  .header--light.header--transparent:not(.header--scrolled) .nav__link {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: none;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .header--light.header--scrolled .nav__link {
    color: rgba(226, 232, 240, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .nav__link:hover {
    color: var(--accent-dim);
  }

  .header--light.header--transparent:not(.header--scrolled) .nav__link:hover,
  .header--light.header--scrolled .nav__link:hover {
    color: var(--accent);
  }

  .header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(15, 39, 68, 0.08);
  }

  .header--light.header--transparent:not(.header--scrolled) .header__actions,
  .header--light.header--scrolled .header__actions {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .header__wa {
    justify-content: center;
  }

  .header__social {
    justify-content: center;
  }

  .header__inner {
    flex-wrap: wrap;
    position: relative;
  }

  .brand {
    order: 1;
  }

  .nav-toggle {
    order: 2;
    margin-left: auto;
  }

  .header__panel {
    order: 3;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .fab:hover {
    transform: none;
  }

  .lead-band__card {
    animation: none;
    border-color: rgba(255, 255, 255, 0.25);
  }

  .header,
  .header__inner,
  .brand__logo {
    transition: none;
  }
}
