/* ==========================================================================
   La Casa del Deportista — estilos base
   Sistema: 1 fuente (Outfit variable), 1 acento (dorado), verde reservado
   exclusivamente para WhatsApp. Radios: pill en botones/chips, 20px en
   tarjetas e imágenes. Tema: claro en todo el sitio, con el hero como único
   bloque oscuro intencional (coincide con el arte real del logo).
   ========================================================================== */

@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #f5f3ee;
  --ink-soft: #b7b2a6;
  --paper: #1c1a1e;
  --paper-raised: #242226;
  --line: rgba(255, 255, 255, 0.12);

  --hero-bg: #17151a;
  --hero-ink: #f3f1ea;
  --hero-ink-soft: #c9c5b8;

  --gold: #c8952c;
  --gold-light: #e6c876;
  --gold-ink: #e6c876;

  --whatsapp: #25d366;
  --whatsapp-ink: #ffffff;

  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-chip: 999px;

  --shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 12px 28px -14px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px -12px rgba(200, 149, 44, 0.45);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --container: 1220px;
  --nav-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, p {
  margin: 0;
}

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

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

section {
  padding: 44px 0;
  scroll-margin-top: var(--nav-h);
}

@media (min-width: 1024px) {
  section { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-head p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 60ch;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Reduced motion: collapse everything to instant, no exceptions */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Reveal on scroll (IntersectionObserver driven, class toggled in JS)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 24px;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

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

.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.55);
}

@media (hover: hover) and (pointer: fine) {
  .btn-whatsapp:hover {
    background: #21bd5b;
  }
}

.btn-ghost-dark {
  background: transparent;
  color: var(--hero-ink);
  border: 1px solid rgba(243, 241, 234, 0.28);
  padding: 13px 22px;
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost-dark:hover {
    border-color: rgba(243, 241, 234, 0.55);
    background: rgba(243, 241, 234, 0.06);
  }
}

.btn-small {
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-block {
  width: 100%;
}

@media (min-width: 480px) {
  .btn-block { width: auto; }
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--hero-ink);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(20, 19, 22, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--hero-ink);
  border-bottom-color: var(--line);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 500;
  color: currentColor;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  opacity: 0.82;
  transition: opacity 160ms var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    opacity: 1;
  }
  .nav-links a:hover::after {
    width: 100%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-ig {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: currentColor;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  transition: border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.nav-ig svg { width: 18px; height: 18px; }

@media (hover: hover) and (pointer: fine) {
  .nav-ig:hover { border-color: var(--gold); }
}

.nav-ig:active { transform: scale(0.94); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  background: transparent;
  color: currentColor;
  cursor: pointer;
  padding: 0;
  transition: border-color 160ms var(--ease-out);
}

.nav-toggle svg { width: 20px; height: 20px; }

.nav-toggle .icon-close { display: none; }
.nav-toggle.is-active .icon-menu { display: none; }
.nav-toggle.is-active .icon-close { display: block; }

@media (hover: hover) and (pointer: fine) {
  .nav-toggle:hover { border-color: var(--gold); }
}

.nav-toggle:active { transform: scale(0.94); }

@media (max-width: 1023px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20, 19, 22, 0.97);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms var(--ease-out), opacity 200ms var(--ease-out);
  }

  .nav-links.is-open {
    display: flex;
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
  }

  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    opacity: 1;
  }

  .nav-links a:first-child { border-top: none; }
  .nav-links a::after { display: none; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-ig { display: inline-flex; }
  .nav-toggle { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links { transition: none; }
}

/* ==========================================================================
   Historia
   ========================================================================== */

.historia-body {
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.stat-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}

.stat {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .stat {
    padding: 26px 28px 26px 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: none; }
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-ink);
  letter-spacing: -0.01em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ==========================================================================
   SportFitness — vitrina horizontal
   ========================================================================== */

.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 18px;
  margin: 0 -4px;
  scrollbar-width: thin;
}

.product-scroll::-webkit-scrollbar {
  height: 6px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: var(--radius-pill);
}

