@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --bg-primary: #050515;
  --bg-secondary: #0b0b26;
  --bg-card: rgba(13, 13, 43, 0.75);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(0, 255, 204, 0.25);
  --primary: #00ffcc;
  --secondary: #ff007f;
  --accent: #bc00dd;
  --gradient: linear-gradient(135deg, #00ffcc 0%, #ff007f 100%);
  --gradient-purple: linear-gradient(135deg, #bc00dd 0%, #00ffcc 100%);
  --text: #e0e0ff;
  --text-muted: rgba(224, 224, 255, 0.6);
  --radius: 20px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 35px rgba(0, 255, 204, 0.3);
}

/* 1. RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif; letter-spacing: 1px;
}

::selection {
  background-color: var(--primary);
  color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Helper for gradient text */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* 2. TOP BAR */
.topbar {
  width: 100%;
  background: var(--gradient);
  height: 40px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.topbar__inner {
  width: 100%;
  overflow: hidden;
}

.topbar__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.topbar__content {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: nowrap;
  padding-right: 4rem;
}

/* 3. NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.navbar__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

.navbar__logo-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--primary);
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* 4. HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.12), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(170, 124, 17, 0.08), transparent 50%);
  position: relative;
}

.hero__content {
  max-width: 800px;
  padding: 2rem;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title span.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--gradient);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s infinite;
}

.hero__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero__counters {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
}

.counter {
  text-align: center;
}

.counter__num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.counter__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__devices {
  margin-top: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero__devices img {
  max-width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.hero__payments {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.7;
}

/* 5. CATALOG SECTION */
.catalogo {
  padding: 5rem 1.5rem;
}

.catalogo__header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalogo__title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.catalogo__subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.catalogo__filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  color: #000;
  font-weight: 600;
  border-color: transparent;
}

.catalogo__grid {
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .catalogo__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .catalogo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .catalogo__grid {
    grid-template-columns: 1fr;
  }
}

/* 6. PRODUCT CARD */
.card {
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 204, 0.1);
  border-color: var(--primary);
}

.card__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card__slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.card__slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.card__slider-nav.prev {
  left: 8px;
}

.card__slider-nav.next {
  right: 8px;
}

.card__slider-nav:hover {
  background: var(--primary);
  color: #000;
}

.card__slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.card__slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.card__slider-dots .dot.active {
  background: var(--primary);
  width: 20px;
  border-radius: 4px;
}

.card__body {
  padding: 1rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  letter-spacing: 0.5px;
}

.card__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge--sales {
  background: rgba(255, 215, 0, 0.15) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.badge--new {
  background: rgba(255, 0, 127, 0.15) !important;
  color: #ff007f !important;
  border: 1px solid rgba(255, 0, 127, 0.3) !important;
}

.badge--price {
  background: rgba(0, 212, 255, 0.15) !important;
  color: var(--secondary) !important;
  border: 1px solid rgba(0, 212, 255, 0.3) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
}

.card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.card__features li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.card__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.btn--buy {
  background: var(--gradient);
  color: #000;
  flex: 1;
}

.btn--buy:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}

.btn--demo {
  background: var(--glass);
  color: var(--secondary);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn--demo:hover {
  background: rgba(0, 212, 255, 0.15);
}

.btn--desc {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  flex: 1;
}

.btn--desc:hover {
  border-color: var(--primary);
}

/* 7. COMO FUNCIONA */
.como-funciona {
  padding: 5rem 1.5rem;
  background: var(--bg-secondary);
}

.como-funciona__header {
  text-align: center;
  margin-bottom: 3rem;
}

.como-funciona__title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.step__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: #000;
}

.step__num {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. TESTIMONIALS */
.testimonios {
  padding: 5rem 1.5rem;
}

.testimonios__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonios__track-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonios__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-testimonials 30s linear infinite;
}

.testimonios__track:hover {
  animation-play-state: paused;
}

.testimonio {
  min-width: 320px;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.testimonio__stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonio__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonio__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonio__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.85rem;
}

