.social-card.telegram img {
  background: #229ED9;
  border: 2px solid #229ED9;
}
.social-card.telegram p {
  color: #fff;
  text-shadow: 0 1px 6px #229ED9cc, 0 0px 1px #000;
}
/* Ensure Telegram image matches layout of other social cards */
.social-card.telegram img {
  display: block;
  margin: 0 auto 1.2rem auto;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  background-size: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
/* Social Grid Promos - Mejora visual de imágenes */
.social-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
.social-card {
  background: #181b22;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  min-height: 320px;
  transition: transform 0.18s, box-shadow 0.18s;
  text-align: center;
  position: relative;
}
.social-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px 0 #00f2ff33;
}
.social-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px #00f2ff22;
  background: #fff;
  border: 2px solid #222c;
}
.social-link {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.3rem;
  background: #00f2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px #00f2ff55;
  transition: background 0.18s, color 0.18s;
  font-size: 1.08rem;
}
.social-link:hover {
  background: #00c2cc;
  color: #fff;
}
:root {
  --bg-dark: #050505;
  --bg-panel: rgba(20, 20, 20, 0.95);
  --primary: #00f2ff;
  --primary-dim: rgba(0, 242, 255, 0.1);
  --accent: #bc13fe;
  --accent-dim: rgba(188, 19, 254, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --border: rgba(255, 255, 255, 0.08);
  --glass: blur(8px);
  --font-main: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Effects */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
  will-change: opacity, filter;
}

.top-left {
  top: -200px;
  left: -200px;
  background: linear-gradient(45deg, rgba(220,20,60,0.9), rgba(255,200,200,0.2));
}

.bottom-right {
  bottom: -200px;
  right: -200px;
  background: linear-gradient(45deg, rgba(0,128,0,0.9), rgba(180,255,180,0.08));
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;

/* when input is focused on small screens, give room for keyboard
   and hide fixed bottom buttons slightly to avoid overlap */
body.input-focus .mobile-fixed-action {
  transform: translateY(45%);
  transition: transform 220ms ease;
}
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Section title helpers: keep phrases together and highlight the important part */
.section-title { font-weight: 800; letter-spacing: -0.02em; }
.section-title-accent { color: var(--primary); font-weight: 900; margin-left: 0.25rem; }
.section-sub { display: inline-block; color: var(--text-muted); font-weight: 500; margin-left: 0.6rem; font-size: 0.95rem; }

/* Decorative / stray element safety: if a small cyan 'KY' or similar appears, keep it non-intrusive */
.ky-deco { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--primary); font-weight: 800; pointer-events: none; z-index: 1205; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Promo (Free Review) */
.promo-card {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08) 0%, rgba(188, 19, 254, 0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  text-align: center;
}

.promo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.12);
  border: 1px solid var(--border);
}

.promo-title {
  margin: 0 0 0.8rem;
}

.promo-text {
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.promo-actions { margin-top: 0.5rem; }

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: var(--glass);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-main);
  margin-left: 1rem;
}

.logo-icon {
  color: var(--primary);
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight {
  color: var(--primary);
}

/* Navigation Menu */
.nav-menu ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

/* Ensure nav container doesn't clip dropdowns and sits above other elements */
.nav-menu {
  z-index: 1200;
  overflow: visible;
}

.nav-menu li { position: relative; }

.nav-menu .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: rgba(10,10,10,0.98);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: none;
}

.nav-menu li:hover > .dropdown { display: block; }

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link span {
  font-size: 1rem;
}

.nav-icon-img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.nav-link:hover .nav-icon-img {
  filter: brightness(1);
}

/* Menu Toggle Button (Hamburger) - Desktop & Mobile */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  opacity: 0.8;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Header decorative small banner next to hamburger */
.header-decor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(0,242,255,0.02));
  border: 1px solid rgba(255,255,255,0.03);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-left: 0.6rem;
  white-space: nowrap;
  align-self: center;
  z-index: 1001;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}
.header-decor .deco-rocket { font-size: 1.05rem; }
.header-decor .deco-text { color: var(--text-muted); font-weight: 600; opacity: 0.95; }

/* small glow decoration to the right of header for visual balance */
.header-decor::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,242,255,0.8), rgba(188,19,254,0.6));
  box-shadow: 0 6px 20px rgba(0,242,255,0.12), 0 2px 10px rgba(188,19,254,0.06);
  opacity: 0.9;
}

/* subtle patterned strip under the header to make the top feel less empty */
header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 28px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.01) 0 6px, transparent 6px 24px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 999;
}

@media (max-width: 1024px) {
  /* hide detailed text on smaller screens to avoid crowding */
  .header-decor .deco-text { display: none; }
  .header-decor { padding: 0.22rem 0.5rem; margin-left: 0.4rem; }
}

@media (max-width: 480px) {
  /* on very small screens show only the rocket so hamburger area stays compact */
  .header-decor { min-width: 26px; }
  .header-decor .deco-rocket { font-size: 1.1rem; }
  .header-decor::after { display: none; }
}

/* Action Buttons */
.btn-icon {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.btn-icon:hover {
  color: var(--primary);
  background: rgba(0, 242, 255, 0.1);
  transform: scale(1.1) rotate(5deg);
}

.cart-btn {
  animation: pulse-cart 2s ease-in-out infinite;
}

.account-btn {
  animation: pulse-account 2s ease-in-out infinite;
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 0.65rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid var(--bg-dark);
  animation: badge-pulse 1s ease-in-out infinite;
}

/* Animations */
@keyframes pulse-cart {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes pulse-account {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7); }
  50% { box-shadow: 0 0 0 5px rgba(0, 242, 255, 0); }
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes skeleton-loading {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes shimmer {
  0% { background-position: -1200px 0; }
  100% { background-position: 1200px 0; }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(4);
  }
}

.nav-menu ul li {
  animation: nav-slide-in 0.5s ease-out backwards;
}

.nav-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu ul li:nth-child(2) { animation-delay: 0.15s; }
.nav-menu ul li:nth-child(3) { animation-delay: 0.2s; }
.nav-menu ul li:nth-child(4) { animation-delay: 0.25s; }
.nav-menu ul li:nth-child(5) { animation-delay: 0.3s; }
.nav-menu ul li:nth-child(6) { animation-delay: 0.35s; }
.nav-menu ul li:nth-child(7) { animation-delay: 0.4s; }
.nav-menu ul li:nth-child(8) { animation-delay: 0.45s; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Ripple effect element */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-dim);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,242,255,0.35);
  transform: translateY(-3px) scale(1.05);
  color: #000;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  opacity: 1;
}

