/* ════════════════════════════════
   COMPONENTS — Wallet, Countdown,
   Section Headers, Filter Tabs
════════════════════════════════ */

/* ─── BANNER SOPORTE CÓDIGOS ─── */
.codigos-help-banner {
  position: relative;
  overflow: hidden;
  background: #020B18;
  border-top: 1px solid rgba(0,212,255,0.12);
  border-bottom: 1px solid rgba(32,64,255,0.18);
  padding: 0;
}

/* Fondo con orbes igual que el hero */
.codigos-help-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 15% 50%, rgba(32,64,255,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 85% 50%, rgba(0,212,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Grid lines igual al hero */
.codigos-help-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,64,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.codigos-help-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ── Lado izquierdo ── */
.codigos-help-left { display: flex; flex-direction: column; gap: 16px; }

.codigos-help-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00D4FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.codigos-help-eyebrow span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00D4FF;
  box-shadow: 0 0 8px #00D4FF, 0 0 18px #00D4FF;
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

.codigos-help-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 40px rgba(32,64,255,0.35);
}
.codigos-help-title em {
  font-style: normal;
  background: linear-gradient(90deg, #2040FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0,212,255,0.45));
}

.codigos-help-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.50);
  margin: 0;
  line-height: 1.6;
  max-width: 420px;
}

.codigos-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2040FF 0%, #00D4FF 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  width: fit-content;
  letter-spacing: 0.3px;
  box-shadow: 0 0 28px rgba(32,64,255,0.50), 0 6px 20px rgba(0,0,0,0.35);
  transition: transform .22s, box-shadow .22s, filter .22s;
  animation: btn-pulse 3s ease-in-out infinite;
}
.codigos-help-btn svg { flex-shrink: 0; }
.codigos-help-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.12);
  box-shadow: 0 0 48px rgba(0,212,255,0.55), 0 10px 30px rgba(0,0,0,0.40);
  color: #fff;
  animation: none;
}

/* ── Lado derecho — elemento decorativo neon ── */
.codigos-help-right {
  flex-shrink: 0;
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.codigos-help-orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,64,255,0.28) 0%, rgba(0,212,255,0.12) 50%, transparent 72%);
  animation: hero-orb-left 7s ease-in-out infinite;
}
.codigos-help-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.30);
  box-shadow: 0 0 20px rgba(0,212,255,0.20), inset 0 0 20px rgba(32,64,255,0.15);
}
.codigos-help-ring2 {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(32,64,255,0.40);
  box-shadow: 0 0 14px rgba(32,64,255,0.25);
}
.codigos-help-icon-center {
  position: relative;
  z-index: 2;
  color: #00D4FF;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.8)) drop-shadow(0 0 28px rgba(0,212,255,0.4));
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .codigos-help-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    text-align: center;
  }
  .codigos-help-left { align-items: center; }
  .codigos-help-sub { max-width: 100%; }
  .codigos-help-right { width: 140px; height: 140px; margin: 0 auto; }
}

/* ─── TERAWALLET CARD ─── */
.woo-wallet-section {
  background: linear-gradient(135deg, var(--neon-purple) 0%, #0080FF 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 0 40px rgba(32,64,255,0.30), 0 10px 40px rgba(0,0,0,0.4);
}
.woo-wallet-section::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.wallet-info-left { position: relative; z-index: 1; }
.wallet-info-left label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.woo-wallet-balance {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
  display: block;
}
.wallet-bonus-msg {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}
.wallet-bonus-msg strong { color: var(--warning); }

.wallet-actions-right { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-wallet-reload {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-wallet-reload:hover { transform: scale(1.03); color: var(--accent); }

.btn-wallet-history {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-wallet-history:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ─── COUNTDOWN ─── */
.oferta-countdown {
  background: linear-gradient(90deg, rgba(239,68,68,0.90) 0%, rgba(0,128,255,0.88) 100%);
  border: 1px solid rgba(0,128,255,0.25);
  box-shadow: 0 0 30px rgba(0,128,255,0.14);
  border-radius: 13px;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.countdown-label { font-size: 13px; color: #fff; font-weight: 600; }
.countdown-sub { font-size: 11px; color: rgba(255,255,255,0.65); }
.countdown-timer { display: flex; gap: 6px; }
.c-block {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
  min-width: 44px;
}
.c-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #fff;
  display: block; line-height: 1;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}
.c-lbl { font-size: 9px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ─── SECTION HEADERS ─── */
.section-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-hdr-left { display: flex; align-items: center; gap: 12px; }
.section-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.ic-fire {
  background: rgba(0,170,255,0.12);
  border: 1px solid rgba(0,170,255,0.25);
  box-shadow: 0 0 14px rgba(0,170,255,0.18);
}
.ic-bolt {
  background: rgba(0,212,255,0.10);
  border: 1px solid rgba(0,212,255,0.22);
  box-shadow: 0 0 14px rgba(0,212,255,0.15);
}
.section-hdr-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-hdr-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.see-all-link {
  font-size: 12px; color: var(--neon-blue); font-weight: 600;
  text-decoration: none; letter-spacing: 0.4px;
  display: flex; align-items: center; gap: 3px;
  transition: color 0.2s, text-shadow 0.2s;
}
.see-all-link:hover { color: #fff; text-shadow: 0 0 10px var(--neon-blue); }

/* ─── OFERTAS DEL DÍA — COMBO CARDS ─── */
.oferta-combos-wrap {
  margin-bottom: 32px;
}
.oferta-combos-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 14px;
  margin-top: -10px;
  text-shadow: 0 0 12px rgba(0,170,255,0.45);
}
/* Carrusel wrapper */
.oferta-carousel-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.oferta-carousel-track-wrap {
  overflow: hidden;
  flex: 1;
}
.oferta-combos-grid {
  display: flex;
  gap: 14px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.oferta-combo-card {
  flex: 0 0 calc(25% - 11px);
  width: calc(25% - 11px);
  min-width: 0;
}
.oferta-combo-hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff4e00, #e60000);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}
.oferta-carousel-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  padding: 0;
}
.oferta-carousel-btn:hover {
  background: var(--neon-purple);
  color: #fff;
  border-color: var(--neon-purple);
  box-shadow: var(--shadow-purple);
}
.oferta-carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.oferta-combo-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 20px 16px 16px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oferta-combo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45), var(--shadow-purple);
  border-color: var(--neon-purple);
}
.oferta-combo-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--neon-blue);
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.10);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 14px;
  display: inline-block;
}
.oferta-combo-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.oferta-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  padding: 5px;
  flex-shrink: 0;
}
.oferta-logo-sep {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1;
}
.oferta-combo-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.oferta-combo-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}
.oferta-combo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--neon-blue);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0,212,255,0.35);
}
.btn-oferta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
  margin-top: auto;
}
.btn-oferta-wa:hover {
  background: #1ebe5a;
  transform: scale(1.03);
  color: #fff;
  text-decoration: none;
}

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.filter-tab {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  cursor: default;
  border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.filter-tab:hover { border-color: rgba(0,212,255,0.3); color: var(--text-secondary); }
.filter-tab.active { background: var(--neon-purple); border-color: var(--neon-purple); color: #fff; box-shadow: var(--shadow-purple); }
