/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; margin: 24px 32px; border-radius: var(--radius); overflow: hidden; min-height: 440px; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  display: flex; align-items: flex-end;
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,20,.96) 8%, rgba(10,14,20,.45) 55%, rgba(10,14,20,.05) 100%);
}
.hero-slide .hero-content { position: relative; padding: 44px; max-width: 560px; }
.hero-slide .hero-tag { font-size: 2.4rem; font-weight: 900; letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase; }
.hero-slide .hero-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.hero-slide .hero-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.5; margin-bottom: 18px; max-height: 4.5em; overflow: hidden; }
.hero-actions { display: flex; gap: 10px; }
.hero-actions .btn-primary, .hero-actions .btn-outline-hero {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 12px 22px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none;
}
.hero-actions .btn-outline-hero { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }

.hero-dots { position: absolute; bottom: 16px; left: 44px; display: flex; gap: 6px; z-index: 5; }
.hero-dots span { width: 22px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s; }
.hero-dots span.active { background: var(--cyan); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(10,14,20,.55); color: #fff; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 6;
}
.hero-arrow:hover { background: var(--cyan-dark); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

/* ---------- Filas de carrusel ---------- */
.carousel-section { margin-bottom: 36px; }
.carousel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; margin-bottom: 14px;
}
.carousel-header h2 { color: var(--cyan); font-size: 1.25rem; font-weight: 800; margin: 0; letter-spacing: .5px; }
.carousel-nav-btns { display: flex; gap: 8px; }
.carousel-nav-btns button {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-panel); color: var(--text); cursor: pointer;
}
.carousel-nav-btns button:hover { border-color: var(--cyan-dark); color: var(--cyan); }

.carousel-track-wrap { overflow: hidden; padding: 0 32px; }
.carousel-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 auto; width: 170px;
  background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .15s, border-color .15s; text-decoration: none; color: inherit;
}
.carousel-card:hover { transform: translateY(-4px); border-color: var(--cyan-dark); }
.carousel-card .cc-cover { position: relative; aspect-ratio: 3/4; background: #1a2130; }
.carousel-card .cc-cover img { width: 100%; height: 100%; object-fit: cover; }
.carousel-card .cc-platform {
  position: absolute; top: 8px; right: 8px; background: #0d131e; color: var(--cyan);
  font-size: .68rem; font-weight: 800; padding: 3px 7px; border-radius: 5px;
}
.carousel-card .cc-body { padding: 9px 11px 12px; }
.carousel-card .cc-title { font-size: .85rem; font-weight: 700; line-height: 1.25; height: 2.2em; overflow: hidden; }
.carousel-card .cc-price { margin-top: 5px; font-size: .88rem; font-weight: 800; color: var(--cyan); }

@media (max-width: 900px) {
  .hero-slider { margin: 12px; min-height: 360px; }
  .hero-slide .hero-content { padding: 22px; max-width: 100%; }
  .hero-slide .hero-tag { font-size: 1.7rem; }
  .carousel-header, .carousel-track-wrap { padding: 0 16px; }
  .carousel-card { width: 130px; }
}