.btn-primary:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gradient-sphere {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(220,20,60,0.9), rgba(0,128,0,0.9));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 4s infinite alternate;
  will-change: transform, opacity;
}

/* Decorative garland across the top of the page */
header::before {
  content: '';
  position: fixed;
  top: 6px;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 1002;
  /* hidden to avoid duplicate garland visuals when dynamic bulbs are enabled */
  display: none;
}

.garland-bulb { pointer-events: none; }
/* Garland lights container (placed behind header content so text stays readable) */
#garland-lights {
  position: fixed;
  top: 6px;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 900; /* below header (1000) so bulbs don't cover header text */
  display: block;
}
.garland-bulb {
  position: absolute;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0.95;
  transform-origin: center;
  animation-name: bulbBlink;
  animation-iteration-count: infinite;
}
@keyframes bulbBlink {
  0% { transform: scale(1); filter: brightness(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); filter: brightness(1.6); opacity: 1; }
  100% { transform: scale(1); filter: brightness(0.95); opacity: 0.6; }
}

/* Snow toggle button */
.snow-toggle {
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #ffdcdc);
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.snow-toggle.active { box-shadow: 0 8px 28px rgba(0,128,0,0.25); }

/* Hero Lottie container */
.hero-lottie {
  position: absolute;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  right: 6%;
  top: 10%;
  z-index: 2;
}
.hero-lottie lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

/* Decorative SVG in hero (responsive placement) */
.hero-visual::after {
  content: '';
  position: absolute;
  left: -6%;
  bottom: -6%;
  width: 420px;
  height: 220px;
  background-image: url('assets/hero-decor.svg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Social card hover: subtle pulsing for visibility */
.social-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.social-card:hover img { transform: translateY(-4px) scale(1.03); }

/* Telegram specific tweak: badge */
.social-card.telegram { border-color: #0f6f9a; }
.social-card.telegram .social-link { background: #1da1d9; color: #000; }

.floating-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 4.5s ease-in-out infinite;
  will-change: transform, opacity;
}

.card-1 {
  top: 20%;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: 0;
  animation-delay: 1s;
}

.floating-card .icon {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(0, 242, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-info .value {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-main);
}

.card-info .label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(-24px); }
  50% { transform: translateY(24px); }
  100% { transform: translateY(-24px); }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }

  100% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Cards & Grids */
.packs-grid,
.services-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pack-card,
.service-card,
.job-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pack-card::before,
.service-card::before,
.job-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.06), rgba(188,19,254,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pack-card:hover,
.service-card:hover,
.job-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 50px rgba(0,242,255,0.15);
}

.pack-card:hover::before,
.service-card:hover::before,
.job-card:hover::before {
  opacity: 1;
}

.pack-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-bottom-left-radius: 12px;
}

.pack-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pack-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.pack-amount .unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pack-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pack-features li span.material-symbols-outlined {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 20px;
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.benefits-list li span {
  color: var(--primary);
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  color: #555;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none !important;
}

.modal-content {
  width: 90%;
  max-width: 900px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 24px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#cart-modal {
  align-items: center;
}

.cart-panel {
  border-radius: 24px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  width: 100%;
}

#cart-modal.active .cart-panel {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.close-btn:hover {
  color: var(--text-main);
}

.cart-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  flex: 1;
  overflow: hidden;
}

