:root {
  --fondo: #0b0d12;
  --fondo-2: #13161d;
  --tarjeta: #181c25;
  --borde: #2a2f3d;
  --texto: #f2f3f7;
  --texto-suave: #9aa3b5;
  --acento: #ffc359;
  --acento-2: #ff8d56;
  --whatsapp: #25d366;
  --radio: 18px;
  --topbar-bg: rgba(11, 13, 18, 0.85);
  color-scheme: dark;
}

html[data-tema="claro"] {
  --fondo: #faf6ee;
  --fondo-2: #f1ead9;
  --tarjeta: #ffffff;
  --borde: #e6ddc9;
  --texto: #211e18;
  --texto-suave: #6d6a60;
  --topbar-bg: rgba(250, 246, 238, 0.86);
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--fondo);
  color: var(--texto);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html, body { overflow-x: clip; }

main { flex: 1 0 auto; }
footer { margin-top: auto; }

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

.wrap {
  width: calc(100% - 40px);
  max-width: 1140px;
  margin-inline: auto;
}

h1, h2, h3, .logo, .precio {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borde);
}

.topbar-in {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 22px;
  font-weight: 800;
  color: var(--texto);
  text-decoration: none;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.logo span {
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 4px;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav a:hover { color: var(--texto); }

.nav a.activo { color: var(--texto); position: relative; }

.nav a.activo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
}

.ig-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.ig-link:hover { color: var(--acento-2); }
.ig-link svg { width: 19px; height: 19px; }

.btn-tema {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: transparent;
  color: var(--texto-suave);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-tema:hover {
  color: var(--acento-2);
  border-color: var(--acento-2);
  transform: rotate(12deg);
}

.btn-tema svg { width: 18px; height: 18px; }

.back-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.back-link:hover { color: var(--texto); }
.back-link svg { width: 16px; height: 16px; }

.btn-menu {
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--borde);
  background: transparent;
  color: var(--texto-suave);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.btn-menu:hover { color: var(--acento-2); border-color: var(--acento-2); }
.btn-menu svg { width: 20px; height: 20px; }

@media (max-width: 700px) {
  .btn-menu { display: grid; margin-left: auto; }

  
  .btn-tema { margin-left: 10px; }

  
  .topbar-in {
    justify-content: flex-start;
    gap: 10px;
    height: 56px;
  }

  .logo { font-size: 20px; }
  .logo-img { height: 30px; }

  
  .section { padding-top: 36px; }
  .section-primera { padding-top: 26px; }
  .filtro-precio { justify-content: center; }
  .cta-band { margin: 32px auto 48px; }
  .footer { padding: 24px 0 14px; }
  .footer-social-centro { padding-bottom: 14px; }
  .footer-copy { padding-top: 12px; }

  
  .beneficios-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }

  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: var(--fondo-2);
    border-bottom: 1px solid var(--borde);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
    padding: 6px 22px 12px;
  }

  .nav.abierto { display: flex; }

  .nav a {
    padding: 13px 4px;
    font-size: 16px;
    border-bottom: 1px dashed var(--borde);
  }

  .nav a:last-child { border-bottom: none; }

  .nav a.activo { color: var(--acento-2); }

  .nav a.activo::after { display: none; }
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acento);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  max-width: 720px;
}

.grad {
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 18px;
  max-width: 560px;
  color: var(--texto-suave);
  font-size: 17px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin-top: 30px;
  color: var(--texto-suave);
  font-size: 14px;
}

.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  color: #3a2005;
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-wa {
  color: #062e17;
  background: var(--whatsapp);
}

.btn-wa:hover { transform: translateY(-2px); }

.btn-ghost {
  color: var(--texto);
  background: transparent;
  border: 1px solid var(--borde);
}

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

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.section { padding: 56px 0 8px; scroll-margin-top: 80px; }

.section-primera { padding-top: 48px; }

.section-head { margin-bottom: 30px; text-align: center; }

