/* ============================================================
   ARCANA GAME CLUB – styles.css
   Separado del monolito index.html
   Orden: Tokens → Reset → Tipografía → Utilidades →
          Botones → Navbar → Hero → Secciones → Footer →
          Floating CTA → Animaciones → Responsive
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --bg-darkest:    #0a0714;
  --bg-dark:       #100d1f;
  --bg-mid:        #160f2d;
  --bg-card:       #1a1235;
  --bg-card-hover: #211848;
  --gold:          #d4a017;
  --gold-light:    #f0c842;
  --gold-dim:      #8a6710;
  --orange:        #e8680a;
  --orange-light:  #ff8c2e;
  --purple:        #6c2bd9;
  --purple-light:  #9b59f5;
  --purple-dim:    #3b1880;
  --text-primary:  #f5ecd7;
  --text-muted:    #a899c2;
  --border-gold:   rgba(212, 160, 23, 0.35);
  --border-gold-bright: rgba(212, 160, 23, 0.8);
  --glow-gold:     0 0 24px rgba(212, 160, 23, 0.5);
  --glow-orange:   0 0 24px rgba(232, 104, 10, 0.5);
  --glow-purple:   0 0 24px rgba(108, 43, 217, 0.5);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.font-cinzel { font-family: 'Cinzel', serif; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(240, 200, 66, 0.4);
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 52px;
}
.rune-sep {
  text-align: center;
  color: var(--gold-dim);
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  opacity: 0.5;
  margin-bottom: 14px;
  user-select: none;
}
.divider {
  display: flex; align-items: center; gap: 16px;
  margin: 0 auto 48px; max-width: 400px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
}
.divider::before { background: linear-gradient(to right, transparent, var(--gold)); }
.divider::after  { background: linear-gradient(to left,  transparent, var(--gold)); }
.divider-gem { color: var(--gold-light); font-size: 1.1rem; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: #0a0714;
  font-family: 'Cinzel', serif;
  font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,104,10,0.5), 0 0 40px rgba(212,160,23,0.25);
  text-transform: uppercase; letter-spacing: 0.08em;
  position: relative; overflow: hidden;
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(232,104,10,0.7), 0 0 60px rgba(212,160,23,0.4);
}
.btn-cta span, .btn-cta svg { position: relative; z-index: 1; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold-light);
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 0.95rem;
  padding: 12px 28px; border-radius: 50px;
  border: 2px solid var(--gold); cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.btn-outline:hover {
  background: rgba(212,160,23,0.15); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--glow-gold);
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,7,20,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0; transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  width: 46px; height: 46px; object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,160,23,0.6));
}
.nav-logo-text {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 1.15rem; color: var(--gold-light); line-height: 1.1;
  text-shadow: 0 0 20px rgba(212,160,23,0.4);
}
.nav-logo-text small {
  display: block; font-size: 0.58rem; letter-spacing: 0.28em;
  color: var(--text-muted); font-weight: 400;
}
.nav-links {
  display: flex; align-items: center;
  gap: 26px; list-style: none;
}
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold-light);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--gold-light);
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; overflow: hidden;
}

/* Hero background – fondo original menos oscuro */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('img/arcana_hero_bg.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.50) saturate(1.3);
}

/* Overlay moderado: textos legibles, imagen visible */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(108,43,217,0.30) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,7,20,0.10) 0%, rgba(10,7,20,0.30) 50%, rgba(10,7,20,0.65) 100%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: floatUp linear infinite;
}
.stars-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute; background: white; border-radius: 50%;
  animation: twinkle ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 24px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--border-gold); color: var(--gold-light);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 6px 20px; border-radius: 50px;
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--gold-light);
  border-radius: 50%; animation: blink 2s ease-in-out infinite;
}

.hero-logo-img {
  width: 180px; height: 180px; object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 28px rgba(10,7,20,0.9)) drop-shadow(0 0 16px rgba(212,160,23,0.6));
  animation: logoFloat 4s ease-in-out infinite;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900; line-height: 0.92;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.hero-title .line1 {
  background: linear-gradient(130deg, var(--gold-light) 0%, var(--orange-light) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(212,160,23,0.45));
}
.hero-title .line2 {
  display: block; font-size: clamp(1.15rem, 3vw, 2rem);
  letter-spacing: 0.32em; color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted); margin-top: 8px;
}