.testimonio__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonio__country {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 9. PAYMENT METHODS */
.pagos {
  padding: 5rem 1.5rem;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.pagos__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.pagos__grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.pagos__card {
  flex: 1 1 260px;
  max-width: 300px;
  background: var(--bg-card);
  border: 2px solid rgba(0, 255, 204, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pagos__card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 204, 0.15);
}

.payment-icon {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.05));
  transition: transform 0.3s ease;
}

.pagos__card:hover .payment-icon {
  transform: scale(1.1) rotate(5deg);
}

.pagos__card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pagos__card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* 10. FOOTER */
.footer {
  padding: 3rem 1.5rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.15));
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1.5rem;
  width: 100%;
}

/* 11. MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  max-width: 600px;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal__close:hover {
  background: rgba(255, 0, 0, 0.3);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-right: 2rem;
  font-family: 'Outfit', sans-serif;
}

.modal__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  white-space: pre-wrap;
}

/* 12. WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: bounce-float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

/* 13. REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 14. RESPONSIVE */
@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }
  
  .navbar__links {
    display: none;
  }
  
  .navbar__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .hero {
    min-height: 70vh;
  }
  
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero__counters {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .catalogo__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
  }
  
  .hero__cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .catalogo {
    padding: 3rem 1rem;
  }
  
  .como-funciona, .testimonios, .pagos {
    padding: 3rem 1rem;
  }
  
  .card__body {
    padding: 1rem;
  }
}

/* 15. ANIMATIONS */
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.4); }
}

@keyframes bounce-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}

/* ============================================
   NEW IMPROVEMENTS
   ============================================ */

/* ANIMATED GRADIENT HERO BACKGROUND */
.hero {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(170, 124, 17, 0.08), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(245, 215, 110, 0.05), transparent 50%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* COUNTDOWN TIMER */
.hero__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero__countdown .countdown-label {
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.25rem;
}

.countdown-boxes {
  display: flex;
  gap: 0.5rem;
}

.countdown-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.65rem;
  text-align: center;
  min-width: 55px;
}

.countdown-box .num {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.countdown-box .unit {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* POR QUE ELEGIRNOS */
.porque {
  padding: 5rem 1.5rem;
  background: var(--bg-secondary);
}

.porque__header {
  text-align: center;
  margin-bottom: 3rem;
}

.porque__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.porque__card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, border-color 0.3s;
}

.porque__card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.porque__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.porque__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.porque__card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .porque__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .porque__grid {
    grid-template-columns: 1fr;
  }
}

/* BADGE MAS VENDIDO */
.badge--popular {
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
  animation: pulse-badge 2s ease infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* STRIKETHROUGH PRICE */
.price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 0.25rem;
}

/* SEARCH BAR */
.catalogo__search {
  max-width: 450px;
  margin: 1.5rem auto 0;
  position: relative;
}

.catalogo__search input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.catalogo__search input::placeholder {
  color: var(--text-muted);
}

.catalogo__search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.catalogo__search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.card--hidden {
  display: none !important;
}

/* FAQ SECTION */
.faq {
  padding: 5rem 1.5rem;
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item.active {
  border-color: var(--primary);
}

.faq__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--primary);
}

.faq__icon {
  font-size: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--primary);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 1500;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: #000;
  transform: scale(1.1);
}

/* SOCIAL LINKS */
.footer__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer__socials a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* CARD IMG LAZY */
.card__slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PARALLAX HERO subtle */
.hero__content {
  position: relative;
  z-index: 1;
}