.section-head h2,
.about h2 {
  font-size: clamp(30px, 4.6vw, 42px);
  font-weight: 800;
}

.section-head h2 {
  text-shadow: 0 0 30px rgba(255, 195, 89, 0.35);
}

html[data-tema="claro"] .section-head h2 {
  text-shadow: 0 0 34px rgba(255, 141, 86, 0.25);
}

.section-head p,
.about > p { color: var(--texto-suave); margin: 8px auto 0; max-width: 640px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 195, 89, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--fondo-2);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.card-body h3 { font-size: 19px; font-weight: 700; }

.card-categoria {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acento-2);
}

.card-cab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.badge-estado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-estado .punto { width: 7px; height: 7px; border-radius: 50%; flex: none; }

.badge-estado.ok {
  color: #16a34a;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
}
.badge-estado.ok .punto { background: #22c55e; }

.badge-estado.mal {
  color: #dc2626;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
}
.badge-estado.mal .punto { background: #ef4444; }

html[data-tema="claro"] .badge-estado.ok { color: #15803d; }
html[data-tema="claro"] .badge-estado.mal { color: #b91c1c; }

.precio {
  font-size: 21px;
  font-weight: 800;
  color: var(--texto);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.chips li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 195, 89, 0.09);
  border: 1px solid rgba(255, 195, 89, 0.22);
  color: var(--texto-suave);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  max-width: 100%;
}

.chips svg { width: 13px; height: 13px; flex: none; color: var(--acento-2); }

.card-cta {
  margin-top: auto;
  padding-top: 4px;
  color: var(--acento-2);
  font-size: 14px;
  font-weight: 600;
}

.card-cta::after { content: " \203A"; font-size: 18px; }

#galeria-vacia {
  color: var(--texto-suave);
  padding: 40px 0;
  text-align: center;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--fondo-2);
  border-radius: 8px;
}

html[data-tema="claro"] .skeleton { background: #ece4d2; }

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 141, 86, 0.1), transparent);
  animation: brillo 1.4s infinite;
}

@keyframes brillo { to { transform: translateX(100%); } }

.skeleton.barra { margin-bottom: 10px; }

.esqueleto-card { pointer-events: none; }

.esqueleto-card .card-img { border-radius: 0; background: var(--fondo-2); }

.esqueleto-card .skeleton.barra:last-child { margin-bottom: 0; }

.filtro-precio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.filtro-titulo { color: var(--texto-suave); font-size: 14px; font-weight: 600; }

.filtro-btn {
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--texto-suave);
  border: 1px solid var(--borde);
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.filtro-btn:hover { color: var(--texto); border-color: var(--texto-suave); }

.filtro-btn.activo {
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  border-color: transparent;
  color: #3a2005;
}

.filtro-max {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--texto-suave);
  font-size: 13.5px;
  font-weight: 600;
}

.filtro-max input {
  font: inherit;
  width: 135px;
  padding: 8px 12px;
  background: var(--tarjeta);
  color: var(--texto);
  border: 1px solid var(--borde);
  border-radius: 999px;
}

.filtro-max input:focus { outline: none; border-color: var(--acento-2); }

.filtro-borrar {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.filtro-cantidad { color: var(--texto-suave); font-size: 13.5px; font-weight: 600; }

.nosotros-titulo {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  text-align: center;
  margin: 6px 0 2px;
}

.nosotros-subtitulo {
  text-align: center;
  font-size: clamp(19px, 3vw, 25px);
  font-weight: 700;
  color: var(--texto);
  margin-bottom: 26px;
}

.grid-beneficios { margin-bottom: 30px; }

.about {
  margin-top: 34px;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
}

.about p {
  margin: 18px auto;
  color: var(--texto);
  max-width: 760px;
  font-size: 16.5px;
  line-height: 1.75;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin: 18px auto;
  max-width: 760px;
}

.beneficio {
  background: linear-gradient(135deg, rgba(255, 195, 89, 0.1), rgba(255, 141, 86, 0.05));
  border: 1.5px solid rgba(255, 166, 50, 0.719);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--texto);
  text-align: center;
}