.cart-sidebar {
  padding: 2rem;
  border-left: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Cart Items Area */
.cart-items-container {
  padding: 2rem;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.2);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cart-item:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.cart-item-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.1rem;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.remove-item {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.1);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.remove-item:hover {
  background: #ff4d4d;
  color: white;
}

.empty-cart-msg {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  display: flex;
  border: none;
  padding: 0 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cart-summary {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.summary-row.total {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.summary-row.discount {
  color: #10b981;
}

.summary-row.hidden {
  display: none;
}

.checkout-btn {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.payment-methods-section h3 {
  margin: 0 0 1rem;
  color: var(--text-main);
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.payment-option {
  display: block;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}

.payment-card .material-symbols-outlined {
  color: var(--primary);
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option input:checked + .payment-card {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-dim);
  background: rgba(0, 242, 255, 0.06);
  color: var(--text-main);
}

.coupon-section {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.coupon-input-group {
  display: flex;
  gap: 0.6rem;
}

.coupon-input-group input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.coupon-input-group button {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.coupon-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--primary-dim);
}

/* Payment Modal Specifics */
.payment-panel {
  max-width: 500px;
}

.payment-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.payment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.amount-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.amount-display .label {
  color: var(--text-muted);
}

.amount-display .value {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
}

.wallet-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wallet-label {
  color: var(--text-muted);
  font-weight: 600;
}

.wallet-address-group {
  display: flex;
  gap: 0.6rem;
}

.wallet-address-group input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
}

.copy-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.copy-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 242, 255, 0.06);
}

.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1rem;
  height: 140px;
  color: var(--text-muted);
}

.payment-warning {
  display: flex;
  gap: 1rem;
  background: rgba(255, 165, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ffcc80;
  align-items: center;
}

/* Confeti animación */
.confeti {
  position: fixed;
  top: -20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  animation: caerConfeti linear forwards;
}
@keyframes caerConfeti {
  to {
    top: 100vh;
    opacity: 0.2;
    transform: translateY(100vh) rotate(360deg);
  }
}

/* Fondo animado único con soporte para colores por sección */
.animated-bg {
  --section-color: #0099cc;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: -2;
  pointer-events: none;
  /* Gradientes dinámicos según sección */
  background: radial-gradient(circle at 10% 20%, var(--section-color) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(188, 19, 254, 0.08) 0, transparent 55%),
              linear-gradient(120deg, #071018 0%, #101212 100%);
  animation: bgMove 14s ease-in-out infinite alternate;
  opacity: 0.6;
}

.animated-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05), transparent 100%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes bgMove {
  0% { filter: blur(0px) brightness(1); }
  100% { filter: blur(2px) brightness(1.08); }
}

/* Responsive */
@media (max-width: 768px) {
    .cart-body {
      grid-template-columns: 1fr;
    }

    .cart-sidebar {
      border-left: none;
      border-top: 1px solid var(--border);
    }

    .modal-content {
      height: 100%;
      max-height: 100%;
      border-radius: 0;
    }

    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .hero-btns {
      justify-content: center;
    }

    .hero-visual {
      height: 300px;
    }

    .split-layout {
      grid-template-columns: 1fr;
    }

    nav ul {
      display: none;
    }
  }

/* Additional responsive improvements for tablet and mobile */
@media (max-width: 1024px) {
  .container { padding: 0 1rem; }
  header { padding: 0.8rem 0; }
  .logo { font-size: 1.25rem; margin-left: 0.5rem; }
  .header-content { gap: 0.6rem; }
  .menu-toggle { display: flex; }
  .nav-menu { position: fixed; top: 64px; right: 0; background: rgba(5,5,5,0.98); width: 280px; height: calc(100vh - 64px); padding: 1.2rem; transform: translateX(100%); transition: transform 0.28s ease; z-index: 1200; overflow-y: auto; }
  .nav-menu.active { transform: translateX(0); }
  /* Overlay behind the off-canvas nav */
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1100; opacity: 0; visibility: hidden; transition: opacity 0.28s ease; }
  .nav-overlay.active { opacity: 1; visibility: visible; }
  .nav-menu ul { display: flex; flex-direction: column; gap: 1rem; }
  .header-actions { gap: 0.8rem; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { height: 360px; }
  .floating-card { display: none; }
  .packs-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .promo-card { padding: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.8rem; }
  header { padding: 0.6rem 0; }
  .logo { font-size: 1.05rem; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  p { font-size: 1rem; }
  .menu-toggle { display: flex; }
  .nav-menu { width: 100%; top: 56px; height: calc(100vh - 56px); }
  .hero-visual { height: 220px; }
  .hero-lottie { display: none; }
  .grid-overlay, .animated-bg { display: none; }
  .pack-card, .service-card, .job-card { padding: 1rem; }
  .social-grid { gap: 1rem; }
  .social-card { width: 100%; min-height: auto; padding: 1rem; }
  .btn { padding: 0.7rem 1rem; font-size: 0.95rem; }
  .btn-full { width: 100%; }
  .cart-items { gap: 0.6rem; }
  .cart-item { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .cart-item-price { align-self: flex-end; }
  .modal-content { max-width: 100%; border-radius: 0; }
  footer .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Small devices tweak for touch targets and readability */
@media (pointer: coarse) {
  .nav-link, .btn, .social-link, .store-action { padding: 0.9rem 1.2rem; }
  .menu-toggle span { width: 28px; height: 3px; }
}

/* Prevent background scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Forms: make inputs full-width and improve mobile usability */
.form-field input,
.form-field select,
.form-field textarea,
input[type="email"], input[type="text"], input[type="tel"], input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
}

.form-field label { display: block; margin-bottom: 6px; }

/* Ensure forms have space for fixed action buttons on small screens */
@media (max-width: 480px) {
  /* Give panels and forms extra bottom padding to avoid overlap with fixed buttons */
  .panel, .modal-content, .auth-forms, .checkout-grid, main { padding-bottom: 100px; }

  /* Make primary form buttons fixed at the bottom for easy access */
  form .btn-primary, form .btn-full.btn-primary {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 12000 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-size: 1.05rem;
    padding: 14px 18px;
  }

  /* Prevent fixed checkout button from covering content when present inside modals */
  .modal .modal-body, .modal .payment-body, .panel { padding-bottom: 130px; }

  /* Make form groups full width and comfortable spacing on mobile */
  .form-group { padding: 0.6rem 0; }
  .form-field { margin-bottom: 1rem; }
}

/* Slightly larger inputs and buttons for tablets */
@media (max-width: 1024px) {
  .form-field input, .form-field textarea { font-size: 1.02rem; padding: 12px; }
  .btn { padding: 0.9rem 1.25rem; }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

/* Store card refinements */
.store-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}
.store-card-img img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.store-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.4rem;
}
.store-card h3, .store-card-body h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text-main);
}
.store-card p, .store-card-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.store-card .btn-outline {
  margin-top: 0.8rem;
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .store-grid { gap: 1rem; }
  .store-card { padding: 1rem; }
  .store-card-img img { width: 58px; height: 58px; }
}

/* Previews grid on main page */
.store-previews { margin-top: 1.2rem; }
.previews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: start;
}
.preview-block h4 { margin: 0 0 0.6rem 0; color: var(--text-main); font-size: 1rem; font-weight: 700; }
.preview-card {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.preview-card:hover {
  border-color: var(--primary);
  background: rgba(0,242,255,0.05);
  transform: translateX(4px);
}
.preview-card .product-image img { width: 54px; height: 54px; border-radius: 8px; }
.preview-card .product-info { padding: 0; }
.preview-card h3 { font-size: 1rem; margin-bottom: 0.3rem; font-weight: 700; }
.preview-card .product-price { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.3rem; font-weight: 600; }

/* Button badge for fraction indication (1/4 etc.) */
.btn-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.18rem 0.45rem;
  border-radius: 8px;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.preview-buy { display: inline-flex; align-items: center; gap: 0.4rem; }

@media (max-width:480px){
  .previews-grid { grid-template-columns: 1fr; }
  .preview-card { gap: 0.6rem; }
}


/* Snowfall (seasonal) */
#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 900; /* behind header/content to avoid covering text */
}
.snowflake {
  position: fixed;
  top: -10vh;
  color: #ffffff;
  opacity: 0.85;
  user-select: none;
  will-change: transform, opacity;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes fall {
  0% { transform: translateY(-10vh) rotate(0deg); }
  100% { transform: translateY(110vh) rotate(360deg); }
}

/* Small accessibility helper: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .snowflake { animation-play-state: paused !important; opacity: 0.6; }
}

/* ============================================
   PRODUCT CARDS (Section Pages)
   ============================================ */

.product-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0,242,255,0.18);
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.04));
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-image {
  flex-shrink: 0;
}

