/* ============================================================
   SacaBola — Landing · estilos vanilla + animaciones
   (Tailwind se carga por CDN; aquí va todo lo personalizado)
   Paleta y efectos calcados de la app: madera + oro + crema.
   ============================================================ */

:root {
  --wood-0: #160d06;
  --wood-1: #1d130a;
  --wood-2: #2a1c0f;
  --gold: #f5b942;
  --mint: #3ddc97;
  --rose: #ff6b9d;
  color-scheme: dark;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--wood-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Ambiente: madera + luces cálidas ---------- */
.app-bg {
  position: relative;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(245, 185, 66, 0.16), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 107, 157, 0.10), transparent 55%),
    radial-gradient(1000px 700px at 50% 120%, rgba(61, 220, 151, 0.08), transparent 60%),
    linear-gradient(180deg, var(--wood-0) 0%, var(--wood-1) 45%, var(--wood-0) 100%);
}
.app-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(96deg,
    rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px,
    transparent 1px, transparent 6px);
  opacity: 0.7;
  z-index: 0;
}
/* Grano de película */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* el contenido va por encima del grano/ambiente */
header, main, footer { position: relative; z-index: 2; }

/* ---------- Glass ---------- */
.glass {
  background: linear-gradient(160deg, rgba(60, 44, 26, 0.55), rgba(28, 19, 10, 0.55));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 236, 190, 0.10);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 0 rgba(255, 236, 190, 0.12);
}
.glass-strong {
  background: linear-gradient(160deg, rgba(42, 28, 15, 0.85), rgba(22, 13, 6, 0.85));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 236, 190, 0.12);
}