/* LIGHTBOX MODAL */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 50px rgba(212, 175, 55, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.lightbox__close:hover {
  background: rgba(255, 0, 0, 0.6);
  transform: scale(1.1);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  transition: background 0.3s, transform 0.3s, color 0.3s, border-color 0.3s;
}

.lightbox__nav:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__nav.prev {
  left: 2rem;
}

.lightbox__nav.next {
  right: 2rem;
}

@media (max-width: 768px) {
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox__nav.prev {
    left: 1rem;
  }
  .lightbox__nav.next {
    right: 1rem;
  }
}

/* LOGO SUBTEXT (by RTVGO) */
.navbar__logo-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-subtext {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0.15rem;
  opacity: 0.95;
}

.footer__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer__logo-subtext {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0.1rem;
}



/* Hero Cyberpunk Grid and Particles */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200%;
  height: 100%;
  transform: translateX(-50%) perspective(500px) rotateX(60deg);
  background-image: 
    linear-gradient(to right, rgba(0, 255, 204, 0.05) 2px, transparent 2px),
    linear-gradient(to bottom, rgba(0, 255, 204, 0.05) 2px, transparent 2px);
  background-size: 50px 50px;
  background-position: center bottom;
  z-index: -2;
  animation: grid-scroll 20s linear infinite;
  will-change: background-position;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 85%);
}

@keyframes grid-scroll {
  from { background-position: 0 0; }
  to { background-position: 0 1000px; }
}

/* ===== POPUP DE BIENVENIDA / TRIAL ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 21, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  width: 90%;
  max-width: 480px;
  background: #070714;
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  border: 2px solid rgba(0, 255, 204, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.9),
    0 0 35px rgba(0, 255, 204, 0.18),
    0 0 15px rgba(255, 0, 127, 0.12);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-sizing: border-box;
}

.popup-overlay.active .popup-modal {
  transform: scale(1);
}

.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 110;
}

.popup__close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--primary);
  color: #000;
}

.popup__logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.popup__logo-img {
  height: 65px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.35));
}

.popup__logo-subtext {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.popup__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.2rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.popup__title .highlight-neon {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.popup__subtitle {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Rajdhani', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-transform: none;
  margin-top: 0.4rem;
  letter-spacing: 0.5px;
}

.popup__info-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  text-align: left;
  box-sizing: border-box;
}

.popup__info-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 8px rgba(0, 255, 204, 0.3));
}

.popup__info-text {
  flex: 1;
}

.popup__info-es {
  font-size: 0.95rem;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.popup__info-es strong {
  color: var(--primary);
  font-weight: 700;
}

.popup__info-en {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  margin-top: 0.25rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.popup__info-en strong {
  color: #fff;
  font-weight: 600;
}

.popup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
  box-sizing: border-box;
}

.popup__cta-icon {
  display: inline-block;
  transition: transform 0.25s ease;
}

.popup__cta:hover {
  background: var(--gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 
    0 12px 30px rgba(0, 255, 204, 0.3),
    0 0 15px rgba(255, 0, 127, 0.2);
}

.popup__cta:hover .popup__cta-icon {
  transform: translateX(5px);
}







/* Card actions flex grid optimization for 3 buttons */
.card__actions {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin-top: 1rem !important;
}

.card__actions .btn {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  font-size: 0.8rem !important;
  padding: 0.65rem 1rem !important;
}

.card__actions .btn--desc, 
.card__actions .btn--demo {
  flex: 1 1 calc(50% - 0.25rem) !important;
  min-width: 100px !important;
}

.card__actions .btn--buy {
  flex: 1 1 100% !important;
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.85rem !important;
}

/* ===== COMO FUNCIONA REMINDER BOX ===== */
.como-funciona__reminder {
  max-width: 800px;
  margin: 3rem auto 0;
  box-sizing: border-box;
}

.reminder-box {
  background: rgba(255, 0, 127, 0.03);
  border: 2px solid rgba(255, 0, 127, 0.25);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 0, 127, 0.05);
  text-align: left;
}

.reminder-box__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reminder-box__icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.4));
}

.reminder-box__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff007f;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.reminder-box__desc {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.reminder-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.reminder-box__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  position: relative;
  padding-left: 1.5rem;
}

.reminder-box__list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.reminder-box__list li strong {
  color: #fff;
  font-weight: 600;
}

.reminder-box__list li em {
  color: #00ffcc;
  font-style: normal;
  font-weight: 600;
}


/* ===== TESTIMONIALS ROLLING ROWS ===== */
.testimonios__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  width: 100%;
}

