/* ==========================================================================
   THRON — Movilidad sustentable
   Bicicletas, cascos y monopatines eléctricos
   ========================================================================== */

:root {
  --ink: #14171a;
  --ink-2: #3a4048;
  --muted: #6b7280;
  --muted-2: #9aa1a9;
  --line: #e7e9ec;
  --line-2: #eef0f2;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-soft-2: #eef1ee;

  --accent: #a9e021;
  --accent-2: #8fc41a;
  --accent-ink: #14171a;
  --accent-soft: #eef9d4;

  --ff-display: "Oswald", "Arial Narrow", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --nav-h: 92px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(20, 23, 26, .06);
  --shadow: 0 18px 44px rgba(20, 23, 26, .10);
  --shadow-lg: 0 26px 60px rgba(20, 23, 26, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1220px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 .5em;
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; color: var(--muted); }
section { position: relative; }
ul { padding: 0; margin: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

.bg-soft { background: var(--bg-soft); }
.text-accent { color: var(--accent-2) !important; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Tipografía utilitaria ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.eyebrow.center { justify-content: center; }

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section { padding: clamp(60px, 8vw, 110px) 0; }
/* Primer bloque de las fichas de producto: ya viene de un page-hero con su propio
   espacio, así que necesita mucho menos aire arriba (evita un gap grande al saltar
   con el botón "Más info"). */
#galeria { padding-top: clamp(32px, 4vw, 56px); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 48ch; }
.center-head { text-align: center; max-width: 680px; margin-inline: auto; }

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  --bg-btn: var(--ink);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 2px solid var(--bg-btn);
  background: var(--bg-btn);
  color: var(--fg-btn);
  border-radius: 50px;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 1em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--fg-btn); }

.btn--accent { --bg-btn: var(--accent); --fg-btn: var(--accent-ink); border-color: var(--accent); }
.btn--accent:hover { background: rgba(169, 224, 33, .70); border: 2px solid var(--accent); color: var(--accent-ink); }

.btn--ghost { --bg-btn: transparent; --fg-btn: var(--ink); border-color: var(--line); }
.btn--ghost:hover { --fg-btn: var(--ink); border-color: var(--ink); background: var(--bg-soft); }

.btn--ghost-white { --bg-btn: transparent; --fg-btn: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn--white { --bg-btn: #fff; --fg-btn: var(--ink); border-color: #fff; }
.btn--white:hover { --bg-btn: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--wa { --bg-btn: #25d366; --fg-btn: #fff; border-color: #25d366; }
.btn--wa:hover { --bg-btn: #1eb958; border-color: #1eb958; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.12) 65%, rgba(0,0,0,0) 100%);
  border-bottom: none;
  transition: all .35s var(--ease);
}
.nav.scrolled, .nav.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { position: relative; display: inline-flex; align-items: center; }
.nav__logo img { height: 56px; width: auto; transition: opacity .25s var(--ease); }
.nav__logo .nav__logo--dark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; }
.nav__logo .nav__logo--white { opacity: 1; }
.nav.scrolled .nav__logo--white, .nav.solid .nav__logo--white { opacity: 0; }
.nav.scrolled .nav__logo--dark, .nav.solid .nav__logo--dark { opacity: 1; }
.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--ff-display); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .4px;
  color: rgba(255,255,255,.92); position: relative; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--accent-2); transition: right .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { right: 0; }
.nav.scrolled .nav__link, .nav.solid .nav__link { color: var(--ink-2); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active,
.nav.solid .nav__link:hover, .nav.solid .nav__link.active { color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--ink); margin-inline: auto; transition: all .3s var(--ease); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Menú mobile fullscreen ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 890;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-16px);
  transition: all .4s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 30px; }
.mobile-menu__link { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--ink); padding: 10px 0; }
.mobile-menu__link:hover { color: var(--accent-2); }
.mobile-menu__foot { margin-top: 20px; color: var(--muted); font-size: .9rem; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero__bg--video { opacity: 0; transition: opacity .8s var(--ease); }
.hero__bg--video.playing { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      var(--ink) 0%, rgba(20,23,26,.94) 22%, rgba(20,23,26,.68) 42%,
      rgba(20,23,26,.32) 64%, rgba(20,23,26,.05) 84%, rgba(20,23,26,0) 100%),
    linear-gradient(180deg, rgba(20,23,26,0) 55%, var(--ink) 100%);
}
.hero .container {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 40px;
}
.hero__content { max-width: 700px; }
.hero__content .eyebrow { color: var(--accent); margin-bottom: 10px; }
.hero__content .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; margin-bottom: .3em; }
.hero h1 span { color: var(--accent); }
.hero__sub { color: rgba(255,255,255,.86); font-size: 1.12rem; line-height: 1.55; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); }
.hero__stat { display: flex; align-items: center; gap: 14px; }
.hero__stat__ico {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: var(--accent); font-size: 1.05rem; flex-shrink: 0;
}
.hero__stat__tx .n { font-family: var(--ff-display); font-weight: 700; color: #fff; font-size: 1.15rem; line-height: 1.2; }
.hero__stat__tx .l { color: rgba(255,255,255,.7); font-size: .82rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: #fff; font-size: 1.3rem; opacity: .8; z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Hero de página interna ---------- */
.page-hero {
  position: relative; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px;
  background: var(--ink);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    var(--ink) 0%, rgba(20,23,26,.94) 22%, rgba(20,23,26,.68) 42%,
    rgba(20,23,26,.32) 64%, rgba(20,23,26,.05) 84%, rgba(20,23,26,0) 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,23,26,0) 55%, var(--ink) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb-ms { font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb-ms a:hover { color: var(--accent); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .eyebrow::before { background: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.page-hero .lead { color: rgba(255,255,255,.78); }

.spec-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.spec-box {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 14px 18px; min-width: 108px;
}
.spec-box i { color: var(--accent); font-size: 1.1rem; margin-bottom: 4px; }
.spec-box b { font-family: var(--ff-display); color: #fff; font-size: 1.02rem; }
.spec-box small { color: rgba(255,255,255,.6); font-size: .76rem; }

/* ==========================================================================
   TARJETAS DE VALOR / FEATURES
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.value-card {
  background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 28px 24px; transition: all .3s var(--ease);
}
.value-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--line); }
.value-card__ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-2); font-size: 1.3rem; margin-bottom: 18px;
}
.value-card h3 { font-size: 1.08rem; }
.value-card p { font-size: .92rem; margin: 0; }

.feature-list li { display: flex; gap: 12px; padding: 10px 0; color: var(--ink-2); }
.feature-list i { color: var(--accent-2); margin-top: 3px; }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about__media img { border-radius: var(--radius); }
.about__badge {
  position: absolute; left: 20px; bottom: 20px; background: #fff; border-radius: 50px;
  padding: 10px 18px 10px 10px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow);
  font-family: var(--ff-display); font-weight: 600; font-size: .86rem;
}
.about__badge .ico { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--accent-ink); }

/* ==========================================================================
   CATEGORÍAS (bloques Bicicletas / Cascos / Monopatines)
   ========================================================================== */
.cat-block { padding: 20px 0; }
.cat-block__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all .35s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--line); }
.product-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__tag {
  position: absolute; top: 14px; left: 14px; background: #fff; color: var(--ink);
  font-family: var(--ff-display); font-size: .74rem; font-weight: 700; letter-spacing: .4px;
  padding: 6px 12px; border-radius: 50px; box-shadow: var(--shadow-sm);
}
.product-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__sub { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-2); font-weight: 700; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.product-card p { font-size: .9rem; margin: 0; flex: 1; }
.product-card__colors { display: flex; gap: 6px; margin: 4px 0 2px; }
.swatch-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(20,23,26,.25); }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.product-card__link { font-family: var(--ff-display); font-weight: 700; font-size: .88rem; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.product-card__link i { transition: transform .3s var(--ease); color: var(--accent-2); }
.product-card:hover .product-card__link i { transform: translateX(4px); }

/* ==========================================================================
   FICHA DE PRODUCTO
   ========================================================================== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.spec-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line-2); color: var(--ink-2); font-size: .96rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list i { color: var(--accent-2); margin-top: 3px; flex-shrink: 0; }
.spec-list.optional i { color: var(--muted-2); }
.spec-list strong { color: var(--ink); }

.tech-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.tech-table tr { border-bottom: 1px solid rgba(20,23,26,.10); }
.tech-table tr:last-child { border-bottom: none; }
.tech-table td { padding: 12px 4px; font-size: .94rem; }
.tech-table td:first-child { color: var(--muted); width: 44%; }
.tech-table td:last-child { color: var(--ink); font-weight: 600; font-family: var(--ff-display); }

/* ---------- Callout de función destacada (ej: linterna LED) ---------- */
.feature-callout {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--accent-soft); border: 1px solid rgba(169,224,33,.35);
  border-radius: var(--radius); padding: 18px 20px; margin-top: 22px;
}
.feature-callout__ico {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 1.15rem;
}
.feature-callout b { display: block; font-family: var(--ff-display); color: var(--ink); font-size: 1rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .4px; }
.feature-callout p { margin: 0; font-size: .92rem; color: var(--ink-2); }

/* ---------- Galería con selector de color ---------- */
.gallery-main {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft);
  border: 1px solid var(--line-2); aspect-ratio: 4/3.1; margin-bottom: 16px; cursor: pointer;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.gallery-main__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center; font-size: 1rem; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: all .25s var(--ease);
}
.gallery-main__nav:hover { background: var(--ink); color: #fff; }
.gallery-main__nav--prev { left: 14px; }
.gallery-main__nav--next { right: 14px; }
.gallery-main__zoom {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center; font-size: .9rem;
  box-shadow: var(--shadow-sm); pointer-events: none;
}

.color-swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.color-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line); background: #fff; border-radius: 50px;
  padding: 7px 16px 7px 7px; cursor: pointer; font-family: var(--ff-display);
  font-size: .82rem; font-weight: 600; color: var(--ink-2); transition: all .25s var(--ease);
}
.color-chip__dot { width: 20px; height: 20px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset; }
.color-chip:hover { border-color: var(--ink); }
.color-chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumb {
  display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1;
  background: var(--bg-soft); border: 1.5px solid var(--line-2); cursor: pointer; position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.gallery-thumb.active { border-color: var(--accent-2); }
.gallery-thumb.is-hidden { display: none; }

/* ---------- Galería tipo grilla (home / secciones) ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; background: var(--bg-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; cursor: pointer; font-family: var(--ff-display); font-weight: 600;
  color: var(--ink); font-size: 1rem;
}
.faq-q i { color: var(--accent-2); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 20px; margin: 0; font-size: .95rem; }

/* ==========================================================================
   MONOPATINES (próximamente) + VIDEO
   ========================================================================== */
.soon-card {
  background: var(--ink); border-radius: var(--radius); padding: clamp(36px, 6vw, 64px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; overflow: hidden; position: relative;
}
.soon-card__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--accent-ink);
  font-family: var(--ff-display); font-weight: 700; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 18px;
}
.soon-card h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.soon-card p { color: rgba(255,255,255,.72); }
.soon-card__media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: #000; }
.soon-card__media video { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: var(--ink); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.72); max-width: 56ch; margin-inline: auto; }
.cta-band .hero__cta { justify-content: center; }

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-info__item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.contact-info__item:first-child { padding-top: 0; }
.contact-info__ico {
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-2);
  display: grid; place-items: center; flex-shrink: 0; font-size: 1.05rem;
}
.contact-info__item b { display: block; color: var(--ink); font-family: var(--ff-display); font-size: .96rem; margin-bottom: 2px; }
.contact-info__item span, .contact-info__item a { font-size: .92rem; color: var(--muted); }
.contact-info__item a:hover { color: var(--accent-2); }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink); transition: all .25s var(--ease);
}
.social-row a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.form-card { background: var(--bg-soft); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line-2); }
.form-control, .form-select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px;
  font-size: .95rem; background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent-2); box-shadow: 0 0 0 4px var(--accent-soft); outline: none;
}
label.form-label { font-size: .84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
#formMsg { display: none; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 18px; }
#formMsg.ok { display: block; background: var(--accent-soft); color: #3a6b0c; }
#formMsg.err { display: block; background: #fde8e8; color: #a3221f; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,.6); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo img { height: 40px; margin-bottom: 16px; }
.footer p { color: rgba(255,255,255,.5); font-size: .92rem; }
.footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer ul li { padding: 7px 0; }
.footer ul a { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer ul a:hover { color: var(--accent); }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact i { color: var(--accent); width: 16px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: #fff;
}
.footer__social a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.footer__bottom {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 26px 0; font-size: .82rem;
}
.footer-badges { display: flex; align-items: flex-start; gap: 18px; }
.footer-badges img { opacity: .9; height: auto; }
.footer-badges a:first-child img { width: 59px; }
.footer-badges a:last-child img { width: 120px; }

/* ==========================================================================
   BOTONES FLOTANTES
   ========================================================================== */
.floats { position: fixed; right: 22px; bottom: 22px; z-index: 950; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; font-size: 1.5rem; color: #fff;
  box-shadow: var(--shadow-lg); transition: all .3s var(--ease);
}
.fab--wa { background: #25d366; position: relative; }
.fab--wa::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.fab--wa:hover { transform: scale(1.06); }
.wa.open .fab--wa::before { animation-play-state: paused; opacity: 0; }

@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
.fab--top {
  width: 46px; height: 46px; font-size: 1.05rem; background: var(--ink); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.fab--top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.fab--top:hover { background: var(--accent); color: var(--accent-ink); }

.wa { position: relative; }
.wa__list {
  position: absolute; right: 0; bottom: 72px; width: 280px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; display: flex; flex-direction: column; gap: 4px;
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.97); transform-origin: bottom right;
  transition: all .25s var(--ease);
}
.wa.open .wa__list { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa__item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius-sm); }
.wa__item:hover { background: var(--bg-soft); }
.wa__item .ic { width: 38px; height: 38px; border-radius: 50%; background: #e9fbf0; color: #25d366; display: grid; place-items: center; flex-shrink: 0; }
.wa__item .tx b { display: block; font-size: .88rem; color: var(--ink); }
.wa__item .tx small { color: var(--muted); font-size: .78rem; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: all .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .about__grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .soon-card { grid-template-columns: 1fr; }
  .soon-card__media { order: -1; }
}

@media (max-width: 640px) {
  .value-grid, .product-grid, .product-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 22px; }
  .fab { width: 52px; height: 52px; font-size: 1.3rem; }
  .wa__list { width: 250px; right: -6px; }
}
