/* ════════════════════════════════
   HERO — NEON CYBERPUNK PREMIUM
════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* ── Fondo principal ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% -5%,  rgba(32,64,255,0.70)  0%, transparent 62%),
    radial-gradient(ellipse 50% 40% at  8% 80%,  rgba(0,128,255,0.40)  0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 75%,  rgba(0,212,255,0.35)  0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 50% 115%, rgba(0,64,255,0.30)   0%, transparent 60%),
    #020B18;
  z-index: 0;
}

/* Orbe flotante izquierdo */
.hero-bg::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32,64,255,0.22) 0%, transparent 68%);
  top: 5%; left: -12%;
  animation: hero-orb-left 9s ease-in-out infinite;
  pointer-events: none;
}

/* Orbe flotante derecho */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.25) 0%, transparent 68%);
  top: 15%; right: -10%;
  animation: hero-orb-right 11s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-orb-left {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.8; }
  50%      { transform: translateY(-50px) scale(1.10); opacity: 1; }
}
@keyframes hero-orb-right {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50%      { transform: translateY(-35px) scale(1.08); opacity: 1; }
}

/* ── Grid lines con fade ── */
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,64,255,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  -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%);
}

/* ── Línea neón horizontal decorativa ── */
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.5) 30%, rgba(32,64,255,0.6) 50%, rgba(0,170,255,0.5) 70%, transparent 100%);
  box-shadow: 0 0 20px rgba(32,64,255,0.40);
  z-index: 2;
}

/* ── Contenido ── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Halo de brillo detrás del título */
.hero-content::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(32,64,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

/* ── Pill / Badge ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.32);
  border-radius: 30px;
  padding: 8px 20px;
  color: var(--neon-blue);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0,212,255,0.14), inset 0 0 20px rgba(0,212,255,0.04);
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue), 0 0 18px var(--neon-blue);
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.4; transform:scale(0.85); } }

/* ── Título ── */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 114px);
  line-height: 0.88;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 0 80px rgba(32,64,255,0.30);
}

.hero-title .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.38);
}

.hero-title .hl {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: none;
  filter: drop-shadow(0 0 24px rgba(0,212,255,0.55)) drop-shadow(0 0 48px rgba(32,64,255,0.30));
}

/* ── Descripción ── */
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* ── Botones ── */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 16px 38px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 0 28px rgba(32,64,255,0.40), 0 6px 24px rgba(0,0,0,0.35);
  animation: btn-pulse 3s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%,100% { box-shadow: 0 0 28px rgba(32,64,255,0.40), 0 6px 24px rgba(0,0,0,0.35); }
  50%      { box-shadow: 0 0 44px rgba(32,64,255,0.60), 0 8px 30px rgba(0,0,0,0.40); }
}
.btn-hero-primary:hover {
  filter: brightness(1.14);
  transform: translateY(-3px) scale(1.02);
  color: #fff;
  animation: none;
  box-shadow: 0 0 50px rgba(32,64,255,0.65), 0 12px 36px rgba(0,0,0,0.45);
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(0,207,255,0.35);
  padding: 16px 38px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0,212,255,0.06);
  box-shadow: 0 0 24px rgba(0,212,255,0.22);
  transform: translateY(-3px);
}

/* ── Stats — Glassmorphism Panel ── */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  margin-top: 56px;
  padding: 24px 48px;
  justify-content: center;
  flex-wrap: wrap;
  width: auto;
  max-width: 860px;

  background: rgba(15, 23, 53, 0.60);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,212,255,0.16);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(32,64,255,0.06),
    0 20px 60px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Línea de brillo superior de la card */
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.55) 30%, rgba(32,64,255,0.55) 70%, transparent);
  border-radius: 1px;
}

.hero-stats > div {
  padding: 4px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child  { padding-right: 0; border-right: none; }

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--neon-blue);
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,212,255,0.45);
}
.hero-stat-num span {
  color: var(--neon-pink);
  text-shadow: 0 0 16px rgba(0,170,255,0.50);
  font-size: 22px;
  letter-spacing: 0.5px;
}
.hero-stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── BRANDS BAR ─── */
.brands-bar {
  background: rgba(0,207,255,0.025);
  border-top: 1px solid rgba(0,207,255,0.08);
  border-bottom: 1px solid rgba(0,207,255,0.08);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brand-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s, text-shadow 0.2s;
  cursor: default;
}
.brand-tag:hover { color: var(--neon-blue); text-shadow: 0 0 14px rgba(0,207,255,0.60); }

/* ─── HOME SHOP WRAPPER ─── */
div#shop-section.woocommerce {
  background: var(--dark);
  border-radius: 32px 32px 0 0;
  border-top: 1px solid rgba(0,207,255,0.08);
  margin-top: -2px;
  padding: 48px 0 80px;
}
div#shop-section .woocommerce {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.woocommerce .shop-inner,
.shop-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-section { padding: 140px 20px 50px; justify-content: flex-start; }

  .hero-stats {
    padding: 20px 24px;
    gap: 0;
    max-width: 100%;
    margin-top: 40px;
  }
  .hero-stats > div {
    padding: 8px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 50%;
    box-sizing: border-box;
  }
  .hero-stats > div:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .hero-stats > div:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .hero-stats > div:first-child { padding-left: 20px; }
  .hero-stats > div:last-child  { padding-right: 20px; }

  .hero-bg::before,
  .hero-bg::after { display: none; }

  .btn-hero-primary, .btn-hero-ghost {
    padding: 14px 26px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-stats > div {
    width: 100%;
    border-right: none !important;
  }
}