.product-image img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0,242,255,0.08);
  border: 1px solid var(--border);
  padding: 0.4rem;
  transition: all 0.25s ease;
}

.product-card:hover .product-image img {
  background: rgba(0,242,255,0.12);
  transform: scale(1.05);
}

/* Loading and Error States */
.product-card.loading .product-image img {
  background: linear-gradient(
    90deg,
    rgba(0,242,255,0.05),
    rgba(0,242,255,0.15),
    rgba(0,242,255,0.05)
  );
  background-size: 1200px 100%;
  animation: shimmer 2s infinite;
  opacity: 0.6;
}

.product-card.loaded .product-image img {
  animation: fadeIn 0.4s ease-in;
}

.product-card.error .product-image img {
  opacity: 0.5;
  filter: grayscale(50%);
}

.product-badge {
  display: inline-block;
  background: rgba(0,242,255,0.15);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0,242,255,0.25);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.product-features li .material-symbols-outlined {
  flex-shrink: 0;
  color: #10b981;
  font-size: 1.3rem;
  font-weight: 700;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.product-guarantee .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* Button Badge (1/4, 2/4, etc.) */
.btn-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-right: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.3px;
  animation: badgePulse 2.5s ease-in-out infinite;
  line-height: 1.2;
  white-space: nowrap;
}

/* Button with badge alignment */
.btn .btn-badge {
  vertical-align: middle;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Section specific layout */
.streaming-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .streaming-products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.4rem;
  }

  .product-info h3 {
    font-size: 1.05rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }
}

/* Enhanced dropdown styling (hidden by default) */
.nav-menu li { position: relative; }

.nav-menu .nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1300;
  pointer-events: none;
}

.nav-menu li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.nav-dropdown a:hover {
  color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
  border-left-color: var(--primary);
  padding-left: 1.2rem;
}

/* Diseño y Marca enhanced panel */
.branding-panel {
  width: 420px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
  border-radius: 10px;
}
.branding-header {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.branding-symbol {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.06));
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,242,255,0.06);
}
.branding-title h3 { margin: 0; font-size: 1.05rem; color: var(--text-main); }
.branding-desc { margin: 0.2rem 0 0; color: var(--text-muted); font-size: 0.9rem; }

.branding-items { display: flex; gap: 0.6rem; margin-top: 6px; }
.branding-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255,255,255,0.01);
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  flex: 1 1 50%;
}
.branding-item:hover { transform: translateY(-6px); border-color: rgba(0,242,255,0.12); box-shadow: 0 12px 30px rgba(0,242,255,0.06); }
.bi-icon { width: 44px; height: 44px; display:flex; align-items:center; justify-content:center; border-radius:8px; background: rgba(0,0,0,0.12); color: var(--primary); font-size: 1.2rem; }
.bi-content strong { display:block; color: var(--text-main); font-size: 0.98rem; }
.bi-sub { display:block; color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

.branding-footer { display:flex; justify-content: flex-end; margin-top: 0.4rem; }
.nav-view-all { text-decoration: none; }

/* Accessibility & Micro-interactions for Branding Panel */
.branding-symbol { position: relative; cursor: default; }
.branding-symbol:focus { outline: none; }
.branding-symbol:focus-visible { box-shadow: 0 0 0 4px rgba(0,242,255,0.12), 0 6px 18px rgba(0,0,0,0.6); transform: translateY(-2px); }

.branding-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 1400;
}
.branding-tooltip::after {
  content: ''; 
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(10,10,10,0.98);
}

/* Item-level tooltips */
.branding-item-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.98);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.5);
  white-space: normal;
  max-width: 200px;
  z-index: 1400;
  line-height: 1.3;
}
.branding-item-tooltip::after {
  content: ''; 
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(10,10,10,0.98);
}

/* Micro-interactions for branding items */
.branding-item .bi-icon { transition: transform 180ms ease, box-shadow 180ms ease; }
.branding-item:hover .bi-icon, .branding-item:focus .bi-icon, .branding-item:focus-visible .bi-icon { transform: translateY(-6px) rotate(-6deg) scale(1.06); box-shadow: 0 10px 26px rgba(0,242,255,0.06); }

/* Make branding-item keyboard focus visible */
.branding-item { outline: none; transition: all 160ms ease; }
.branding-item:focus-visible { 
  box-shadow: 0 0 0 3px rgba(0,242,255,0.2), 0 0 0 6px rgba(0,242,255,0.1);
  transform: translateY(-4px);
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Enhance symbol focus state */
.branding-symbol { transition: all 160ms ease; }
.branding-symbol:focus-visible { 
  box-shadow: 0 0 0 4px rgba(0,242,255,0.15), 0 8px 24px rgba(0,242,255,0.08);
  transform: translateY(-3px) scale(1.08);
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Ensure a clear focus style for interactive controls globally for keyboard users */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }


/* Decorative separator at the top of dropdown to avoid empty feeling */
.nav-dropdown::before {
  content: '';
  display: block;
  height: 6px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0,242,255,0.12), rgba(188,19,254,0.08));
  margin-bottom: 8px;
}