/* Slogan con alta jerarquía visual */
.hero-slogan {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.15rem, 3.2vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-light);
  text-shadow:
    0 0 20px rgba(240, 200, 66, 0.65),
    0 0 50px rgba(212, 160, 23, 0.35);
  margin: 28px 0 48px;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}
.hero-slogan::before,
.hero-slogan::after {
  content: '◆';
  color: var(--gold-dim);
  font-size: 0.65em;
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.7;
}
.hero-slogan em { color: var(--orange-light); font-style: normal; }

.hero-cta-group {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 16px;
}
.btn-hero {
  font-size: 1.15rem !important;
  padding: 18px 50px !important;
  box-shadow: 0 6px 40px rgba(232,104,10,0.65), 0 0 80px rgba(212,160,23,0.3) !important;
}

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: var(--text-muted); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================================
   SECTION SEPARATOR LINE
============================================================ */
.section-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   CATALOG
============================================================ */
#catalogo {
  padding: 96px 0; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108,43,217,0.12) 0%, transparent 70%),
    var(--bg-dark);
}
.catalog-grid {
  display: grid;
  /* 3 columnas fijas → siempre 3+3, sin huérfanos */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-card {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border-gold);
  background: var(--bg-card); aspect-ratio: 3/4;
  cursor: pointer; transition: var(--transition);
}
.catalog-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,7,20,0.92) 100%);
  z-index: 1;
}
.catalog-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

/* Imagen de juego en el catálogo (reemplaza emoji placeholder) */
.catalog-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) saturate(1.2);
}
.catalog-card:hover .catalog-img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.35);
}

/* Harry Potter Merch: foto con fondo claro, se oscurece más para armonizar */
.catalog-card.hp-card .catalog-img {
  filter: brightness(0.55) saturate(1.1) contrast(1.05);
}
.catalog-card.hp-card:hover .catalog-img {
  filter: brightness(0.72) saturate(1.25) contrast(1.05);
}

/* Fallback si la imagen no carga */
.catalog-img-wrap {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, #0e0928 100%);
  display: flex; align-items: center; justify-content: center;
}

.catalog-label {
  position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 2;
}
.catalog-label span {
  display: block; font-family: 'Cinzel', serif;
  font-size: 0.78rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.05em;
}
.catalog-label small { color: var(--text-muted); font-size: 0.68rem; }
.catalog-badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #0a0714; font-size: 0.6rem; font-weight: 700;
  font-family: 'Cinzel', serif; padding: 3px 9px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em;
}
.catalog-cta {
  text-align: center; margin-top: 48px;
}
.catalog-note {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px;
}

/* ============================================================
   HARRY POTTER MERCH – Bloque descriptivo
============================================================ */
.hp-merch-block {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(123,45,139,0.18) 0%, rgba(212,160,23,0.08) 100%);
  border: 1px solid rgba(123,45,139,0.4);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.hp-merch-inner {
  display: flex; align-items: flex-start; gap: 24px;
}
.hp-merch-icon {
  font-size: 2.8rem; flex-shrink: 0; line-height: 1;
  filter: drop-shadow(0 0 14px rgba(212,160,23,0.6));
}
.hp-merch-title {
  font-family: 'Cinzel', serif; font-size: 1.2rem;
  font-weight: 700; color: var(--gold-light);
  margin-bottom: 10px;
  text-shadow: 0 0 16px rgba(212,160,23,0.4);
}
.hp-merch-text p {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.7;
}

/* ============================================================
   TCG CAROUSEL – Layout lado a lado
============================================================ */
.tcg-section {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(108,43,217,0.14) 0%, rgba(155,89,245,0.06) 100%);
  border: 1px solid rgba(108,43,217,0.35);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* Contenedor de dos columnas */
.tcg-layout {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 36px;
  align-items: center;
}

/* ---- Columna izquierda: info ---- */
.tcg-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcg-section-icon { font-size: 2.6rem; line-height: 1; }
.tcg-section-title {
  font-family: 'Cinzel', serif; font-size: 1.35rem;
  font-weight: 700; color: var(--gold-light);
  text-shadow: 0 0 18px rgba(212,160,23,0.45);
  line-height: 1.2;
}
.tcg-section-desc {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.65;
}