.product-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 178px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
}

.product-card-link h3 {
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card-link:hover h3 {
    color: var(--gold-light);
  }
}

.product-card {
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(200, 149, 44, 0.4);
  }
}

.product-card:active {
  transform: scale(0.98);
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}

.product-thumb img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: transform 350ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-thumb img {
    transform: scale(1.08);
  }
}

.product-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.6em;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-ink);
  transition: gap 160ms var(--ease-out);
}

.product-cta svg { width: 14px; height: 14px; }

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-cta { gap: 10px; }
}

.sportfitness-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sportfitness-foot p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.brands-strip {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.brands-strip span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.brands-strip img {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .brands-strip img:hover { opacity: 1; }
}

/* ==========================================================================
   Para quién trabajamos — franja dividida (no tarjetas)
   ========================================================================== */

.audience-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .audience-strip { grid-template-columns: repeat(3, 1fr); }
}

.audience-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .audience-item {
    padding: 8px 28px;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .audience-item:last-child { border-right: none; }
}

.audience-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.audience-item p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* ==========================================================================
   Testimonios
   ========================================================================== */

.testimonios-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.testimonios-rating svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonio-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonio-card p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonio-card footer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.testimonios-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.testimonios-grid .reveal:nth-child(2) { transition-delay: 60ms; }
.testimonios-grid .reveal:nth-child(3) { transition-delay: 120ms; }

.product-scroll .reveal:nth-child(1) { transition-delay: 0ms; }
.product-scroll .reveal:nth-child(2) { transition-delay: 40ms; }
.product-scroll .reveal:nth-child(3) { transition-delay: 80ms; }
.product-scroll .reveal:nth-child(4) { transition-delay: 120ms; }
.product-scroll .reveal:nth-child(5) { transition-delay: 160ms; }
.product-scroll .reveal:nth-child(6) { transition-delay: 0ms; }
.product-scroll .reveal:nth-child(7) { transition-delay: 40ms; }
.product-scroll .reveal:nth-child(8) { transition-delay: 80ms; }

/* ==========================================================================
   Contacto
   ========================================================================== */

.contacto {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
}

.contacto .section-head {
  max-width: 560px;
}

.contacto-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 480px) {
  .contacto-ctas { flex-direction: row; }
}

.contacto-details {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

@media (min-width: 640px) {
  .contacto-details { grid-template-columns: repeat(3, 1fr); }
}

.contacto-detail {
  display: flex;
  gap: 14px;
}

.contacto-detail svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: none;
  margin-top: 2px;
}

.contacto-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.contacto-detail p, .contacto-detail a {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contacto-detail a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: text-decoration-color 160ms var(--ease-out);
}

.contacto-detail a:hover {
  text-decoration-color: var(--gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--hero-bg);
  color: var(--hero-ink-soft);
  padding: 40px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hero-ink);
  font-weight: 700;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.88rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  transition: color 160ms var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-meta {
  font-size: 0.82rem;
  color: rgba(201, 197, 184, 0.65);
}

/* ==========================================================================
   Botón flotante de WhatsApp
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.65);
  transition: transform 160ms var(--ease-out);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

.whatsapp-float:active {
  transform: scale(0.94);
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    transform: scale(1.06);
  }
}

@media (min-width: 1024px) {
  .whatsapp-float {
    right: 28px;
    bottom: 28px;
  }
}

/* ==========================================================================
   Page banner (Nosotros / Productos) — mismo tratamiento oscuro del hero,
   en formato compacto, para que el nav transparente siga funcionando igual
   en todas las páginas.
   ========================================================================== */

.page-banner {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-ink);
  padding: calc(var(--nav-h) + 36px) 0 40px;
}

.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 46vw;
  height: 46vw;
  max-width: 480px;
  max-height: 480px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.page-banner::before {
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(200, 149, 44, 0.22), transparent 70%);
  animation: bannerDrift1 16s ease-in-out infinite;
}