.about strong.destacado,
.beneficio strong.destacado {
  color: var(--acento);
  font-weight: 700;
}

.nosotros-imagen-zona {
  margin: 6px 0 34px;
  text-align: center;
}

.nosotros-imagen {
  display: inline-block;
  width: 100%;
  max-width: 675px;
  border-radius: var(--radio);
}

.grid-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.review {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estrellas { color: #fbbf24; font-size: 16px; letter-spacing: 2px; }

.review-foto {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borde);
}

.review-foto img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.review p { color: var(--texto-suave); font-size: 15px; flex: 1; }

.review-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #0a0c10;
  flex: none;
}

.review-autor strong { font-size: 14px; display: block; }
.review-autor small { color: var(--texto-suave); font-size: 12px; }

.lista-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.faq-item[open] { border-color: rgba(255, 141, 86, 0.45); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icono {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 195, 89, 0.15);
}

.faq-icono::before,
.faq-icono::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--acento-2);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.faq-icono::before { width: 11px; height: 2px; transform: translate(-50%, -50%); }
.faq-icono::after { width: 2px; height: 11px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-icono::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] .faq-icono { background: var(--acento-2); }
.faq-item[open] .faq-icono::before,
.faq-item[open] .faq-icono::after { background: #3a2005; }

.faq-respuesta {
  padding: 0 20px 18px;
  color: var(--texto-suave);
  font-size: 15px;
  white-space: pre-line;
}

.faq-vacio { color: var(--texto-suave); padding: 30px 0; text-align: center; }

.form-embed-card {
  background: #ffffff;
  border: 1px solid var(--borde);
  border-radius: calc(var(--radio) + 4px);
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.form-embed-card iframe {
  display: block;
  width: 100%;
  height: 1150px;
  border: 0;
}

@media (max-width: 560px) {
  .form-embed-card iframe { height: 1250px; }
}

.form-opinion-alt {
  text-align: center;
  color: var(--texto-suave);
  font-size: 14.5px;
  margin-top: 18px;
}

.form-opinion-alt a {
  color: var(--acento-2);
  font-weight: 600;
  text-decoration: none;
}

.form-opinion-alt a:hover { text-decoration: underline; }

.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 195, 89, 0.3), transparent 62%),
    linear-gradient(135deg, rgba(255, 195, 89, 0.1), rgba(255, 141, 86, 0.16)),
    var(--tarjeta);
  border: 1px solid rgba(255, 141, 86, 0.5);
  border-radius: calc(var(--radio) + 6px);
  padding: clamp(34px, 6vw, 60px);
  margin: 48px auto 72px;
}

.cta-band h2 { font-size: clamp(24px, 4vw, 32px); }

html[data-tema="oscuro"] .cta-band h2 {
  background: linear-gradient(90deg, #ffd98a, #ff9d6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-band p { color: var(--texto-suave); margin: 12px auto 24px; max-width: 680px; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  color: #3a2005;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cta-badge svg { width: 14px; height: 14px; }

.cta-band .btn-wa {
  padding: 16px 34px;
  font-size: 16px;
}

.cta-band.simple {
  background: radial-gradient(circle at 50% 0%, rgba(255, 141, 86, 0.22), rgba(255, 195, 89, 0.05)), var(--tarjeta);
  border: 1px solid var(--borde);
  box-shadow: none;
}

html[data-tema="oscuro"] .cta-band.simple h2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--texto);
}

.cta-band.simple .btn-wa {
  padding: 13px 24px;
  font-size: 15px;
}

.footer {
  border-top: 1px solid var(--borde);
  padding: 32px 0 20px;
  background: var(--fondo-2);
}

.footer-in {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 26px 48px;
  padding-bottom: 16px;
}

.footer-tagline {
  color: var(--texto-suave);
  font-size: 14px;
  margin-top: 8px;
  max-width: 320px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--texto-suave); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--texto); }

.footer-social { display: flex; gap: 10px; margin-left: auto; }