/* Badges de marcas */
.tcg-brands {
  display: flex; flex-direction: column; gap: 8px;
}
.tcg-brand-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 50px;
  font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid; width: fit-content;
  transition: var(--transition);
}
.tcg-pokemon {
  background: rgba(255,204,0,0.10);
  border-color: rgba(255,204,0,0.4);
  color: #ffd700;
}
.tcg-yugioh {
  background: rgba(108,43,217,0.15);
  border-color: rgba(155,89,245,0.45);
  color: var(--purple-light);
}
.tcg-mundial {
  background: rgba(232,104,10,0.12);
  border-color: rgba(232,104,10,0.4);
  color: var(--orange-light);
}
.tcg-brand-badge:hover { transform: translateX(4px); }

/* Dots de navegación */
.tcg-dots {
  display: flex; gap: 8px; align-items: center;
}
.tcg-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-gold); cursor: pointer;
  transition: var(--transition);
}
.tcg-dot.active {
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(240,200,66,0.6);
  transform: scale(1.4);
}

/* Etiqueta de carta activa */
.tcg-active-label {
  font-family: 'Cinzel', serif; font-size: 0.8rem;
  font-weight: 600; color: var(--gold-dim);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---- Columna derecha: carrusel ---- */
.tcg-carousel {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.tcg-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.tcg-slide {
  min-width: 100%; position: relative;
}
.tcg-slide img {
  width: 100%; height: 340px;
  object-fit: cover; object-position: center;
  border-radius: var(--radius-md);
  filter: brightness(0.88) saturate(1.15);
  display: block;
}
.tcg-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(10,7,20,0.75); backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold); color: var(--gold-light);
  font-size: 2rem; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 5; line-height: 1;
}
.tcg-btn:hover {
  background: rgba(212,160,23,0.2); border-color: var(--gold-light);
  box-shadow: var(--glow-gold);
}
.tcg-prev { left: 10px; }
.tcg-next { right: 10px; }


/* ============================================================
   CLUBES
============================================================ */
#clubes {
  padding: 96px 0; position: relative;
  background: var(--bg-darkest);
}
.clubs-grid {
  /* Flexbox: 3 tarjetas en fila 1, 2 centradas en fila 2 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.club-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-gold); background: var(--bg-card);
  transition: var(--transition); cursor: pointer;
  /* Ancho: 3 por fila con gap de 24px → (100% - 48px) / 3 */
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
}

.club-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-light);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), var(--glow-gold);
}
.club-img-wrap { overflow: hidden; position: relative; }
.club-img {
  width: 100%; height: 200px; object-fit: cover;
  filter: brightness(0.68) saturate(1.25);
  transition: var(--transition);
}
.club-card:hover .club-img {
  filter: brightness(0.88) saturate(1.4);
  transform: scale(1.06);
}
.club-day {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(10,7,20,0.78); backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold); color: var(--gold-light);
  font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.club-body { padding: 20px; }

/* Ícono SVG del club */
.club-icon {
  width: 52px; height: 52px;
  margin-bottom: 12px; display: block;
  filter: drop-shadow(0 0 10px rgba(212,160,23,0.5));
}

.club-name {
  font-family: 'Cinzel', serif; font-size: 1.08rem;
  font-weight: 700; color: var(--gold-light); margin-bottom: 6px;
}
.club-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.club-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ============================================================
   SERVICES