/* ---------- Texto degradado oro ---------- */
.text-gold-grad {
  background: linear-gradient(135deg, #fff1cc 0%, #f5b942 45%, #bd7a12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Logo (bola de oro) ---------- */
.logo-ball {
  position: relative;
  background: radial-gradient(circle at 35% 30%, #fff1cc, #f5b942 45%, #a8690f);
  box-shadow: 0 0 0 1px rgba(245, 185, 66, 0.25), 0 8px 40px -8px rgba(245, 185, 66, 0.45);
}
.logo-ball::after {
  content: '';
  position: absolute;
  left: 6px; top: 4px;
  height: 7px; width: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(1px);
}

/* ---------- Header / nav ---------- */
#header.scrolled {
  background: linear-gradient(160deg, rgba(42, 28, 15, 0.85), rgba(22, 13, 6, 0.85));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid rgba(255, 236, 190, 0.10);
}
.navlink {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e6d6b3;
  transition: background 0.2s, color 0.2s;
}
.navlink:hover { background: rgba(243, 233, 210, 0.08); color: #ffdd85; }
.mobile-link {
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  font-weight: 600;
  color: #e6d6b3;
  transition: background 0.2s;
}
.mobile-link:hover { background: rgba(243, 233, 210, 0.08); }

/* ---------- Botón oro ---------- */
.btn-gold {
  position: relative;
  display: inline-block;
  background: linear-gradient(to bottom, #ffdd85, #e29b1f);
  border: 1px solid #ffcb5c;
  box-shadow: 0 0 0 1px rgba(245, 185, 66, 0.25), 0 10px 30px -10px rgba(245, 185, 66, 0.6);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s;
  overflow: hidden;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 0 0 1px rgba(245,185,66,0.35), 0 16px 40px -12px rgba(245,185,66,0.7); }
.btn-gold:active { transform: translateY(0) scale(0.98); }

/* brillo de barrido en botones */
.shine-sweep::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  background-size: 200% 100%;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.shine-sweep:hover::after { transform: translateX(100%); }

/* ---------- Badges / detalles ---------- */
.badge-live {
  border-radius: 999px;
  border: 1px solid rgba(61, 220, 151, 0.3);
  background: rgba(61, 220, 151, 0.10);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7df0c0;
}
.dot-live {
  position: relative;
  height: 8px; width: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(61, 220, 151, 0.9);
}
.dot-live::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 2px solid rgba(61, 220, 151, 0.7);
  animation: ping 1.7s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.tick {
  display: grid;
  place-items: center;
  height: 1.4rem; width: 1.4rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(61, 220, 151, 0.15);
  color: #7df0c0;
  font-size: 0.8rem;
  font-weight: 800;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f5b942;
}
.section-title {
  margin-top: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: #f7f0df;
}

/* ---------- Bolas decorativas del hero ---------- */
.deco-ball {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 3.4rem; width: 3.4rem;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1d130a;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
  opacity: 0.85;
}
.deco-ball::after {
  content: '';
  position: absolute;
  left: 22%; top: 18%;
  height: 22%; width: 30%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(1px);
}
.ball-gold { background: radial-gradient(circle at 35% 30%, #fff1cc, #f5b942 50%, #bd7a12); }
.ball-mint { background: radial-gradient(circle at 35% 30%, #c8ffe9, #3ddc97 50%, #1fbf7d); }
.ball-rose { background: radial-gradient(circle at 35% 30%, #ffd6e6, #ff6b9d 50%, #f23d7c); }
.ball-blue { background: radial-gradient(circle at 35% 30%, #d6ecff, #3f8fe0 55%, #2b6cbf); }
/* En móvil conservamos solo las 2 bolas superiores, más pequeñas, para no estorbar el formulario */
@media (max-width: 1023px) {
  .deco-ball { height: 2.5rem; width: 2.5rem; font-size: 0.85rem; opacity: 0.45; }
  .ball-mint, .ball-blue { display: none; }
}

/* ---------- Formulario ---------- */
.field { position: relative; }
.field-ic {
  position: absolute;
  left: 0.9rem; top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  opacity: 0.8;
  pointer-events: none;
}
.field input {
  width: 100%;
  height: 3rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 236, 190, 0.12);
  background: linear-gradient(160deg, rgba(60, 44, 26, 0.55), rgba(28, 19, 10, 0.55));
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: 0 1rem 0 2.6rem;
  color: #f7f0df;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: #8d7c61; }
.field input:focus { border-color: rgba(245, 185, 66, 0.5); box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.15); }
.social {
  height: 3rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 236, 190, 0.10);
  background: rgba(60, 44, 26, 0.4);
  color: #f3e9d2;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border 0.2s, transform 0.15s;
}
.social:hover { border-color: rgba(245, 185, 66, 0.3); transform: translateY(-1px); }

/* ---------- Marquee ---------- */
.marquee { animation: marquee 28s linear infinite; }
.marquee span { white-space: nowrap; }

/* ---------- Tarjetas: pasos / features / trust ---------- */
.step, .feature, .trust {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 236, 190, 0.10);
  background: linear-gradient(160deg, rgba(60, 44, 26, 0.45), rgba(28, 19, 10, 0.5));
  padding: 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step:hover, .feature:hover, .trust:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 185, 66, 0.3);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.8);
}
.step-num {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(245, 185, 66, 0.18);
}
.step-ic, .feature-ic, .trust-ic {
  display: grid;
  place-items: center;
  height: 3.2rem; width: 3.2rem;
  border-radius: 0.9rem;
  background: rgba(245, 185, 66, 0.10);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.feature-ic.glow-gold { box-shadow: 0 0 0 1px rgba(245,185,66,0.25), 0 8px 40px -8px rgba(245,185,66,0.45); }
.feature-ic.glow-mint { box-shadow: 0 0 0 1px rgba(61,220,151,0.25), 0 8px 40px -8px rgba(61,220,151,0.45); background: rgba(61,220,151,0.10); }
.feature-ic.glow-rose { box-shadow: 0 0 0 1px rgba(255,107,157,0.25), 0 8px 40px -8px rgba(255,107,157,0.45); background: rgba(255,107,157,0.10); }
.step-title, .feature-title, .trust-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #f7f0df;
}
.step-text, .feature-text, .trust-text { margin-top: 0.4rem; font-size: 0.92rem; color: #b9a888; line-height: 1.5; }

/* ---------- Métodos de pago ---------- */
.pay {
  display: grid;
  place-items: center;
  height: 3.6rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 236, 190, 0.10);
  background: rgba(22, 13, 6, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  color: #e6d6b3;
  transition: transform 0.18s, border-color 0.18s, color 0.18s;
}
.pay:hover { transform: translateY(-2px); border-color: rgba(245, 185, 66, 0.35); color: #ffdd85; }

/* ---------- FAQ (details) ---------- */
.faq {
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 236, 190, 0.10);
  background: rgba(28, 19, 10, 0.5);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  color: #f3e9d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #f5b942;
  transition: transform 0.25s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0; padding: 0 1.2rem 1.2rem; color: #b9a888; line-height: 1.55; }
.faq[open] p { animation: riseIn 0.35s ease-out both; }

/* ---------- Footer ---------- */
.footer-h { font-weight: 700; color: #f3e9d2; font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-list a { color: #b9a888; font-size: 0.9rem; transition: color 0.2s; }
.footer-list a:hover { color: #ffdd85; }

/* ============================================================
   Animaciones
   ============================================================ */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes riseIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes popIn { 0% { transform: scale(0.4) rotate(-12deg); opacity: 0; } 60% { transform: scale(1.12) rotate(4deg); opacity: 1; } 100% { transform: scale(1) rotate(6deg); opacity: 1; } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 75%, 100% { transform: scale(2.4); opacity: 0; } }

.float { animation: float 6s ease-in-out infinite; }
.pop-in { animation: popIn 0.6s cubic-bezier(.2, 1.4, .4, 1) both; }
.float2 { animation: float 8.5s ease-in-out infinite; }
.pulse-glow { animation: pulseGlow 2.2s ease-in-out infinite; }
.spin-slow { animation: spinSlow 16s linear infinite; }

/* Reveal al hacer scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2, .7, .3, 1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Accesibilidad: reduce-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Focus visible ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 8px; }

/* ---------- Scrollbar cálida ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #4c361f, #2a1c0f); border-radius: 999px; border: 2px solid rgba(0, 0, 0, 0.2); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #664a2d, #3a2816); }
::selection { background: rgba(245, 185, 66, 0.35); color: #fff; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============================================================
   Páginas legales (terminos, privacidad, pagos, aml-kyc, ...)
   ============================================================ */
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b9a888;
  transition: color 0.2s;
}
.legal-back:hover { color: #ffdd85; }

.legal-hero {
  border-bottom: 1px solid rgba(255, 236, 190, 0.1);
}
.legal-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  color: #f7f0df;
}
.legal-meta { margin-top: 0.6rem; font-size: 0.85rem; color: #8d7c61; }

.legal-disclaimer {
  display: flex;
  gap: 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(245, 185, 66, 0.25);
  background: rgba(245, 185, 66, 0.08);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: #e6d6b3;
}
.legal-disclaimer strong { color: #ffdd85; }

/* TOC */
.legal-toc { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.legal-toc a { color: #b9a888; font-size: 0.9rem; transition: color 0.2s; }
.legal-toc a:hover { color: #ffdd85; }

/* Prosa legal */
.legal-prose { color: #c9b695; line-height: 1.7; }
.legal-prose section { scroll-margin-top: 6rem; }
.legal-prose h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #f7f0df;
  margin: 2.2rem 0 0.7rem;
}
.legal-prose h2 .num { color: #f5b942; margin-right: 0.5rem; }
.legal-prose h3 { font-weight: 700; color: #f3e9d2; font-size: 1.05rem; margin: 1.3rem 0 0.4rem; }
.legal-prose p { margin: 0 0 0.9rem; }
.legal-prose ul, .legal-prose ol { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-prose li { margin-bottom: 0.4rem; }
.legal-prose a { color: #ffcb5c; text-decoration: underline; text-underline-offset: 2px; }
.legal-prose strong { color: #f3e9d2; }
.legal-prose hr { border: none; border-top: 1px solid rgba(255, 236, 190, 0.1); margin: 2rem 0; }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 0.5rem 0 1.2rem; font-size: 0.92rem; }
.legal-prose th, .legal-prose td { text-align: left; padding: 0.6rem 0.8rem; border: 1px solid rgba(255, 236, 190, 0.1); }
.legal-prose th { background: rgba(60, 44, 26, 0.4); color: #f3e9d2; font-weight: 700; }

/* ============================================================
   Mejoras: hero, bolitas, secciones claras, logos de pago y compra
   ============================================================ */

/* ---------- Hero: fondo más rico ---------- */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: '';
  position: absolute;
  inset: -8% -6% 0 -6%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(62% 55% at 50% -10%, rgba(245, 185, 66, 0.30), transparent 62%),
    radial-gradient(42% 42% at 86% 8%, rgba(255, 107, 157, 0.20), transparent 60%),
    radial-gradient(48% 48% at 10% 28%, rgba(61, 220, 151, 0.16), transparent 60%);
}
/* aros tipo "mesa de juego" detrás del formulario */
.hero::after {
  content: '';
  position: absolute;
  z-index: -2;
  width: 720px; height: 720px;
  right: -200px; top: -150px;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 57%, rgba(245, 185, 66, 0.08) 58%, transparent 61%),
    radial-gradient(circle, transparent 69%, rgba(255, 236, 190, 0.05) 70%, transparent 73%);
  animation: spinSlow 40s linear infinite;
}
@media (max-width: 1023px) { .hero::after { display: none; } }

/* ---------- Bolitas flotantes mejoradas ---------- */
.deco-ball {
  box-shadow: 0 16px 34px -8px rgba(0, 0, 0, 0.65),
    0 0 30px -2px var(--ball-glow, rgba(245, 185, 66, 0.5));
  opacity: 0.95;
}
.ball-gold { --ball-glow: rgba(245, 185, 66, 0.55); }
.ball-mint { --ball-glow: rgba(61, 220, 151, 0.5); }
.ball-rose { --ball-glow: rgba(255, 107, 157, 0.5); }
.ball-blue { --ball-glow: rgba(63, 143, 224, 0.5); }
.ball-purple {
  background: radial-gradient(circle at 35% 30%, #e9d6ff, #8a5cf0 55%, #5b39b0);
  --ball-glow: rgba(138, 92, 240, 0.5);
}
.ball-xl { height: 4.6rem; width: 4.6rem; font-size: 1.4rem; }
.ball-sm { height: 2.5rem; width: 2.5rem; font-size: 0.8rem; }
.float3 { animation: float 7.5s ease-in-out infinite; }
.float4 { animation: float 9.5s ease-in-out infinite; }

/* ---------- Secciones de fondo claro (alternancia) ---------- */
.band-light {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f6eed9 0%, #efe4c8 60%, #eaddbf 100%);
  color: #5b4a32;
}
/* costuras suaves arriba/abajo para integrar con las secciones oscuras */
.band-light::before,
.band-light::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  pointer-events: none;
}
.band-light::before { top: 0; background: linear-gradient(180deg, rgba(22, 13, 6, 0.30), transparent); }
.band-light::after { bottom: 0; background: linear-gradient(0deg, rgba(22, 13, 6, 0.26), transparent); }

.band-light .eyebrow { color: #bd7a12; }
.band-light .section-title { color: #2a1c0f; }
.band-light .text-gold-grad {
  background: linear-gradient(135deg, #e29b1f, #bd7a12 55%, #8a5a0c 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.band-light p { color: #6b5840; }
.band-light .text-cream-100,
.band-light .text-cream-200,
.band-light .text-cream-300,
.band-light .text-cream-400,
.band-light .text-cream-500 { color: #6b5840 !important; }
.band-light strong { color: #2a1c0f; }
.band-light .text-mint-300 { color: #1fbf7d !important; }
.band-light .text-gold-300,
.band-light a.text-gold-300 { color: #bd7a12 !important; }
.band-light .text-gold-200 { color: #bd7a12 !important; }
.band-light .tick { background: rgba(31, 191, 125, 0.18); color: #1a9c66; }

/* tarjetas dentro de banda clara */
.band-light .step,
.band-light .feature,
.band-light .trust,
.band-light .faq,
.band-light .glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 240, 223, 0.92));
  border: 1px solid rgba(120, 90, 50, 0.18);
  box-shadow: 0 16px 36px -24px rgba(74, 48, 22, 0.55);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.band-light .step:hover,
.band-light .feature:hover,
.band-light .trust:hover { border-color: rgba(189, 122, 18, 0.5); }
.band-light .step-title,
.band-light .feature-title,
.band-light .trust-title { color: #2a1c0f; }
.band-light .step-text,
.band-light .feature-text,
.band-light .trust-text { color: #6b5840; }
.band-light .step-num { color: rgba(189, 122, 18, 0.22); }
.band-light .step-ic,
.band-light .feature-ic,
.band-light .trust-ic { background: rgba(245, 185, 66, 0.16); }
.band-light .faq summary { color: #2a1c0f; }
.band-light .faq summary::after { color: #bd7a12; }
.band-light .faq p { color: #6b5840; }

/* ---------- Logos de métodos de pago ---------- */
.pay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 5rem;
}
.paylogo {
  display: grid;
  place-items: center;
  height: 3.6rem;
  min-width: 5.4rem;
  padding: 0.4rem 0.95rem;
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.paylogo img {
  max-height: 2.8rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
/* insignia de respaldo (si el logo real no carga) */
.paylogo-fallback {
  display: grid;
  place-items: center;
  min-width: 3.4rem;
  height: 1.9rem;
  padding: 0 0.6rem;
  border-radius: 0.4rem;
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1;
}
.paylogo-fallback svg { display: block; }
.pay-name { font-size: 0.72rem; font-weight: 600; color: #8d7c61; }
.band-light .pay-name { color: #8a7553; }
/* colores de marca para la insignia de respaldo */
.lg-yape { background: #6c2bd9; color: #fff; }
.lg-plin { background: #0bb7c4; color: #04323a; }
.lg-bcp { background: #ff7a00; color: #0a2a66; }
.lg-ib { background: #00a94f; color: #fff; }
.lg-bbva { background: #072146; color: #5bc2f0; }
.lg-scotia { background: #e30613; color: #fff; }
.lg-pe { background: #111; color: #ffd400; font-size: 0.78rem; }
.lg-visa { background: #fff; color: #1a1f71; font-style: italic; font-size: 1.05rem; }
.lg-mc { background: #fff; }

/* ---------- Comprar fichas / datos de compra ---------- */
.buy-card {
  border-radius: 1rem;
  border: 1px solid rgba(120, 90, 50, 0.2);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px -24px rgba(74, 48, 22, 0.5);
  padding: 1.5rem;
}
.buy-h { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.05rem; color: #2a1c0f; margin-bottom: 1rem; }
.buy-label { display: block; margin: 1rem 0 0.4rem; font-size: 0.82rem; font-weight: 600; color: #6b5840; }

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(120, 90, 50, 0.2);
  background: #fff;
  padding: 0.8rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.pack:hover { transform: translateY(-2px); border-color: rgba(189, 122, 18, 0.5); }
.pack.active { border-color: #e29b1f; box-shadow: 0 0 0 2px rgba(226, 155, 31, 0.45), 0 10px 24px -12px rgba(226, 155, 31, 0.6); background: #fffaf0; }
.pack-soles { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.25rem; color: #2a1c0f; }
.pack-fichas { font-size: 0.8rem; color: #6b5840; }
.pack-bonus { position: absolute; top: -0.6rem; right: 0.5rem; border-radius: 999px; background: #1fbf7d; color: #04321f; font-size: 0.62rem; font-weight: 800; padding: 0.1rem 0.45rem; }

.method {
  border-radius: 0.7rem;
  border: 1px solid rgba(120, 90, 50, 0.2);
  background: #fff;
  padding: 0.7rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4a3a26;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.method.active { border-color: #e29b1f; background: #fffaf0; color: #2a1c0f; box-shadow: 0 0 0 2px rgba(226, 155, 31, 0.4); }

.buy-input {
  width: 100%;
  height: 3rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(120, 90, 50, 0.25);
  background: #fff;
  padding: 0 1rem;
  color: #2a1c0f;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.buy-input::placeholder { color: #a8997d; }
.buy-input:focus { border-color: #e29b1f; box-shadow: 0 0 0 3px rgba(226, 155, 31, 0.18); }

.buy-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.7rem;
  border: 1px dashed rgba(189, 122, 18, 0.4);
  background: rgba(245, 185, 66, 0.1);
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #2a1c0f;
}
.buy-summary .total { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.3rem; color: #bd7a12; }
.buy-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: #8a7553; }
.transfer-box { border-radius: 0.7rem; background: rgba(60, 44, 26, 0.06); border: 1px solid rgba(120, 90, 50, 0.18); padding: 0.9rem 1rem; font-size: 0.85rem; color: #5b4a32; }
.transfer-box strong { color: #2a1c0f; }