.footer-social-centro {
  margin-left: 0;
  justify-content: center;
  gap: 12px;
  padding-bottom: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--borde);
  color: var(--texto-suave);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover { color: var(--acento-2); border-color: var(--acento-2); }
.footer-social svg { width: 18px; height: 18px; }

.footer-copy {
  border-top: 1px solid var(--borde);
  padding-top: 16px;
  color: var(--texto-suave);
  font-size: 13px;
}

.footer-simple { padding-top: 28px; }
.footer-simple .footer-copy { border-top: none; text-align: center; }

.float-wa {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: #062e17;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease;
}

.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }

.juegos-seccion { margin-bottom: 56px; }

.juegos-seccion h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--borde);
  text-align: center;
}

.juegos-nota {
  color: var(--texto-suave);
  font-size: 13px;
  text-align: center;
  margin-bottom: 18px;
}

.juegos-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.juego-barras-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 16px;
  padding: 16px 18px;
}

.juego-barras-icono {
  width: 92px;
  flex: none;
  display: grid;
  place-items: center;
}

.juego-logo {
  max-width: 92px;
  max-height: 64px;
  object-fit: contain;
}

.juego-icono {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  color: #0b0d12;
  letter-spacing: 0.02em;
}

.juego-barras-datos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.juego-titulo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.barra-fila {
  display: grid;
  grid-template-columns: 110px 1fr 86px;
  gap: 12px;
  align-items: center;
}

.barra-info { display: flex; flex-direction: column; line-height: 1.25; }

.barra-res { font-size: 13px; font-weight: 700; }

.barra-calidad {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--texto-suave);
  text-transform: uppercase;
}

.barra-pista {
  height: 16px;
  border-radius: 999px;
  background: var(--fondo-2);
  border: 1px solid var(--borde);
  overflow: hidden;
}

.barra-relleno {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.barra-fps {
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  font-family: "Inter", sans-serif;
}

.juego-categoria {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

@media (max-width: 560px) {
  .juego-barras-card { flex-direction: column; align-items: stretch; gap: 12px; }
  .juego-barras-icono { width: 100%; }
  .barra-fila { grid-template-columns: 76px 1fr 72px; gap: 8px; }
  .barra-fps { font-size: 14px; }
}

.crumbs {
  padding: 26px 0 20px;
  color: var(--texto-suave);
  font-size: 14px;
}

.crumbs a { color: var(--texto-suave); text-decoration: none; }
.crumbs a:hover { color: var(--acento-2); }
.crumbs span { color: var(--texto); }

.detalle-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.img-main {
  border-radius: var(--radio);
  overflow: hidden;
  border: 1px solid var(--borde);
  background: var(--fondo-2);
  aspect-ratio: 1 / 1;
}

.img-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 28px;
  cursor: zoom-out;
}

#lightbox[hidden] { display: none; }

#lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  border-radius: var(--radio);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-cerrar {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lightbox-cerrar:hover { background: var(--acento-2); color: #3a2005; }

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumbs button {
  width: 74px; height: 74px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--borde);
  background: var(--fondo-2);
  cursor: pointer;
}

.thumbs button.activo { border-color: var(--acento); }

.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.info-detalle h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 10px 0 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
}

.pill.ok {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.09);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.pill.ok::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
}

.info-detalle .precio {
  font-size: 40px;
  margin-top: 16px;
}