.testimonios__container::before,
.testimonios__container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonios__container::before {
  left: 0;
  background: linear-gradient(to right, #090916 0%, transparent 100%);
}

.testimonios__container::after {
  right: 0;
  background: linear-gradient(to left, #090916 0%, transparent 100%);
}

.testimonios__row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.testimonios__track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.testimonio-card {
  flex: 0 0 320px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonio-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.testimonio-card__stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.testimonio-card__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.testimonio-card__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonio-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-purple);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
}

.testimonio-card__info {
  display: flex;
  flex-direction: column;
}

.testimonio-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.testimonio-card__meta {
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.1rem;
}

@keyframes scrollRTL {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes scrollLTR {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.testimonials-rtl .testimonios__track {
  animation: scrollRTL 45s linear infinite;
}

.testimonials-ltr .testimonios__track {
  animation: scrollLTR 45s linear infinite;
}

.testimonios__row:hover .testimonios__track {
  animation-play-state: paused;
}



@keyframes circle-pulse {
  0% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 0, 127, 0.2);
    border-color: #ff007f;
  }
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 127, 0.4);
    border-color: #00ffcc;
  }
}

.floating-file-sale:hover {
  width: 240px;
  border-color: #00ffcc;
  animation: none;
  justify-content: space-between;
  padding: 0 1.2rem;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(0, 255, 204, 0.35);
  transform: translateY(-50%) scale(1.02);
}

.floating-file-sale__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: calc(100% - 50px);
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-file-sale:hover .floating-file-sale__content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.floating-file-sale__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.floating-file-sale__text strong {
  color: #ff007f;
}

.floating-file-sale:hover .floating-file-sale__text strong {
  color: #00ffcc;
}

.floating-file-sale__icon-container {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
  gap: 2px;
}

.floating-file-sale:hover .floating-file-sale__icon-container {
  background: rgba(0, 255, 204, 0.1);
  transform: rotate(-10deg);
}

.floating-file-sale__icon {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 5px rgba(255, 0, 127, 0.4));
  line-height: 1;
}

.floating-file-sale__icon-sub {
  width: 44px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 8px;
  position: relative;
}

.floating-file-sale__marquee {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.42rem;
  font-weight: 900;
  color: var(--secondary);
  text-transform: uppercase;
  padding-left: 100%;
  animation: button-marquee 5s linear infinite;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.floating-file-sale:hover .floating-file-sale__marquee {
  color: #fff;
}

@keyframes button-marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.floating-file-sale:hover .floating-file-sale__icon {
  filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.4));
}

@media (max-width: 768px) {
  .floating-file-sale {
    left: 15px !important;
    right: auto !important;
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
    position: fixed !important;
    z-index: 99999 !important;
  }
  .floating-file-sale:hover {
    transform: translateY(-5px);
    width: 220px;
  }
}
/* ===== CARD BREATHING GLOW ===== */
@keyframes card-breath-opacity {
  0% {
    opacity: 0.12;
  }
  100% {
    opacity: 0.45;
  }
}

.card {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px var(--primary);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  animation: card-breath-opacity 3.5s ease-in-out infinite alternate;
  will-change: opacity;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.01) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 25px var(--primary) !important;
}

.card:hover::after {
  animation: none !important;
  opacity: 0.85 !important;
}























/* ===== CUSTOM BUTTON LAYOUT FOR ROKU GLASS (NO DEMO BUTTON) ===== */
.card--roku .card__actions .btn--desc {
  flex: 1 1 calc(50% - 0.25rem) !important;
}
.card--roku .card__actions .btn--buy {
  flex: 1 1 calc(50% - 0.25rem) !important;
  width: auto !important;
  padding: 0.65rem 1rem !important;
  font-size: 0.8rem !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}



/* Cyberpunk custom layout adaptations */
.card {
  border: 2px solid rgba(0, 255, 204, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: var(--bg-card) !important;
}
.card:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 204, 0.25) !important;
  transform: translateY(-8px) scale(1.01);
}
.badge {
  border-radius: 4px !important;
  text-transform: uppercase;
}
.btn {
  border-radius: 4px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.topbar {
  border-bottom: 2px solid var(--secondary);
}
.navbar {
  border-bottom: 2px solid var(--glass-border);
}
.topbar__content {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}
.hero__title {
  text-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}