.page-banner::after {
  bottom: -26%;
  right: -6%;
  background: radial-gradient(circle, rgba(230, 200, 118, 0.14), transparent 70%);
  animation: bannerDrift2 20s ease-in-out infinite;
}

@keyframes bannerDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.12); }
}

@keyframes bannerDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, -6%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner::before,
  .page-banner::after {
    animation: none;
  }
}

.page-banner .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-banner .breadcrumb {
  font-size: 0.86rem;
  color: var(--hero-ink-soft);
  margin-bottom: 14px;
}

.page-banner .breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(243, 241, 234, 0.3);
}

.page-banner .breadcrumb a:hover {
  text-decoration-color: var(--gold-light);
}

.page-banner h1 {
  font-size: clamp(1.9rem, 1.5rem + 2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.page-banner p {
  margin-top: 14px;
  color: var(--hero-ink-soft);
  font-size: 1.04rem;
  max-width: 55ch;
  line-height: 1.55;
}

/* ==========================================================================
   Botón primario neutro (navegación interna, no WhatsApp)
   ========================================================================== */

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #2b2820;
  }
}

/* ==========================================================================
   Teaser (resumen en Inicio que enlaza a página completa)
   ========================================================================== */

.teaser {
  text-align: center;
}

.teaser .section-head {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Grid de productos (página Productos, sin scroll horizontal)
   ========================================================================== */

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

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-grid .product-card {
  width: 100%;
}

/* ==========================================================================
   Ubicación: mapa embebido
   ========================================================================== */

.map-frame {
  margin-top: 32px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Preguntas frecuentes
   ========================================================================== */

.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-chevron {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 280ms var(--ease-out);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 65ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer, .faq-chevron {
    transition: none;
  }
}

/* ==========================================================================
   Hero cinematográfico (solo Inicio) — fondo oscuro con canvas ambiental
   fijado por "sticky background" mientras el hero y la vitrina hacen scroll
   encima. Contenido 100% real (marca, WhatsApp, catálogo), sin video ni
   personas de terceros.
   ========================================================================== */

.cinema-wrap {
  position: relative;
  background: #1c1a1e;
}

.cinema-wrap ::selection {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cinema-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  margin-bottom: calc(-100vh);
  margin-bottom: calc(-100dvh);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cinema-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.cinema-hero,
.cinema-capability {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 26px) 0 34px;
  color: #fff;
}

.cinema-hero .container,
.cinema-capability .container {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vh, 96px);
}

.cinema-spacer {
  position: relative;
  z-index: 1;
  height: 46vh;
}

.cinema-top-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 640px) {
  .cinema-top-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cinema-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.cinema-services li {
  font-family: "Outfit", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.cinema-intro {
  max-width: 22rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

@media (min-width: 640px) {
  .cinema-intro { text-align: right; margin-left: auto; }
}

.cinema-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .cinema-bottom-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  border-left: 2px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  font-family: "Outfit", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 22px;
}

.cinema-h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #fff;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.65));
}

.cinema-tagline {
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.cinema-stats {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cinema-stats span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.cinema-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px;
  max-width: 320px;
}

.cinema-card-avatar {
  width: 72px;
  height: 72px;
  flex: none;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.cinema-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cinema-card-text strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.cinema-card-text > span {
  font-family: "Outfit", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.btn-cinema-primary,
.btn-cinema-secondary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 16px;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
  white-space: nowrap;
}

.btn-cinema-primary {
  background: #fff;
  color: #0a0a0a;
  margin-top: 4px;
  align-self: flex-start;
}

.btn-cinema-primary:hover { background: rgba(255, 255, 255, 0.85); }
.btn-cinema-primary:active { transform: scale(0.97); }

.btn-cinema-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.btn-cinema-secondary:hover { background: rgba(255, 255, 255, 0.2); }
.btn-cinema-secondary:active { transform: scale(0.97); }

.btn-cinema-primary svg,
.btn-cinema-secondary svg {
  width: 14px;
  height: 14px;
}

.cinema-cap-left {
  max-width: 34rem;
}

.cinema-cap-body {
  margin-top: 22px;
  max-width: 30rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  line-height: 1.6;
}

.cinema-cap-ctas {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cinema-cap-ctas .btn-cinema-primary,
.cinema-cap-ctas .btn-cinema-secondary {
  padding: 11px 20px;
  font-size: 0.85rem;
  margin-top: 0;
}

.cinema-panel {
  width: 100%;
  max-width: 28rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 22px;
}

.cinema-panel-row {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cinema-panel-row:last-child { border-bottom: none; }

.cinema-panel-index {
  font-family: "Outfit", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  flex: none;
  padding-top: 2px;
}

.cinema-panel-row h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
}

.cinema-panel-row h3 svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  flex: none;
  transition: transform 200ms var(--ease-out), color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cinema-panel-row:hover h3 svg {
    transform: translateX(3px);
    color: #fff;
  }
}

.cinema-panel-row p {
  margin-top: 6px;
  font-size: 0.87rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.reveal-cinema {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: transform;
}

.reveal-cinema.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-cinema { transition-delay: 0ms !important; }
}

/* ==========================================================================
   Página de detalle de producto
   ========================================================================== */

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

@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 56px;
    align-items: start;
  }
}

.product-detail-image {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

.product-detail-info h2 {
  margin-top: 32px;
  font-size: 1.05rem;
  font-weight: 700;
}

.characteristics-list {
  margin-top: 16px;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.characteristics-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.reveal.is-visible .characteristics-list li {
  opacity: 1;
  transform: translateX(0);
}

.characteristics-list li:nth-child(1) { transition-delay: 60ms; }
.characteristics-list li:nth-child(2) { transition-delay: 100ms; }
.characteristics-list li:nth-child(3) { transition-delay: 140ms; }
.characteristics-list li:nth-child(4) { transition-delay: 180ms; }
.characteristics-list li:nth-child(5) { transition-delay: 220ms; }
.characteristics-list li:nth-child(6) { transition-delay: 260ms; }
.characteristics-list li:nth-child(7) { transition-delay: 300ms; }
.characteristics-list li:nth-child(8) { transition-delay: 340ms; }
.characteristics-list li:nth-child(9) { transition-delay: 380ms; }
.characteristics-list li:nth-child(10) { transition-delay: 420ms; }
.characteristics-list li:nth-child(11) { transition-delay: 460ms; }

@media (prefers-reduced-motion: reduce) {
  .characteristics-list li {
    transition-delay: 0ms !important;
  }
}

.characteristics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.product-detail-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Buscador y filtros de catálogo
   ========================================================================== */

.catalog-search {
  position: relative;
  max-width: 420px;
}

.catalog-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  pointer-events: none;
}

.catalog-search input {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 12px 16px 12px 44px;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.catalog-search input::placeholder {
  color: var(--ink-soft);
}

.catalog-search input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.catalog-search input::-webkit-search-cancel-button {
  filter: invert(0.6);
}

.catalog-filters {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sport-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  transition: border-color 160ms var(--ease-out), color 160ms var(--ease-out), background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.filter-chip:active {
  transform: scale(0.95);
}

@media (hover: hover) and (pointer: fine) {
  .filter-chip:hover {
    border-color: rgba(200, 149, 44, 0.5);
    color: var(--ink);
  }
}

.filter-chip.is-active {
  border-color: var(--gold);
  background: rgba(200, 149, 44, 0.12);
  color: var(--gold-light);
}

.catalog-count {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: opacity 200ms var(--ease-out);
}

.catalog-count.is-updating {
  opacity: 0.3;
}

.product-grid {
  margin-top: 16px;
}

.product-grid .product-card.js-filter-reveal {
  animation: filterReveal 420ms var(--ease-out);
}

@keyframes filterReveal {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .product-grid .product-card.js-filter-reveal {
    animation: none;
  }
}

.catalog-empty {
  margin-top: 28px;
  padding: 32px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-card);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.catalog-empty a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