/* Small entrance animation for the panel */
.branding-panel { transform-origin: top left; animation: panel-fade-in 300ms ease both; }
@keyframes panel-fade-in { from { opacity: 0; transform: translateY(-6px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .branding-panel { width: auto; }
  .branding-items { flex-direction: column; }
}

/* Ensure nav links have good alignment */
.nav-link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive nav adjustments */
@media (max-width: 1024px) {
  .nav-menu .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 0.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    pointer-events: none;
  }

  .nav-menu li:hover > .nav-dropdown {
    max-height: 400px;
    pointer-events: auto;
  }

  .nav-dropdown a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* Store Links Section Navigation */
.store-links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.store-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.store-links .btn {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

@media (max-width: 768px) {
  .store-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  .store-links .btn {
    width: 100%;
  }
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow, border-color, background;
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(188,19,254,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.store-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(0,242,255,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  background: rgba(0,242,255,0.03);
}

.store-card:hover::before {
  opacity: 1;
}

/* Hover glow / lift animation (subtle, accessible-friendly) */
.store-card {
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.store-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(450px 200px at 10% 20%, rgba(0,242,255,0.06), transparent 8%),
              radial-gradient(300px 120px at 90% 80%, rgba(188,19,254,0.04), transparent 8%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.store-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0,242,255,0.12), 0 0 60px rgba(188,19,254,0.06);
}

.store-card:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .store-card, .store-card:hover { transform: none !important; transition: none !important; }
  .store-card::after { display: none; }
}

.store-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid var(--border);
}

.store-title { font-weight: 800; }
.store-desc { color: var(--text-muted); }
.store-action { margin-top: auto; font-weight: 700; color: var(--primary); }

.store-cta { text-align: center; margin-top: 2rem; }

.store-embed {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.store-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.store-banner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.store-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.store-banner-actions { display: flex; gap: 1rem; }

.btn.added {
  background: #10b981;
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 0 25px rgba(16,185,129,0.35);
  color: #00110a;
}

@keyframes tickPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.store-section {
  position: relative;
}
.blocked-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 20px;
  width: 100%;
  background-color: #212121;
  border: none;
  color: #e8e8e8;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: not-allowed;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blocked-btn span { display: flex; align-items: center; z-index: 2; }
.blocked-btn::before { content: ""; position: absolute; inset: 0; translate: 0 105%; background-color: #F53844; transition: all 0.3s; }
.blocked-btn svg { width: 28px; height: 28px; fill: #F53844; transition: all 0.3s; }
.blocked-btn:hover { animation: shake 0.2s linear 1; }
.blocked-btn:hover::before { translate: 0 0; }
.blocked-btn:hover svg { fill: #e8e8e8; }

@keyframes shake { 0% { rotate: 0deg; } 33% { rotate: 10deg; } 66% { rotate: -10deg; } 100% { rotate: 10deg; } }
.loader {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truckWrapper {
  width: 200px;
  height: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  overflow-x: hidden;
}

.truckBody {
  width: 130px;
  height: auto;
  margin-bottom: 6px;
  animation: motion 0.8s linear infinite;
}

@keyframes motion {
  0% { transform: translateY(0px); }
  50% { transform: translateY(3px); }
  100% { transform: translateY(0px); }
}

.truckTires {
  width: 130px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 15px;
  position: absolute;
  bottom: 0;
}
.truckTires svg { width: 24px; }

.road {
  width: 100%;
  height: 1.5px;
  background-color: #282828;
  position: relative;
  bottom: 0;
  align-self: flex-end;
  border-radius: 3px;
}
.road::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background-color: #282828;
  right: -50%;
  border-radius: 3px;
  animation: roadAnimation 0.9s linear infinite;
  border-left: 10px solid white;
}
.road::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  background-color: #282828;
  right: -65%;
  border-radius: 3px;
  animation: roadAnimation 0.9s linear infinite;
  border-left: 4px solid white;
}

.lampPost {
  position: absolute;
  bottom: 0;
  right: -90%;
  height: 90px;
  animation: roadAnimation 0.9s linear infinite;
}

@keyframes roadAnimation {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-350px); }
}

/* Delivery Section */
.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.delivery-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.delivery-feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.delivery-feature:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
  transform: translateX(5px);
}

.delivery-icon {
  font-size: 2.5rem;
  color: var(--primary);
}

.delivery-feature h3 {
  font-size: 1.3rem;
  margin: 0;
}

.delivery-feature p {
  margin: 0;
  color: var(--text-muted);
}

.delivery-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  min-height: 300px;
}

.delivery-cta {
  text-align: center;
}

/* Promotions / Social Section */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(188, 19, 254, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0,242,255,0.15);
}

.social-card:hover::before {
  opacity: 1;
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.social-card p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.social-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.social-card:hover .social-link {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-dim);
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
  font-size: 1.2rem;
}

.video-card p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '›';
  font-size: 2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 500px;
}

/* bg-darker helper */
.bg-darker {
  background: #000 !important;
}

/* Text align helper */
.text-center {
  text-align: center !important;
}

/* Success Cases Section */
.success-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.success-case-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.success-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.success-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.success-header {
  margin-bottom: 1.5rem;
}

.business-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.business-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.business-location {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stars-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(188, 19, 254, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stars-before,
.stars-after {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.stars-before .label,
.stars-after .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.star {
  font-size: 2.5rem;
  color: var(--primary);
  animation: starPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.star.empty {
  color: var(--text-muted);
  opacity: 0.2;
}

.rating {
  margin-left: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  animation: slideArrow 1.5s ease-in-out infinite;
}

.reviews-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.review-item:hover {
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-main);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-style: italic;
}

.success-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.success-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(188, 19, 254, 0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
}

.success-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@keyframes starPop {
  0% { transform: scale(0.5); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes slideArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Testimonios */
.testimonios-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.testimonio-card {
  background: rgba(0,242,255,0.07);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  max-width: 340px;
  min-width: 220px;
  color: var(--text-main);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  font-size: 1.08rem;
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}
.testimonio-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(0,242,255,0.18);
}
.testimonio-nombre {
  display: block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #20ba58);
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  border: 3px solid white;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 32px 0 rgba(37, 211, 102, 0.6);
  animation: none;
}

/* Chat Widget */
.chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #000;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 998;
  animation: chat-float 3s ease-in-out infinite;
}

.chat-toggle:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.8), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 998;
  transition: all 0.3s ease;
}

.chat-widget.active {
  max-height: 550px;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(188, 19, 254, 0.1));
  border-bottom: 1px solid var(--border);
}