.precios-fila {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.precios-fila .precio-box { flex: 1 1 0; min-width: 200px; }

.precio-box {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px 12px;
  border-radius: 16px;
}

.info-detalle .precio-box .precio {
  font-size: 34px;
  margin-top: 0;
  width: fit-content;
}

.precio-box.lista {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
}

.info-detalle .precio-box.lista .precio { color: var(--texto); }

.precio-box.especial {
  background: linear-gradient(90deg, rgba(255, 195, 89, 0.16), rgba(255, 141, 86, 0.08));
  border: 1px solid rgba(255, 141, 86, 0.45);
}

.info-detalle .precio-box.especial .precio {
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.precio-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.precio-box.especial .precio-tag { color: var(--acento-2); }

.precio.precio-oferta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.precio-oferta .precio-tachado {
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: line-through;
  color: var(--texto-suave);
}

.precio-oferta .precio-nuevo {
  font-size: 22px;
  font-weight: 800;
  color: var(--acento);
}

.acciones { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

.acciones .btn { flex: 1 1 auto; white-space: nowrap; }

.btn-envio {
  cursor: default;
  background: linear-gradient(90deg, #ff8d56, #f0654f);
  color: #fff;
}

.simulador {
  margin-top: 26px;
  background: var(--fondo-2);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 20px;
}

.simulador-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.simulador.sacado .cuota-cuerpo { display: none; }

.cuota-limpiar {
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  flex: none;
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
}

.cuota-limpiar:hover {
  background: rgba(248, 113, 113, 0.2);
  color: #ef4444;
  transform: translateY(-1px);
}

.simulador-titulo { font-weight: 800; font-size: 16px; }

.simulador-sub {
  color: var(--texto-suave);
  font-size: 13.5px;
  margin-top: 4px;
}

.cuota-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cuota-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 195, 89, 0.85), rgba(255, 141, 86, 0.85));
  outline: none;
  cursor: pointer;
}

.cuota-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acento), var(--acento-2));
  border: 3px solid #3a2005;
  cursor: grab;
}

.cuota-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }

.cuota-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acento), var(--acento-2));
  border: 3px solid #3a2005;
  cursor: grab;
}

.cuota-btn {
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  min-width: 54px;
  padding: 9px 12px;
  text-align: center;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--texto-suave);
  border: 1px solid var(--borde);
  transition: transform 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.cuota-btn:hover { border-color: var(--acento-2); color: var(--acento-2); transform: translateY(-1px); }

.cuota-btn.activo {
  background: linear-gradient(90deg, var(--acento), var(--acento-2));
  border-color: transparent;
  color: #3a2005;
}

.cuota-resultado {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.cuota-resultado[hidden] { display: none; }

.cuota-resultado > div {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cuota-resultado span { color: var(--texto-suave); font-size: 12.5px; }
.cuota-resultado strong { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }

.simulador-nota {
  color: var(--texto-suave);
  font-size: 12.5px;
  margin-top: 14px;
}

@media (max-width: 480px) {
  .cuota-resultado { grid-template-columns: 1fr; }
}

.detalle-bloques {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 52px 0 64px;
}

.detalle-bloques h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--borde);
  text-align: center;
}

.tabla-specs { list-style: none; }

.tabla-specs li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--borde);
  font-size: 15px;
}

.tabla-specs span { color: var(--texto-suave); }
.tabla-specs strong { font-weight: 600; text-align: right; }

.descripcion-larga { color: var(--texto-suave); white-space: pre-line; }

.aviso {
  text-align: center;
  padding: 70px 0;
  color: var(--texto-suave);
}

.aviso .btn { margin-top: 18px; }

.related {
  text-align: center;
  padding-bottom: 64px;
}

@media (max-width: 860px) {
  .detalle-grid { grid-template-columns: 1fr; gap: 28px; }
  .detalle-bloques { grid-template-columns: 1fr; gap: 40px; }
  .section { padding-top: 40px; }
  .hero { padding: 64px 0 52px; }

  
  .crumbs { text-align: center; }
  .info-detalle { text-align: center; }
  .info-detalle .precio-box .precio { margin-inline: auto; }

  
  .precios-fila { flex-direction: column; }
  .precios-fila .precio-box { min-width: 0; }

  
  .acciones { flex-direction: column; }
  .acciones .btn { width: 100%; }
  .acciones { justify-content: center; }
  .simulador-top { justify-content: center; flex-wrap: wrap; }
  .cuota-btns { justify-content: center; }
  .cuota-resultado > div { align-items: center; text-align: center; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .skeleton::after { animation: none; }
}