============================================================ */
#servicios {
  padding: 96px 0; position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59,24,128,0.14) 0%, transparent 70%),
    var(--bg-dark);
}
.services-grid {
  display: grid;
  /* 3 columnas fijas → 6 tarjetas siempre en 3+3, sin huecos */
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative; padding: 36px 28px;
  border-radius: var(--radius-lg); background: var(--bg-card);
  border: 1px solid var(--border-gold); text-align: center;
  transition: var(--transition); overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--orange));
}
.svc-card:hover {
  transform: translateY(-8px); border-color: var(--gold-light);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-gold);
}
.svc-icon {
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(212,160,23,0.09); border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2.1rem; transition: var(--transition);
}
.svc-card:hover .svc-icon {
  background: rgba(212,160,23,0.2); border-color: var(--gold-light);
  box-shadow: var(--glow-gold);
}
.svc-icon svg {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 6px rgba(212,160,23,0.4));
}
.svc-title {
  font-family: 'Cinzel', serif; font-size: 1.08rem;
  font-weight: 700; color: var(--gold-light); margin-bottom: 10px;
}
.svc-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   CTA BAND
============================================================ */
#cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--purple-dim) 0%, #1a0a3d 50%, #2d1200 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden; text-align: center;
}
#cta-band::before {
  content: '⚔'; position: absolute; top: 50%; left: 4%;
  transform: translateY(-50%); font-size: 9rem; opacity: 0.035; color: var(--gold);
}
#cta-band::after {
  content: '🎲'; position: absolute; top: 50%; right: 4%;
  transform: translateY(-50%); font-size: 9rem; opacity: 0.035;
}
.cta-band-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  font-weight: 900; color: var(--text-primary); margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(212,160,23,0.28);
}
.cta-band-sub {
  color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   FOOTER
============================================================ */
#footer { background: #06040f; border-top: 2px solid var(--border-gold); padding: 64px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-bottom: 48px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-wrap img {
  width: 54px; height: 54px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212,160,23,0.5));
}
.footer-brand-name {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 1.25rem; color: var(--gold-light); line-height: 1.1;
}
.footer-brand-name small {
  display: block; font-size: 0.58rem; letter-spacing: 0.3em;
  color: var(--text-muted); font-weight: 400;
}
.footer-tagline {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(212,160,23,0.35);
}
.footer-h {
  font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 18px;
}
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.5;
  transition: color var(--transition);
}
.contact-list li:hover { color: var(--text-primary); }
.contact-list li a { color: inherit; }
.cicon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.95rem;
  background: rgba(212,160,23,0.09); border: 1px solid var(--border-gold);
}
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(212,160,23,0.1); padding-bottom: 10px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text-primary); font-weight: 500; }
.hours-list .val { color: var(--gold); font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,160,23,0.09); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); color: var(--text-muted);
}
.soc-btn:hover {
  background: rgba(212,160,23,0.22); border-color: var(--gold-light);
  color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--glow-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.14); padding-top: 26px;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px;
}
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }
.footer-copy strong { color: var(--gold); }

.footer-store-info {
  padding: 12px 16px;
  background: rgba(212,160,23,0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}
.footer-store-info .store-url {
  font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 3px;
}
.footer-store-info .store-sub {
  font-size: 0.72rem; color: var(--text-muted);
}

/* ============================================================
   FLOATING CTA
============================================================ */
#floating-cta {
  position: fixed; bottom: 30px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  opacity: 0; pointer-events: none; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#floating-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.flt-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.flt-shop {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #0a0714; font-family: 'Cinzel', serif;
  animation: shopPulse 3s ease-in-out infinite;
}
.flt-shop:hover { transform: translateY(-4px) scale(1.05); }
.flt-wa { background: #25D366; color: white; }
.flt-wa:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(37,211,102,0.5) !important; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAME ANIMATIONS
============================================================ */
@keyframes floatUp {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
@keyframes twinkle {
  0%,100% { opacity: 0.08; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.4); }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@keyframes shopPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(232,104,10,0.5), 0 0 0 0 rgba(232,104,10,0.3); }
  50%      { box-shadow: 0 8px 40px rgba(232,104,10,0.7), 0 0 0 12px rgba(232,104,10,0); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,7,20,0.98);
    border-bottom: 1px solid var(--border-gold);
    padding: 24px; gap: 20px; backdrop-filter: blur(20px);
  }
  .hamburger { display: block; }
  .hero-logo-img { width: 100px; height: 100px; }
  #floating-cta { bottom: 18px; right: 14px; }
  .flt-btn .label { display: none; }
  .flt-btn { padding: 13px; border-radius: 50%; }
  .hero-slogan { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .hero-slogan::before, .hero-slogan::after { display: none; }
}
@media (max-width: 768px) {
  /* Catálogo: 2 columnas en tablet */
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  /* Servicios: 2 columnas en tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* Clubes: 2 tarjetas por fila en tablet */
  .club-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  /* HP Merch: layout vertical en tablet */
  .hp-merch-block { padding: 24px 20px; }
  /* TCG: padding reducido en tablet */
  .tcg-section { padding: 24px 20px; }
  .tcg-layout { gap: 24px; }
  .tcg-slide img { height: 260px; }
}
@media (max-width: 480px) {
  /* Catálogo: 1 columna en móvil pequeño */
  .catalog-grid { grid-template-columns: 1fr; }
  /* Servicios: 1 columna en móvil pequeño */
  .services-grid { grid-template-columns: 1fr; }
  /* Clubes: 1 tarjeta por fila en móvil pequeño */
  .club-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* HP Merch: icono + texto en columna */
  .hp-merch-inner { flex-direction: column; gap: 12px; }
  /* TCG: columna única en móvil, carrusel primero */
  .tcg-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .tcg-carousel { order: -1; }
  .tcg-slide img { height: 220px; }
  .tcg-brands { flex-direction: row; flex-wrap: wrap; }
}