.chat-header h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-main);
}

.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 350px;
}

.chat-message {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  word-wrap: break-word;
  animation: chat-message-in 0.3s ease;
  font-size: 0.9rem;
}

.chat-message.user {
  background: rgba(0, 242, 255, 0.15);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: var(--text-main);
  margin-left: 2rem;
  text-align: right;
}

.chat-message.admin {
  background: rgba(188, 19, 254, 0.15);
  border: 1px solid rgba(188, 19, 254, 0.3);
  color: var(--text-main);
  margin-right: 2rem;
}

.chat-message.system {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.chat-input-area {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

#chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

#chat-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 242, 255, 0.05);
}

.btn-send {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #000;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-send:active {
  transform: translateY(0);
}

/* Animations Chat */
@keyframes chat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes chat-slide-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chat-message-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chat Responsive */
@media screen and (max-width: 480px) {
  .chat-widget {
    width: calc(100vw - 60px);
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .chat-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Iconos en tarjetas de redes sociales */
.icon-red-social {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px #0002;
}

/* Botón de red social */
.btn-red-social {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #00f2ff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px #00f2ff55;
  transition: background 0.18s, color 0.18s;
}
.btn-red-social:hover {
  background: #00c2cc;
  color: #fff;
}

/* Animación de pulso para WhatsApp flotante */
@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 24px 0 rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 32px 0 rgba(37, 211, 102, 0.7);
    transform: scale(1.05);
  }
}

/* ============================================
   STREAMING PRODUCTS - Nuevos Estilos
   ============================================ */

.streaming-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin: 3rem 0;
}

.product-card {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08) 0%, rgba(188, 19, 254, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.2);
  border-color: rgba(0, 242, 255, 0.4);
}

.product-header {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #1a1a2e;
}

.product-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Category-specific micro-animations */
.product-card[data-category="streaming"] .product-image {
  box-shadow: inset 0 -40px 80px rgba(0,242,255,0.03);
  transition: box-shadow 420ms ease, transform 420ms ease;
}
.product-card[data-category="streaming"]:hover {
  transform: translateY(-10px) scale(1.03);
}
@keyframes streamingPulse {
  0% { filter: saturate(0.95) hue-rotate(0deg); }
  50% { filter: saturate(1.05) hue-rotate(6deg); }
  100% { filter: saturate(0.95) hue-rotate(0deg); }
}
.product-card[data-category="streaming"]:hover .product-image img {
  animation: streamingPulse 2.6s ease-in-out both;
}

.product-card[data-category="gaming"] {
  border-color: rgba(255,190,0,0.06);
}
.product-card[data-category="gaming"] .product-badge {
  background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
  color: #111;
}
.product-card[data-category="gaming"]:hover {
  transform: translateY(-12px) rotate(-1deg) scale(1.035);
  box-shadow: 0 18px 48px rgba(255,150,0,0.08);
}
@keyframes gamingGlow {
  0% { box-shadow: 0 0 0 rgba(255,150,0,0); }
  50% { box-shadow: 0 0 28px rgba(255,150,0,0.08); }
  100% { box-shadow: 0 0 0 rgba(255,150,0,0); }
}
.product-card[data-category="gaming"]:hover .product-image img {
  animation: gamingGlow 1.8s linear;
}

.product-card[data-category="design"] {
  transform-origin: center;
}
.product-card[data-category="design"] .product-image {
  background: linear-gradient(135deg, #16121a 0%, #1e1930 100%);
}
.product-card[data-category="design"]:hover {
  transform: translateY(-8px) scale(1.02) rotate(0.2deg);
  box-shadow: 0 14px 36px rgba(120,80,200,0.06);
}

.product-card[data-category="ai"] .product-image img {
  transition: transform 420ms ease, filter 420ms ease;
  filter: drop-shadow(0 6px 18px rgba(54,144,255,0.06));
}
.product-card[data-category="ai"]:hover .product-image img {
  transform: scale(1.12) translateY(-6px);
  filter: drop-shadow(0 10px 30px rgba(54,144,255,0.12));
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #00f2ff 0%, #bc13fe 100%);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 242, 255, 0.3);
}

.product-info {
  padding: 1.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #00f2ff;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: #a0a0a0;
  text-transform: lowercase;
  font-weight: 600;
}

.product-features {
  list-style: none;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.product-features .material-symbols-outlined {
  font-size: 1.2rem;
  color: #00f2ff;
  flex-shrink: 0;
  margin-top: 0.2rem;
  line-height: 1.2;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #25d366;
}

.product-guarantee .material-symbols-outlined {
  font-size: 1.1rem;
}

/* Responsive para tablets y mobile */
@media (max-width: 768px) {
  .streaming-products {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.6rem;
  }

  .product-header {
    height: 150px;
  }

  .product-info {
    padding: 1.2rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .price-amount {
    font-size: 1.6rem;
  }

  .product-features li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 480px) {
  .streaming-products {
    grid-template-columns: 1fr;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-header {
    height: 140px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 1.4rem;
  }

  .product-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ============================================
   AI BOT PLANS - Estilos para Planes de IA
   ============================================ */

.bot-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.4rem;
  margin: 3rem 0;
}

.bot-plan-card {
  background: linear-gradient(135deg, rgba(0, 242, 255, 0.08) 0%, rgba(188, 19, 254, 0.05) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, scale 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bot-plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0, 242, 255, 0.25);
  border-color: rgba(0, 242, 255, 0.4);
}

.bot-plan-card.popular {
  scale: 1.06;
  border: 2px solid #00f2ff;
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bot-plan-card.popular:hover {
  box-shadow: 0 16px 48px rgba(0, 242, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.plan-badge-premium {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00f2ff 0%, #bc13fe 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 242, 255, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.8rem;
  margin-top: 0.5rem;
}

.plan-badge {
  display: inline-block;
  background: rgba(0, 242, 255, 0.2);
  color: #00f2ff;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(0, 242, 255, 0.3);
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
}

.price-currency {
  font-size: 1.2rem;
  color: #00f2ff;
  font-weight: 700;
}

.price-large {
  font-size: 3.2rem;
  font-weight: 800;
  color: #00f2ff;
  line-height: 1;
}

.plan-price .price-period {
  font-size: 0.85rem;
  color: #a0a0a0;
  align-self: flex-end;
  margin-bottom: 0.8rem;
  text-transform: lowercase;
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 242, 255, 0.1);
  font-size: 0.95rem;
  color: #c0c0c0;
  line-height: 1.4;
}

.feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feature-item .material-symbols-outlined {
  font-size: 1.3rem;
  color: #25d366;
  flex-shrink: 0;
  font-weight: 800;
}

.btn-secondary {
  background: linear-gradient(135deg, #bc13fe 0%, #7d00ff 100%);
  border: 1px solid rgba(188, 19, 254, 0.5);
  color: #fff;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #9600cc 0%, #6200dd 100%);
  box-shadow: 0 8px 20px rgba(188, 19, 254, 0.3);
}

/* Responsive para tablets y mobile */
@media (max-width: 768px) {
  .bot-plans-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .bot-plan-card.popular {
    scale: 1;
  }

  .plan-header h3 {
    font-size: 1.3rem;
  }

  .price-large {
    font-size: 2.4rem;
  }

  .feature-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .plan-badge-premium {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .bot-plan-card {
    padding: 1.5rem;
  }

  .plan-header {
    margin-bottom: 1.4rem;
  }

  .plan-header h3 {
    font-size: 1.1rem;
  }

  .price-large {
    font-size: 2rem;
  }

  .feature-item {
    font-size: 0.85rem;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .feature-item .material-symbols-outlined {
    font-size: 1.1rem;
  }
}

/* ============================================
   PRODUCT DETAIL MODAL + ANIMATIONS
   ============================================ */

.product-modal {
  max-width: 920px;
  width: calc(100% - 2rem);
  background: linear-gradient(180deg, rgba(10,12,20,0.98), rgba(8,10,16,0.98));
  border-radius: 12px;
  padding: 0.6rem;
  overflow: hidden;
  animation: modalPop 320ms ease forwards;
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1rem;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1);
}

.product-modal-info { padding: 0.4rem 0.6rem; }
.product-modal-price { font-size: 2.2rem; font-weight:800; color: var(--primary); margin-bottom: 0.6rem; }
.product-modal-features { list-style: none; padding-left: 0; margin-bottom: 0.8rem; }
.product-modal-features li { margin-bottom: 0.5rem; color: #cfd8e3; }
.product-modal-desc { color: #a8b4c6; margin-bottom: 1rem; }
.product-modal .close-btn { position: absolute; right: 12px; top: 10px; z-index: 60; background: transparent; border: none; color: #fff; }

.modal.hidden { display: none; }
.modal.active { display: block; position: fixed; inset: 0; z-index: 2000; background: rgba(2,6,12,0.6); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }

@keyframes modalPop {
  0% { transform: translateY(12px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Hover micro-animations for product cards */
.product-card { transform-origin: center; transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms; }
.product-card:hover { transform: translateY(-8px) rotate(-0.5deg) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.55); }
.product-card .product-badge { transition: transform 260ms, box-shadow 260ms; }
.product-card:hover .product-badge { transform: translateY(-6px); box-shadow: 0 6px 18px rgba(0,242,255,0.12); }

/* small bounce on image hover */
.product-card .product-image img { transition: transform 420ms cubic-bezier(.22,.9,.3,1); }
.product-card:hover .product-image img { transform: scale(1.08) translateY(-6px); }

/* Responsive modal grid */
@media (max-width: 768px) {
  .product-modal-body { grid-template-columns: 1fr; }
  .product-modal-image img { max-height: 260px; }
}

/* ============================================
   REORGANIZED STORE SECTION
   ============================================ */

/* Store Introduction Section */
.store-intro {
  background: linear-gradient(135deg, rgba(0,242,255,0.05), rgba(188,19,254,0.03));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.store-intro-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.store-intro-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Category Introduction Cards */
.store-categories-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-intro-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.category-intro-card:hover {
  border-color: var(--primary);
  background: rgba(0,242,255,0.06);
  transform: translateY(-4px);
}

.category-intro-card .category-number {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.category-intro-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.category-intro-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Store Products Section */
.store-products-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Individual Category */
.store-category {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  overflow: hidden;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
}

.category-header .category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
  flex-grow: 1;
}

.category-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
}

/* Category Products Grid */
.category-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Store Links Section */
.store-links-section {
  background: rgba(0,242,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.store-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.store-links .btn {
  min-width: 220px;
}

/* Responsive Store Section */
@media (max-width: 1024px) {
  .store-intro {
    padding: 2rem 1.5rem;
  }

  .store-intro-content h3 {
    font-size: 1.5rem;
  }

  .category-header {
    gap: 1rem;
  }

  .category-header h3 {
    font-size: 1.4rem;
  }

  .category-header p {
    display: none;
  }

  .category-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .store-intro {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .store-intro-content h3 {
    font-size: 1.3rem;
  }

  .store-intro-content p {
    font-size: 1rem;
  }

  .store-categories-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .store-products-section {
    gap: 2.5rem;
  }

  .store-category {
    padding: 1.5rem;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .category-header .category-badge {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .category-header h3 {
    font-size: 1.3rem;
  }

  .category-products {
    gap: 1.5rem;
  }

  .store-links {
    grid-template-columns: 1fr;
  }

  .store-links .btn {
    width: 100%;
  }

  .store-links-section {
    padding: 1.5rem;
  }
}

/* ===========================
   CAROUSEL STYLES - Tienda Digital
   =========================== */

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 2rem;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.carousel-card {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 380px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-card:hover {
  background: rgba(20, 20, 30, 0.95);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.15);
}

.carousel-card .card-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.carousel-card .card-category {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.carousel-card .card-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.carousel-card .card-features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.carousel-card .card-features-list .material-symbols-outlined {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.carousel-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Carousel Buttons */
.carousel-btn {
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 242, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.indicator:hover {
  transform: scale(1.2);
}

.indicator:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Responsive Carousel */
@media (max-width: 1024px) {
  .carousel-container {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .carousel-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .carousel-card {
    max-width: 100%;
    min-height: auto;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-track {
    gap: 1rem;
  }

  .carousel-card .card-features-list li {
    font-size: 0.9rem;
  }
}

/* Menu Toggle - Desktop Support */
@media (min-width: 768px) {
  .menu-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    min-width: 350px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1200;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-menu ul li {
    animation: none;
  }

  .nav-menu .nav-link {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .nav-menu .nav-link:hover {
    background: rgba(0, 242, 255, 0.1);
  }

  .nav-menu .dropdown {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 1rem;
    border-left: 2px solid rgba(0, 242, 255, 0.3);
    display: none;
  }

  .nav-menu li:hover > .dropdown {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }
}

/* Keyboard Navigation Support */
@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .carousel-card,
  .carousel-btn,
  .indicator {
    transition: none;
  }
}

/* ===========================
   SECTION COLOR PALETTE
   Diferenciación por sección (1/4, 2/4, 3/4, 4/4)
   =========================== */

/* 1/4 - STREAMING (Azul/Tecnología) */
body:has(.animated-bg[style*="0099cc"]) {
  --section-primary: #0099cc;
}

.section[style*="0099cc"] .section-header .subtitle {
  color: #0099cc;
}

.section[style*="0099cc"] .subtitle::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0099cc;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* 2/4 - DISEÑO Y MARCA (Naranja/Creatividad) */
body:has(.animated-bg[style*="ff9900"]) {
  --section-primary: #ff9900;
}

.section[style*="ff9900"] .section-header .subtitle {
  color: #ff9900;
}

/* 3/4 - PROGRAMACIÓN (Verde/Tecnología) */
body:has(.animated-bg[style*="00cc66"]) {
  --section-primary: #00cc66;
}

.section[style*="00cc66"] .section-header .subtitle {
  color: #00cc66;
}

/* 4/4 - PREMIUM (Dorado/Exclusividad) */
body:has(.animated-bg[style*="ffcc00"]) {
  --section-primary: #ffcc00;
}

.section[style*="ffcc00"] .section-header .subtitle {
  color: #ffcc00;
}

/* Section color accent line */
.section-header::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Product cards with section-specific glow */
.streaming-products .product-card {
  position: relative;
}

.streaming-products .product-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.streaming-products .product-card:hover::after {
  opacity: 1;
}

/* ===========================
   TIENDA HERO - Nueva Sección Principal
   =========================== */

.tienda-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(7, 16, 24, 0.95), rgba(20, 25, 45, 0.95));
  padding: 4rem 0;
  overflow: hidden;
  margin: 0;
}

.tienda-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tienda-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.08), transparent);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.tienda-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(188, 19, 254, 0.06), transparent);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.tienda-hero .container {
  position: relative;
  z-index: 1;
}

/* Tienda Header */
.tienda-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tienda-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00f2ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.tienda-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.tienda-title .gradient-text {
  background: linear-gradient(135deg, #00f2ff, #bc13fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tienda-subtitle {
  font-size: 1.2rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Garland Lights for Tienda */
.garland-lights-tienda {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg,
    transparent 0%,
    #00f2ff 10%,
    transparent 20%,
    #bc13fe 30%,
    transparent 40%,
    #00f2ff 50%,
    transparent 60%,
    #bc13fe 70%,
    transparent 80%,
    #00f2ff 90%,
    transparent 100%);
  border-radius: 4px;
  margin: 1.5rem 0;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4), 0 0 40px rgba(188, 19, 254, 0.2);
  animation: lightPulse 3s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Tienda Carousel */
.tienda-carousel {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tienda-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(20, 25, 45, 0.8);
  border: 1px solid rgba(0, 242, 255, 0.15);
  backdrop-filter: blur(10px);
}

.tienda-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tienda-slide {
  flex: 0 0 100%;
  padding: 3rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tienda-slide-content {
  text-align: center;
  animation: fadeInSlide 0.5s ease-out;
  width: 100%;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounceIcon 0.8s ease-out;
}

@keyframes bounceIcon {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1) rotate(0deg); }
}

.tienda-slide-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tienda-slide-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.slide-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.slide-benefits span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #a0a0a0;
}

.slide-benefits .material-symbols-outlined {
  color: #00f2ff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Carousel Buttons */
.tienda-carousel-btn {
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  color: #00f2ff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.tienda-carousel-btn:hover {
  background: #00f2ff;
  color: #000;
  box-shadow: 0 6px 24px rgba(0, 242, 255, 0.4);
  transform: scale(1.1);
}

.tienda-carousel-btn:focus {
  outline: 2px solid #00f2ff;
  outline-offset: 4px;
}

.tienda-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Carousel Indicators */
.tienda-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tienda-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #00f2ff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tienda-indicator.active {
  background: #00f2ff;
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.6);
  transform: scale(1.2);
}

.tienda-indicator:hover {
  transform: scale(1.3);
}

/* Responsive Tienda */
@media (max-width: 1024px) {
  .tienda-hero {
    min-height: 450px;
    padding: 3rem 0;
  }

  .tienda-title {
    font-size: 2.2rem;
  }

  .tienda-carousel {
    gap: 1rem;
  }

  .tienda-slide {
    padding: 2rem;
    min-height: 280px;
  }

  .slide-icon {
    font-size: 2.5rem;
  }

  .tienda-slide-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tienda-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .tienda-title {
    font-size: 1.8rem;
  }

  .tienda-subtitle {
    font-size: 1rem;
  }

  .tienda-carousel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .tienda-carousel-wrapper {
    order: 2;
  }

  .tienda-prev {
    order: 1;
  }

  .tienda-next {
    order: 3;
  }

  .tienda-slide {
    padding: 1.5rem;
    min-height: 250px;
  }

  .slide-icon {
    font-size: 2rem;
  }

  .tienda-slide-content h2 {
    font-size: 1.3rem;
  }

  .tienda-slide-content p {
    font-size: 0.95rem;
  }

  .slide-benefits {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .tienda-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}


