/* ============================================================
   W TECNOLOGY - Main Stylesheet
   Dark Tech / Gaming Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --green-neon:    #00ff88;
  --green-dark:    #00cc6a;
  --green-dim:     #00993d;
  --green-glow:    rgba(0, 255, 136, 0.25);
  --purple-main:   #7b2fff;
  --purple-light:  #a855f7;
  --bg-primary:    #0a0d0a;
  --bg-secondary:  #0d110d;
  --bg-card:       #111814;
  --bg-card2:      #131a13;
  --border-green:  rgba(0, 255, 136, 0.2);
  --border-dim:    rgba(255,255,255,0.07);
  --text-white:    #ffffff;
  --text-light:    #c8d4c8;
  --text-muted:    #7a9a7a;
  --text-label:    #00ff88;
  --shadow-green:  0 0 20px rgba(0, 255, 136, 0.3);
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.6);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Sizing updates for laptops/desktops and large screens */
@media (min-width: 1440px) {
  html {
    font-size: 17.5px;
  }
}

@media (min-width: 1680px) {
  html {
    font-size: 19px;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 20px;
  }
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: transparent;
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Dark background applied to every section EXCEPT hero */
#navbar,
#brands,
#categories,
#feature-banner,
#products,
#latest-news,
#info-newsletter,
#footer {
  background-color: var(--bg-primary);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utility Classes ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-neon);
  display: block;
  margin-bottom: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--green-neon);
  color: var(--green-neon);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--green-neon);
  color: #000;
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--green-neon);
  border: 1.5px solid var(--green-neon);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.btn-solid:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--green-neon);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.see-details {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-neon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.see-details:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green-dark);
  gap: 8px;
}
.see-details::after { content: '→'; font-size: 0.85rem; }

.divider-line {
  width: 40px;
  height: 2px;
  background: var(--green-neon);
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-green);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

/* Tech brackets pseudo-elements */
.navbar-nav a::before,
.navbar-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 14px;
  border-color: var(--green-neon);
  border-style: solid;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

/* Left bracket: [ */
.navbar-nav a::before {
  left: 4px;
  border-width: 1.5px 0 1.5px 1.5px;
  transform: translateY(-50%) translateX(-6px);
}

/* Right bracket: ] */
.navbar-nav a::after {
  right: 4px;
  border-width: 1.5px 1.5px 1.5px 0;
  transform: translateY(-50%) translateX(6px);
}

/* Hover and Active states */
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--text-white);
  text-shadow: 0 0 8px var(--green-neon);
  background: rgba(0, 255, 136, 0.05);
}

.navbar-nav a:hover::before,
.navbar-nav a.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  filter: drop-shadow(0 0 4px var(--green-neon));
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  filter: drop-shadow(0 0 4px var(--green-neon));
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-actions .login-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.navbar-actions .login-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px var(--green-neon);
}

/* ============================================================
   HERO SECTION – CAROUSEL
   ============================================================ */
#hero {
  position: relative;
  min-height: 580px;
  background: #060d06 !important;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── Carousel container ─────────────────────────────────── */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

/* ── Track (moves horizontally) ─────────────────────────── */
.hero-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ── Individual slides ──────────────────────────────────── */
.hero-slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 580px;
  flex-shrink: 0;
}

/* ── Slide 2: image + video side-by-side (overlay style) ─ */
.hero-media-group {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -120px; /* Acerca la imagen al texto de la izquierda */
}

.hero-image.hero-image--s2 img,
.hero-image.hero-image--s3 img,
.hero-image.hero-image--s4 img {
  width: 520px;
  max-width: none;
}

/* Video panel overlays the bottom-right corner of the image */
.hero-video-panel {
  position: absolute;
  bottom: 20px;
  right: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(6, 13, 6, 0.85);
  padding: 8px 8px 10px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-green);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 136, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-video-panel:hover {
  border-color: var(--green-neon);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 255, 136, 0.35);
  transform: translateY(-2px);
}

.hero-video-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-neon);
  padding-left: 2px;
}

.hero-video-panel video {
  width: 190px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 255, 136, 0.2);
  display: block;
}

/* Tab button for mobile/tablet video demo */
.video-demo-btn {
  display: none;
  background: rgba(6, 13, 6, 0.9);
  border: 1.5px solid var(--border-green);
  color: var(--green-neon);
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.video-demo-btn:hover {
  border-color: var(--green-neon);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.35);
  color: var(--text-white);
}

/* Close button inside video panel modal on mobile */
.close-video-btn {
  display: none;
}

/* ── Arrow buttons ──────────────────────────────────────── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid var(--border-green);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--green-neon);
  backdrop-filter: blur(6px);
}
.carousel-arrow:hover {
  background: var(--green-neon);
  color: #000;
  border-color: var(--green-neon);
  box-shadow: var(--shadow-green);
}
.carousel-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.carousel-arrow--prev { left: 16px; }
.carousel-arrow--next { right: 16px; }

/* ── Dot indicators ─────────────────────────────────────── */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--green-neon);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--green-neon);
  box-shadow: 0 0 8px rgba(0,255,136,0.6);
  transform: scale(1.2);
}


.hero-bg {
  display: none;
}

/* Hexagon grid decoration */
.hex-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hex-item {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(0, 255, 136, 0.15);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexPulse 4s ease-in-out infinite;
}
.hex-item:nth-child(1) { top: 8%; left: 2%; width: 50px; height: 50px; animation-delay: 0s; }
.hex-item:nth-child(2) { top: 5%; left: 8%; width: 35px; height: 35px; animation-delay: 0.5s; opacity: 0.5; }
.hex-item:nth-child(3) { top: 25%; left: 1%; width: 40px; height: 40px; animation-delay: 1s; }
.hex-item:nth-child(4) { top: 55%; left: 4%; width: 55px; height: 55px; animation-delay: 1.5s; opacity: 0.4; }
.hex-item:nth-child(5) { top: 75%; left: 1%; width: 30px; height: 30px; animation-delay: 2s; }
.hex-item:nth-child(6) { top: 3%; right: 3%; width: 55px; height: 55px; animation-delay: 0.3s; }
.hex-item:nth-child(7) { top: 20%; right: 1%; width: 35px; height: 35px; animation-delay: 0.8s; opacity: 0.5; }
.hex-item:nth-child(8) { top: 60%; right: 2%; width: 45px; height: 45px; animation-delay: 1.3s; }
.hex-item:nth-child(9) { top: 80%; right: 5%; width: 30px; height: 30px; animation-delay: 1.8s; opacity: 0.4; }

@keyframes hexPulse {
  0%, 100% { opacity: 0.2; border-color: rgba(0, 255, 136, 0.15); }
  50% { opacity: 0.7; border-color: rgba(0, 255, 136, 0.5); }
}

/* Neon line decorations */
.neon-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.neon-lines::before,
.neon-lines::after {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  height: 1px;
  width: 40%;
  opacity: 0.3;
  animation: lineSlide 6s ease-in-out infinite;
}
.neon-lines::before { top: 30%; left: -10%; animation-delay: 0s; }
.neon-lines::after  { bottom: 30%; right: -10%; animation-delay: 3s; }

@keyframes lineSlide {
  0%   { transform: translateX(-100%); opacity: 0; }
  30%  { opacity: 0.4; }
  70%  { opacity: 0.4; }
  100% { transform: translateX(200%); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-text { padding: 60px 0; }

.hero-text h1, .hero-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-neon);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 780px;
  object-fit: contain;
  filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.25));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ============================================================
   BRANDS BAR
   ============================================================ */
#brands {
  background: var(--bg-card);
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
  padding: 18px 0;
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-item {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: default;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.brand-item:hover {
  color: var(--text-white);
}
.brand-item.razer   { color: #1db954; }
.brand-item.intel   { color: #0071c5; }
.brand-item.samsung { color: #1428a0; }

.brand-divider {
  width: 1px;
  height: 30px;
  background: var(--border-green);
}

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
/* ============================================================
   PRODUCT CATEGORIES (FUTURISTIC 3D COVERFLOW & HUD)
   ============================================================ */
#categories {
  padding: 80px 0;
  background: #000000 !important; /* Totalmente negro */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background animated circuit lines */
#categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10,10 L30,10 L45,25 L45,45 L50,50 L80,50' fill='none' stroke='%2300ff88' stroke-width='1' stroke-opacity='0.08'/%3E%3Ccircle cx='80' cy='50' r='2' fill='%2300ff88' fill-opacity='0.25'/%3E%3Cpath d='M90,90 L70,90 L55,75 L55,55 L50,50 L20,50' fill='none' stroke='%2300ff88' stroke-width='1' stroke-opacity='0.08'/%3E%3Ccircle cx='20' cy='50' r='2' fill='%2300ff88' fill-opacity='0.25'/%3E%3Cpath d='M10,90 L30,90 L40,80 L40,65 L50,50 L60,40 L60,20 L80,20' fill='none' stroke='%2300ff88' stroke-width='1' stroke-opacity='0.08'/%3E%3Ccircle cx='80' cy='20' r='2' fill='%2300ff88' fill-opacity='0.25'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  z-index: -1;
  pointer-events: none;
  animation: circuitFlow 25s linear infinite;
}

@keyframes circuitFlow {
  0% {
    background-position: 0 0;
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    background-position: 200px 200px;
    opacity: 0.6;
  }
}

.categories-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Cyber Header ── */
.categories-header-cyber {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}
.cyber-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cyber-arrow {
  color: var(--green-neon);
  font-weight: 900;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
  animation: blink 1s infinite alternate;
}
.cyber-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-white);
  text-transform: uppercase;
  margin: 0;
}
.cyber-status-tag {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--green-neon);
  padding: 3px 8px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

@keyframes blink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ── 3D Flow Container ── */
.categories-flow-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  margin: 20px 0;
}

.categories-flow {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* ── Arrow controls ── */
.flow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-green);
  border-radius: 4px;
  color: var(--green-neon);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.flow-arrow:hover {
  background: var(--green-neon);
  color: #000;
  box-shadow: var(--shadow-green);
}
.flow-arrow--prev { left: -50px; }
.flow-arrow--next { right: -50px; }

/* Responsive arrows */
@media (max-width: 1024px) {
  .flow-arrow--prev { left: 10px; }
  .flow-arrow--next { right: 10px; }
}

/* ── Cyber category card ── */
.category-card {
  position: absolute;
  width: 250px;
  height: 330px;
  background: rgba(0, 255, 136, 0.15); /* Neon shadow outline */
  border: 1.5px solid var(--border-green);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
              opacity 0.6s ease, 
              border-color 0.6s ease,
              box-shadow 0.6s ease;
  cursor: pointer;
  display: flex;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.category-card-inner {
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 10, 0.95);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

/* ── Cyber Reticle (Hover Crosshair) ── */
.cyber-reticle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 8;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.4);
}

.category-card:hover .cyber-reticle {
  opacity: 1;
  transform: scale(1);
}

/* Reticle outer rotating circle */
.cyber-reticle::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1.5px dashed var(--green-neon);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
  animation: reticleSpin 6s linear infinite;
}

/* Reticle targeting crosshair lines */
.cyber-reticle::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: 
    linear-gradient(to right, var(--green-neon) 0%, var(--green-neon) 100%) no-repeat center/100% 1.5px,
    linear-gradient(to bottom, var(--green-neon) 0%, var(--green-neon) 100%) no-repeat center/1.5px 100%;
  -webkit-mask-image: radial-gradient(circle, transparent 25px, black 26px);
  mask-image: radial-gradient(circle, transparent 25px, black 26px);
}

@keyframes reticleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 3D Flow States */
.category-card.active {
  transform: translate3d(0, 0, 100px) rotateY(0deg);
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
  border-color: var(--green-neon);
  background: rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.4);
}

.category-card.prev {
  transform: translate3d(-200px, 0, 0) rotateY(35deg) scale(0.85);
  opacity: 0.4;
  pointer-events: auto;
  z-index: 5;
}

.category-card.next {
  transform: translate3d(200px, 0, 0) rotateY(-35deg) scale(0.85);
  opacity: 0.4;
  pointer-events: auto;
  z-index: 5;
}

/* Far left/right states if we have more than 3 */
.category-card.far-prev {
  transform: translate3d(-350px, 0, -100px) rotateY(45deg) scale(0.7);
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
}
.category-card.far-next {
  transform: translate3d(350px, 0, -100px) rotateY(-45deg) scale(0.7);
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
}

/* Card inner details */
.category-card-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 20px;
}
.category-new-badge {
  font-size: 0.55rem;
  font-weight: 900;
  color: #000;
  background: var(--green-neon);
  padding: 1px 5px;
  border-radius: 1px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.category-card.active .category-new-badge {
  opacity: 1;
  transform: translateY(0);
}

.category-card-media {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.category-icon-glow {
  font-size: 4rem;
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
  transition: transform 0.5s ease;
}
.category-card.active .category-icon-glow {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(0, 255, 136, 0.6));
}

.category-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(0, 255, 136, 0.15);
  padding-top: 10px;
}
.category-lvl {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-neon);
  font-family: monospace;
}
.category-short-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HUD active info panel ── */
.categories-hud-panel {
  width: 100%;
  max-width: 900px;
  background: rgba(10, 20, 10, 0.85);
  border: 1px solid var(--border-green);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,255,136,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.hud-top-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hud-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hud-top-info h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  text-transform: uppercase;
}
.hud-val-green {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--green-neon);
  border: 1px solid var(--green-neon);
  padding: 4px 10px;
  border-radius: 2px;
  text-shadow: 0 0 8px rgba(0,255,136,0.4);
}

.hud-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border-green), transparent);
}

.hud-details {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .hud-details { grid-template-columns: 1fr; gap: 15px; }
}

.hud-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hud-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spec-bar-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.spec-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.spec-bar {
  height: 8px;
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 1px;
  overflow: hidden;
}
.spec-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-neon), #7bff2f);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  transition: width 0.6s ease;
}

.hud-controls-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  border-top: 1px dashed rgba(0, 255, 136, 0.15);
  padding-top: 16px;
}
.hud-footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(0, 255, 136, 0.5);
}
.hud-dot-grid {
  letter-spacing: 2px;
}
.hud-btn-select {
  font-size: 0.75rem;
  font-weight: 900;
  color: #000;
  background: var(--green-neon);
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
  transition: var(--transition);
  display: inline-block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.hud-btn-select:hover {
  background: #7bff2f;
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

/* ============================================================
   FEATURE BANNER (GLOWING SEPARATOR + HEXAGON FILL)
   ============================================================ */
#feature-banner {
  margin: 0;
  background: #000000 !important;
  height: 220px;
  position: relative;
  overflow: hidden;
  border: none;
  /* Fixed mask: fades images out on the left where hexagons sit */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
}

/* ── Infinite scrolling image strip ── */
.banner-scroll-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  gap: 40px;
  padding: 0 20px;
  /* Animation is set by JS for pixel-perfect seamless loop */
}

.banner-scroll-track picture {
  display: flex;
  align-items: center;
  height: 170px;
  flex-shrink: 0;
}

.banner-scroll-track img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 255, 136, 0.15));
}

.banner-hex-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hex-banner-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Borde superior: Brillo deslizante de derecha a izquierda */
#feature-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  background-size: 200% 100%;
  animation: glowRightToLeft 3.5s linear infinite;
  z-index: 2;
}

/* Borde inferior: Brillo deslizante de izquierda a derecha */
#feature-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  background-size: 200% 100%;
  animation: glowLeftToRight 3.5s linear infinite;
  z-index: 2;
}

@keyframes glowRightToLeft {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes glowLeftToRight {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   PARLANTES – HERO SECTION
   ============================================================ */
#cargadores-hero {
  position: relative;
  min-height: 580px;
  background: #000 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Background video – covers entire section behind everything */
.parlantes-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay: solid green on the left, fading to transparent on the right */
.parlantes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    #001a0d 0%,
    #003d1a 25%,
    rgba(0, 61, 26, 0.85) 45%,
    rgba(0, 61, 26, 0.4) 65%,
    transparent 85%
  );
  z-index: 1;
  pointer-events: none;
}

/* Particle glow overlay */
.charger-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(0,255,136,0.6), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(0,255,136,0.4), transparent),
    radial-gradient(3px 3px at 65% 15%, rgba(0,255,136,0.5), transparent),
    radial-gradient(2px 2px at 85% 55%, rgba(0,255,136,0.3), transparent),
    radial-gradient(2px 2px at 25% 85%, rgba(0,255,136,0.4), transparent),
    radial-gradient(3px 3px at 90% 30%, rgba(0,255,136,0.5), transparent),
    radial-gradient(2px 2px at 55% 45%, rgba(0,255,136,0.3), transparent),
    radial-gradient(2px 2px at 10% 60%, rgba(0,255,136,0.5), transparent);
  animation: particleDrift 12s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0.6; }
  50%  { opacity: 1; }
  100% { transform: translateY(-15px) translateX(10px); opacity: 0.6; }
}

/* Layout */
.charger-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* ── Left: Text ── */
.charger-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.charger-tag {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--green-neon);
  padding: 5px 14px;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.charger-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.charger-title-accent {
  color: var(--green-neon);
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.charger-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 460px;
}

/* Specs row */
.charger-specs-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.charger-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.charger-spec-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
  font-family: 'Outfit', sans-serif;
}

.charger-spec-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.charger-spec-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 255, 136, 0.3);
}

/* CTA Button */
.charger-cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--green-neon);
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.charger-cta:hover {
  background: #7bff2f;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  transform: translateY(-2px);
}

/* ── Right: 3D Stage ── */
.charger-hero-3d-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  perspective: 800px;
}

/* Glow ring under the charger */
.charger-glow-ring {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 136, 0.3);
  box-shadow:
    0 0 40px rgba(0, 255, 136, 0.15),
    0 0 80px rgba(0, 255, 136, 0.1),
    inset 0 0 40px rgba(0, 255, 136, 0.05);
  animation: ringPulse 3s ease-in-out infinite alternate;
}

@keyframes ringPulse {
  0%   { box-shadow: 0 0 40px rgba(0,255,136,0.15), 0 0 80px rgba(0,255,136,0.1); transform: translateX(-50%) rotateX(75deg) scale(1); }
  100% { box-shadow: 0 0 60px rgba(0,255,136,0.3), 0 0 120px rgba(0,255,136,0.15); transform: translateX(-50%) rotateX(75deg) scale(1.05); }
}

/* 3D Rotating charger */
.charger-3d-model {
  position: relative;
  z-index: 2;
  animation: chargerFloat 4s ease-in-out infinite alternate, chargerSpin 10s linear infinite;
  transform-style: preserve-3d;
}

.charger-3d-model img {
  width: 340px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(0, 255, 136, 0.25));
}

@keyframes chargerFloat {
  0%   { transform: translateY(0) rotateY(var(--spin-angle, 0deg)); }
  100% { transform: translateY(-20px) rotateY(var(--spin-angle, 0deg)); }
}

@keyframes chargerSpin {
  0%   { transform: translateY(-10px) rotateY(0deg); }
  25%  { transform: translateY(-20px) rotateY(90deg); }
  50%  { transform: translateY(-10px) rotateY(180deg); }
  75%  { transform: translateY(-20px) rotateY(270deg); }
  100% { transform: translateY(-10px) rotateY(360deg); }
}

/* Floating data labels */
.charger-float-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-neon);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  z-index: 3;
  pointer-events: none;
}

.charger-fl-top {
  top: 15%;
  right: 10%;
  animation: floatLabel 5s ease-in-out infinite alternate;
}
.charger-fl-right {
  top: 50%;
  right: 2%;
  animation: floatLabel 5s ease-in-out 1s infinite alternate;
}
.charger-fl-bottom {
  bottom: 18%;
  left: 10%;
  animation: floatLabel 5s ease-in-out 2s infinite alternate;
}

@keyframes floatLabel {
  0%   { transform: translateY(0); opacity: 0.7; }
  100% { transform: translateY(-8px); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .charger-hero-layout { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .charger-hero-text { align-items: center; }
  .charger-title { font-size: 2.2rem; }
  .charger-specs-row { justify-content: center; }
  .charger-hero-3d-stage { min-height: 300px; }
  .charger-3d-model img { width: 220px; }
}

/* ============================================================
   RELOJES – HERO SECTION
   ============================================================ */
#relojes-hero {
  position: relative;
  min-height: 580px;
  background: #000 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Background video */
.relojes-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay: solid dark green/black on the left, fading to transparent on the right */
.relojes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    #000f08 0%,
    #001a0d 25%,
    rgba(0, 26, 13, 0.85) 45%,
    rgba(0, 26, 13, 0.4) 65%,
    transparent 85%
  );
  z-index: 1;
  pointer-events: none;
}

/* Particles drift */
.relojes-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 30%, rgba(0,255,136,0.5), transparent),
    radial-gradient(2px 2px at 50% 60%, rgba(0,255,136,0.3), transparent),
    radial-gradient(3px 3px at 75% 20%, rgba(0,255,136,0.4), transparent),
    radial-gradient(2px 2px at 90% 70%, rgba(0,255,136,0.3), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(0,255,136,0.4), transparent);
  animation: particleDrift 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

/* Layout */
.relojes-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Left Content */
.relojes-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.relojes-tag {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--green-neon);
  padding: 5px 14px;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.relojes-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.relojes-title-accent {
  color: var(--green-neon);
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.relojes-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 460px;
}

/* Specs */
.relojes-specs-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.relojes-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.relojes-spec-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
  font-family: 'Outfit', sans-serif;
}

.relojes-spec-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.relojes-spec-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 255, 136, 0.3);
}

/* CTA */
.relojes-cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--green-neon);
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.relojes-cta:hover {
  background: #7bff2f;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  transform: translateY(-2px);
}

/* Right Stage */
.relojes-hero-3d-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  perspective: 800px;
}

.relojes-float-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-neon);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  z-index: 3;
  pointer-events: none;
}

.relojes-fl-top {
  top: 15%;
  right: 10%;
  animation: floatLabel 5s ease-in-out infinite alternate;
}
.relojes-fl-right {
  top: 50%;
  right: 2%;
  animation: floatLabel 5s ease-in-out 1s infinite alternate;
}
.relojes-fl-bottom {
  bottom: 18%;
  left: 10%;
  animation: floatLabel 5s ease-in-out 2s infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
  .relojes-hero-layout { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .relojes-hero-text { align-items: center; }
  .relojes-title { font-size: 2.2rem; }
  .relojes-specs-row { justify-content: center; }
  .relojes-hero-3d-stage { min-height: 300px; }
}

/* ============================================================
   RELOJES PRODUCTS CATALOG
   ============================================================ */
#relojes-products {
  padding: 80px 0;
  background: #040904 !important;
  position: relative;
  overflow: hidden;
}

.relojes-products-header-cyber {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 8px;
  margin-bottom: 40px;
  font-family: 'Outfit', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.relojes-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.watch-card {
  background: rgba(10, 20, 10, 0.85);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 4px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Cybernetic corners on hover */
.watch-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; width: 12px; height: 12px;
  border-top: 2px solid var(--green-neon);
  border-left: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.watch-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px; width: 12px; height: 12px;
  border-bottom: 2px solid var(--green-neon);
  border-right: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.watch-card:hover::before, .watch-card:hover::after {
  opacity: 1;
}

.watch-card:hover {
  border-color: var(--green-neon);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
  transform: translateY(-6px);
}

.watch-serial-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.58rem;
  font-weight: 900;
  background: rgba(0, 255, 136, 0.12);
  color: var(--green-neon);
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 5;
  font-family: monospace;
}

.watch-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  margin-bottom: 16px;
  border-radius: 4px;
}

.watch-card-image img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}

.watch-card:hover .watch-card-image img {
  transform: scale(1.06) translateY(-4px);
}

.watch-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.watch-card-body h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.watch-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
}

.watch-specs-list li {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.watch-specs-list li::before {
  content: '»';
  color: var(--green-neon);
  font-weight: bold;
}

.watch-card-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: auto;
  border-top: 1px dashed rgba(0, 255, 136, 0.15);
  padding-top: 16px;
  width: 100%;
}

.watch-details-btn {
  font-size: 0.62rem;
  font-weight: 900;
  color: #000;
  background: var(--green-neon);
  padding: 10px 12px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,136,0.15);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  width: 100%;
  display: block;
}

.watch-details-btn:hover {
  background: #7bff2f;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0,255,136,0.4);
}

/* Responsive grid for watches catalog */
@media (max-width: 1024px) {
  .relojes-products-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .relojes-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .relojes-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CARGADORES – HERO SECTION (REAL)
   ============================================================ */
#cargadores-real-hero,
#eventos-real-hero {
  position: relative;
  min-height: 570px; /* 10px más pequeño que las secciones anteriores */
  background: #000 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Background video */
.cargadores-real-bg-video,
.eventos-real-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay: solid dark green/black on the left, fading to transparent on the right */
.cargadores-real-overlay,
.eventos-real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    #000f08 0%,
    #001a0d 25%,
    rgba(0, 26, 13, 0.85) 45%,
    rgba(0, 26, 13, 0.4) 65%,
    transparent 85%
  );
  z-index: 1;
  pointer-events: none;
}

/* Particles drift */
.cargadores-real-particles,
.eventos-real-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 35%, rgba(0,255,136,0.6), transparent),
    radial-gradient(2px 2px at 45% 75%, rgba(0,255,136,0.4), transparent),
    radial-gradient(3px 3px at 60% 25%, rgba(0,255,136,0.5), transparent),
    radial-gradient(2px 2px at 80% 65%, rgba(0,255,136,0.3), transparent),
    radial-gradient(2px 2px at 30% 90%, rgba(0,255,136,0.4), transparent);
  animation: particleDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

/* Layout */
.cargadores-real-hero-layout,
.eventos-real-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Left Content */
.cargadores-real-hero-text,
.eventos-real-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cargadores-real-tag,
.eventos-real-tag {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--green-neon);
  padding: 5px 14px;
  border-radius: 2px;
  display: inline-block;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.cargadores-real-title,
.eventos-real-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.cargadores-real-title-accent,
.eventos-real-title-accent {
  color: var(--green-neon);
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.cargadores-real-desc,
.eventos-real-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 460px;
}

/* Specs */
.cargadores-real-specs-row,
.eventos-real-specs-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.cargadores-real-spec-item,
.eventos-real-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cargadores-real-spec-val,
.eventos-real-spec-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: 0 0 10px rgba(0,255,136,0.4);
  font-family: 'Outfit', sans-serif;
}

.cargadores-real-spec-lbl,
.eventos-real-spec-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cargadores-real-spec-divider,
.eventos-real-spec-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 255, 136, 0.3);
}

/* CTA */
.cargadores-real-cta,
.eventos-real-cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #000;
  background: var(--green-neon);
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.cargadores-real-cta:hover,
.eventos-real-cta:hover {
  background: #7bff2f;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
  transform: translateY(-2px);
}

/* Right Stage */
.cargadores-real-hero-3d-stage,
.eventos-real-hero-3d-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  perspective: 800px;
}

.cargadores-real-float-label,
.eventos-real-float-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-neon);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  z-index: 3;
  pointer-events: none;
}

.cargadores-real-fl-top,
.eventos-real-fl-top {
  top: 15%;
  right: 10%;
  animation: floatLabel 5s ease-in-out infinite alternate;
}
.cargadores-real-fl-right,
.eventos-real-fl-right {
  top: 50%;
  right: 2%;
  animation: floatLabel 5s ease-in-out 1s infinite alternate;
}
.cargadores-real-fl-bottom,
.eventos-real-fl-bottom {
  bottom: 18%;
  left: 10%;
  animation: floatLabel 5s ease-in-out 2s infinite alternate;
}

/* Responsive */
@media (max-width: 768px) {
  .cargadores-real-hero-layout,
  .eventos-real-hero-layout { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .cargadores-real-hero-text,
  .eventos-real-hero-text { align-items: center; }
  .cargadores-real-title,
  .eventos-real-title { font-size: 2.2rem; }
  .cargadores-real-specs-row,
  .eventos-real-specs-row { justify-content: center; }
  .cargadores-real-hero-3d-stage,
  .eventos-real-hero-3d-stage { min-height: 250px; }
}

/* ============================================================
   CARGADORES PRODUCTS CATALOG
   ============================================================ */
#cargadores-products {
  padding: 80px 0;
  background: #040904 !important;
  position: relative;
  overflow: hidden;
}

.cargadores-products-header-cyber {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 8px;
  margin-bottom: 40px;
  font-family: 'Outfit', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.cargadores-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cargador-card {
  background: rgba(10, 20, 10, 0.85);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 4px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Cybernetic corners on hover */
.cargador-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; width: 12px; height: 12px;
  border-top: 2px solid var(--green-neon);
  border-left: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cargador-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px; width: 12px; height: 12px;
  border-bottom: 2px solid var(--green-neon);
  border-right: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cargador-card:hover::before, .cargador-card:hover::after {
  opacity: 1;
}

.cargador-card:hover {
  border-color: var(--green-neon);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
  transform: translateY(-6px);
}

.cargador-serial-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.58rem;
  font-weight: 900;
  background: rgba(0, 255, 136, 0.12);
  color: var(--green-neon);
  border: 1px solid rgba(0, 255, 136, 0.25);
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 5;
  font-family: monospace;
}

.cargador-card-image {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  margin-bottom: 16px;
  border-radius: 4px;
}

.cargador-card-image picture,
.watch-card-image picture,
.combo-image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cargador-card-image img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}

.cargador-card:hover .cargador-card-image img {
  transform: scale(1.06) translateY(-4px);
}

.cargador-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cargador-card-body h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cargador-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
}

.cargador-specs-list li {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cargador-specs-list li::before {
  content: '»';
  color: var(--green-neon);
  font-weight: bold;
}

.cargador-card-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: auto;
  border-top: 1px dashed rgba(0, 255, 136, 0.15);
  padding-top: 16px;
  width: 100%;
}

.cargador-details-btn {
  font-size: 0.62rem;
  font-weight: 900;
  color: #000;
  background: var(--green-neon);
  padding: 10px 12px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,136,0.15);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  width: 100%;
  display: block;
}

.cargador-details-btn:hover {
  background: #7bff2f;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0,255,136,0.4);
}

/* Responsive grid for chargers catalog */
@media (max-width: 1024px) {
  .cargadores-products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 580px) {
  .cargadores-products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCTS GRID SECTION
   ============================================================ */
#products {
  padding: 48px 0;
  background: var(--bg-primary);
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.products-header h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-header-right h2 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 8px 32px rgba(0,255,136,0.1);
  transform: translateY(-3px);
}

.product-card-image {
  height: 160px;
  background: linear-gradient(135deg, rgba(0,255,136,0.04), rgba(123,47,255,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.product-card-image img {
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}
.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-card-body {
  padding: 16px;
}
.product-card-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}
.product-specs li {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.product-specs li::before {
  content: '•';
  color: var(--green-neon);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   COMBOS / PACKS PROMOCIONALES
   ============================================================ */
#combos {
  padding: 80px 0;
  background: #040904 !important; /* Coincide con fondo oscuro de categorías */
  position: relative;
  overflow: hidden;
}

.combos-header-cyber {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-green);
  padding-bottom: 8px;
  margin-bottom: 40px;
  font-family: 'Outfit', sans-serif;
  margin-left: auto;
  margin-right: auto;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.combo-card {
  background: rgba(10, 20, 10, 0.85);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 4px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Cybernetic corners on hover */
.combo-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; width: 12px; height: 12px;
  border-top: 2px solid var(--green-neon);
  border-left: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.combo-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px; width: 12px; height: 12px;
  border-bottom: 2px solid var(--green-neon);
  border-right: 2px solid var(--green-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.combo-card:hover::before, .combo-card:hover::after {
  opacity: 1;
}

.combo-card:hover {
  border-color: var(--green-neon);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.2);
  transform: translateY(-6px);
}

.combo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.65rem;
  font-weight: 900;
  background: var(--green-neon);
  color: #000;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 5;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  letter-spacing: 0.05em;
}

.combo-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  margin-bottom: 16px;
  border-radius: 4px;
}

.combo-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
  transition: transform 0.4s ease;
}

.combo-card:hover .combo-image img {
  transform: scale(1.06) rotate(1.5deg);
}

.combo-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.combo-body h3 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.combo-body p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  min-height: 44px;
}

.combo-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.combo-spec-tag {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--green-neon);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: monospace;
}

.combo-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: auto;
  border-top: 1px dashed rgba(0, 255, 136, 0.15);
  padding-top: 12px;
  width: 100%;
}

.combo-btn {
  font-size: 0.65rem;
  font-weight: 900;
  color: #000;
  background: var(--green-neon);
  padding: 10px 12px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0,255,136,0.15);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
  width: 100%;
  display: block;
}

.combo-btn:hover {
  background: #7bff2f;
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0,255,136,0.4);
}

/* Responsive grid for combos */
@media (max-width: 1024px) {
  .combos-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 580px) {
  .combos-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LATEST NEWS SECTION
   ============================================================ */
#latest-news {
  padding: 0 0 48px;
  background: var(--bg-primary);
}

.news-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dim);
}
.news-header h2 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-neon);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.news-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,255,136,0.08);
}

.news-card-image {
  height: 120px;
  background: linear-gradient(135deg, rgba(0,255,136,0.04), rgba(123,47,255,0.06));
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body {
  padding: 14px;
}
.news-card-body h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card-body p {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   INFO & NEWSLETTER SECTION
   ============================================================ */
#info-newsletter {
  background: var(--bg-card);
  border-top: 1px solid var(--border-green);
  padding: 48px 0;
}

.info-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-article {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dim);
  cursor: pointer;
  transition: var(--transition);
}
.info-article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-article:hover { opacity: 0.8; }

.info-article-thumb {
  width: 70px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(123,47,255,0.06));
}
.info-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-article-text h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Divider column */
.info-col-divider {
  width: 1px;
  background: var(--border-dim);
  align-self: stretch;
}

/* Center column */
.info-center h2 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 6px;
}
.info-center .center-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Newsletter column */
.newsletter-col h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 6px;
}
.newsletter-col .nl-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-green);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 10px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: var(--text-white);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--green-neon); background: rgba(0,255,136,0.04); }

.newsletter-form button {
  background: var(--green-neon);
  border: 1px solid var(--green-neon);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button svg { fill: #000; }
.newsletter-form button:hover { background: var(--green-dark); border-color: var(--green-dark); }

.newsletter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.newsletter-check input[type="checkbox"] {
  accent-color: var(--green-neon);
  width: 14px;
  height: 14px;
}

/* ============================================================
   HIGH-TECH CYBERPUNK FOOTER
   ============================================================ */
.cyber-footer {
  position: relative;
  background: #050705;
  border-top: 1.5px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 -10px 40px rgba(0, 255, 136, 0.1);
  overflow: hidden;
  padding: 0 0 30px 0;
  font-family: 'Outfit', sans-serif;
}

.footer-cyber-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(180deg, rgba(5, 7, 5, 0.94) 0%, rgba(5, 7, 5, 0.84) 50%, rgba(5, 7, 5, 0.97) 100%),
    url('imagenes/logof.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: footerBgPulse 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

/* Technological Scanning Line Effect */
.footer-cyber-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  box-shadow: 0 0 15px var(--green-neon), 0 0 30px var(--green-neon);
  animation: scanlineSweep 7s linear infinite;
  opacity: 0.8;
}

@keyframes scanlineSweep {
  0% { top: 0; opacity: 0.8; }
  50% { opacity: 1; }
  100% { top: 100%; opacity: 0.2; }
}

@keyframes footerBgPulse {
  0% { transform: scale(1); filter: brightness(1) contrast(1); }
  100% { transform: scale(1.05); filter: brightness(1.15) contrast(1.1); }
}

/* HUD System Status Bar */
.footer-hud-bar {
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.hud-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hud-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: monospace, monospace;
}

.hud-stat-led {
  width: 8px;
  height: 8px;
  background: var(--green-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-neon);
}

.hud-stat-led.blinking {
  animation: blinkFast 1.5s infinite;
}

@keyframes blinkFast {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.footer-content-wrap {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

/* Col Brand */
.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.footer-brand-title span {
  color: var(--green-neon);
}

.brand-tagline {
  font-size: 0.82rem;
  color: #a0aab0;
  line-height: 1.5;
  margin-top: 0;
}

.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.4);
  color: var(--green-neon);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-footer-wa:hover {
  background: var(--green-neon);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.cta-pulse-mini {
  width: 8px;
  height: 8px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: pulseNeon 1.5s infinite;
}

/* Footer Headings & Lists */
.footer-heading {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list li a {
  color: #8c98a0;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list li a:hover {
  color: #fff;
  transform: translateX(4px);
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Newsletter & Social */
.newsletter-desc {
  font-size: 0.8rem;
  color: #8c98a0;
  margin-bottom: 14px;
  line-height: 1.5;
}

.newsletter-input-group {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--green-neon);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.cyber-news-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 12px;
  font-size: 0.8rem;
  outline: none;
  font-family: inherit;
}

.cyber-news-input::placeholder {
  color: #5a6670;
}

.cyber-news-btn {
  background: var(--green-neon);
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cyber-news-btn:hover {
  background: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Social Cyber Buttons */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #60707c;
  letter-spacing: 0.08em;
}

.social-icons-cyber {
  display: flex;
  gap: 10px;
}

.social-cyber-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  background: rgba(0, 255, 136, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c98a0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-cyber-btn:hover {
  color: #000;
  background: var(--green-neon);
  border-color: var(--green-neon);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
  transform: translateY(-3px);
}

/* Cyber Footer Bottom */
.footer-cyber-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #60707c;
}

.bottom-copyright strong {
  color: var(--green-neon);
}

.cyber-code-tag {
  font-family: monospace, monospace;
  font-size: 0.7rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--green-neon);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
  }
  .hud-bar-inner {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-grid-4col {
    grid-template-columns: 1fr;
  }
  .footer-cyber-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .feature-banner-inner { grid-template-columns: 1fr; }
  .info-newsletter-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  #hero {
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 45px;
  }
  .hero-slide {
    min-height: auto;
    padding: 20px 0 35px;
  }
  .hero-content { 
    grid-template-columns: 1fr; 
    text-align: center; 
    justify-items: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .hero-text { 
    padding: 10px 0 15px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    width: 100%;
  }
  .hero-text h1, .hero-text h2 {
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero-text p {
    max-width: 480px;
    margin: 0 auto 20px;
  }
  .hero-buttons { justify-content: center; }
  
  .hero-media-group { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    margin-left: 0 !important; 
    position: relative;
    width: 100%;
  }

  .hero-image,
  .hero-image.hero-image--s2,
  .hero-image.hero-image--s3,
  .hero-image.hero-image--s4 { 
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto 10px !important; 
  }
  
  .hero-image picture {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-image img,
  .hero-image.hero-image--s2 img,
  .hero-image.hero-image--s3 img,
  .hero-image.hero-image--s4 img { 
    width: auto !important; 
    max-width: 300px !important; 
    max-height: 300px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow--prev { left: 6px; }
  .carousel-arrow--next { right: 6px; }
  .carousel-dots { bottom: 8px; }

  /* Show video demo tab on mobile */
  .video-demo-btn {
    display: inline-flex !important;
    position: relative;
    margin-top: 10px;
    margin-bottom: 38px;
    bottom: auto;
    right: auto;
    font-size: 0.7rem;
    padding: 8px 16px;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    background: rgba(10, 20, 10, 0.95);
    border-color: var(--green-neon);
  }
  
  /* Established hero video panel styling on mobile - starts off-screen to the left */
  .hero-video-panel {
    display: flex !important;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  }

@media (max-width: 480px) {
  .hero-image img,
  .hero-image.hero-image--s2 img,
  .hero-image.hero-image--s3 img,
  .hero-image.hero-image--s4 img {
    max-width: 240px !important;
    max-height: 240px !important;
  }
  .hero-text h1, .hero-text h2 {
    font-size: 1.5rem;
  }
}
  
  /* When show-video class is added, slides in from the left to its established position */
  .hero-video-panel.show-video {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Close button on mobile video panel */
  .hero-video-panel .close-video-btn {
    display: flex !important;
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(6, 13, 6, 0.95);
    border: 1.5px solid var(--green-neon);
    color: var(--green-neon);
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transition: all 0.2s ease;
  }
  .hero-video-panel .close-video-btn:hover {
    background: var(--green-neon);
    color: #000;
  }
  
  .navbar-nav:not(.active) { display: none; }
  .brands-inner  { flex-wrap: wrap; gap: 10px; }
  .footer-main   { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   HEADER NAVBAR DROPDOWN STYLING
   ══════════════════════════════════════════════════════════ */
.nav-dropdown-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-wrapper > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow-indicator {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.nav-dropdown-wrapper:hover .arrow-indicator,
.nav-dropdown-wrapper.show-dropdown .arrow-indicator {
  transform: rotate(180deg);
  color: var(--green-neon);
}

.dropdown-menu-cyber {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(10, 15, 24, 0.95);
  border: 1px solid var(--green-neon);
  box-shadow: 0 5px 25px rgba(0, 255, 136, 0.25), inset 0 0 15px rgba(0, 255, 136, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* Cyberpunk corner accents on dropdown box */
.dropdown-menu-cyber::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--green-neon);
  border-top: 2px solid var(--green-neon);
  pointer-events: none;
}
.dropdown-menu-cyber::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green-neon);
  border-bottom: 2px solid var(--green-neon);
  pointer-events: none;
}

/* Dropdown hover and focus display state */
.nav-dropdown-wrapper:hover .dropdown-menu-cyber,
.nav-dropdown-wrapper.show-dropdown .dropdown-menu-cyber {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

/* Dropdown sub-menu links */
.dropdown-menu-cyber a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light) !important;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: left;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  position: relative;
}

/* Remove hover bracket pseudo-elements from dropdown sub-links */
.dropdown-menu-cyber a::before,
.dropdown-menu-cyber a::after {
  display: none !important;
}

/* Add custom sub-link chevron hover prefix */
.dropdown-menu-cyber a::after {
  content: '»' !important;
  position: absolute !important;
  left: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) translateX(-5px) !important;
  opacity: 0 !important;
  display: block !important;
  transition: all 0.2s ease !important;
  color: var(--green-neon) !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
}

.dropdown-menu-cyber a:hover {
  color: var(--text-white) !important;
  background: rgba(0, 255, 136, 0.08) !important;
  padding-left: 25px !important;
  text-shadow: 0 0 5px var(--green-neon) !important;
}

.dropdown-menu-cyber a:hover::after {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(0) !important;
}

/* Base style to hide hamburger button on desktop */
.navbar-toggle-btn {
  display: none;
}

/* Mobile responsive styles (screen width <= 992px) */
@media (max-width: 992px) {
  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 12, 20, 0.98);
    border-bottom: 2.5px solid var(--green-neon);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }
  
  .navbar-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav a {
    padding: 14px 24px;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.05);
    font-size: 0.88rem;
  }

  /* Reset hover brackets on mobile links to keep clean */
  .navbar-nav a::before,
  .navbar-nav a::after {
    display: none !important;
  }

  /* Dropdown inside mobile navbar */
  .nav-dropdown-wrapper {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown-wrapper > a {
    justify-content: space-between;
  }

  .dropdown-menu-cyber {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid var(--green-neon) !important;
    background: rgba(0, 255, 136, 0.02) !important;
    margin: 0 24px !important;
    padding: 5px 0 !important;
    display: none; /* Controlled by JS toggling class */
    min-width: 0 !important;
  }

  .nav-dropdown-wrapper.show-dropdown .dropdown-menu-cyber {
    display: flex;
  }

  .dropdown-menu-cyber a {
    padding: 10px 20px !important;
    font-size: 0.8rem;
    border-bottom: none !important;
  }

  /* Hamburger menu toggle button style */
  .navbar-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .navbar-toggle-btn .bar {
    width: 22px;
    height: 2px;
    background: var(--green-neon);
    box-shadow: 0 0 5px var(--green-neon);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Active burger icon transformation (X) */
  .navbar-toggle-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar-toggle-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ══════════════════════════════════════════════════════════
   MAPA HOLOGRÁFICO DE EVENTOS EN COLOMBIA
   ══════════════════════════════════════════════════════════ */
#colombia-events-map {
  padding: 80px 0;
  background: #03080a !important; /* Fondo cian-oscuro/negro */
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.map-header-cyber {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(0, 255, 136, 0.2);
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.map-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

/* Container del Mapa */
.map-container-holo {
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.15);
  background: rgba(4, 10, 15, 0.6);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.map-hud-overlay {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  gap: 15px;
  pointer-events: none;
  font-family: monospace;
}

.hud-stat-item {
  font-size: 0.65rem;
  color: rgba(0, 255, 136, 0.6);
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.4);
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.colombia-holo-svg {
  width: 100%;
  max-height: 480px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.1));
}

/* Elementos SVG */
.map-silhouette {
  fill: rgba(0, 255, 136, 0.015);
  stroke: rgba(0, 255, 136, 0.08);
  stroke-width: 1.5;
  transition: all 0.5s ease;
}

.map-node .node-radar {
  transform-origin: center;
  scale: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Pulsación Radar en nodo activo */
@keyframes radarPulse {
  0% {
    r: 6px;
    opacity: 1;
  }
  100% {
    r: 32px;
    opacity: 0;
  }
}



.map-node.active .node-radar {
  animation: radarPulse 2s infinite ease-out;
}

.map-node .node-dot {
  transition: all 0.3s ease;
}

.map-node .node-ring {
  transition: all 0.3s ease;
  transform-origin: center;
}

.map-node .node-label {
  font-size: 10px;
  font-weight: 800;
  fill: #ffffff;
  letter-spacing: 0.06em;
  font-family: 'Outfit', sans-serif;
  pointer-events: auto;
  user-select: none;
  transition: all 0.3s ease;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 255, 136, 0.3);
}

/* Hover & Active States */
.map-node:hover .node-dot,
.map-node.active .node-dot {
  fill: #fff;
  filter: drop-shadow(0 0 6px var(--green-neon));
}

.map-node:hover .node-ring,
.map-node.active .node-ring {
  stroke: #fff;
  stroke-width: 2.2px;
  filter: drop-shadow(0 0 4px var(--green-neon));
}

.map-node:hover .node-label,
.map-node.active .node-label {
  fill: var(--green-neon);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 255, 136, 0.7);
}

/* PANEL SHOWCASE (Derecho) */
/* CONTAINER CENTRADO DEL MAPA */
.map-centered-layout {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
}

.map-container-holo {
  position: relative;
  width: 100%;
  border: 1px solid rgba(0, 255, 136, 0.15);
  background: rgba(4, 10, 15, 0.6);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* Permitir que la tarjeta flote libremente */
  box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.05);
}

/* POP-UP FLOTANTE DE VIDEO SOBRE EL MAPA */
.map-floating-video-card {
  position: absolute;
  width: 190px;
  border: 1px solid var(--green-neon);
  border-radius: var(--radius-sm);
  background: rgba(4, 10, 16, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.35), inset 0 0 15px rgba(0, 255, 136, 0.1);
  padding: 6px;
  z-index: 100;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s ease, top 0.3s ease, left 0.3s ease;
}

.map-floating-video-card.show {
  opacity: 1;
  transform: scale(1);
}

.card-scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 255, 136, 0.06) 50%
  );
  background-size: 100% 3px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.4;
}

.card-close-btn {
  position: absolute;
  top: 1px;
  right: 5px;
  background: none;
  border: none;
  color: var(--green-neon);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 2px;
}
.card-close-btn:hover {
  color: #fff;
  text-shadow: 0 0 5px var(--green-neon);
}

.card-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.25);
  background: #000;
}

.card-hud-corners span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: var(--green-neon);
  border-style: solid;
  z-index: 3;
}
.card-hud-corners span:nth-child(1) { top: 4px; left: 4px; border-width: 1px 0 0 1px; }
.card-hud-corners span:nth-child(2) { top: 4px; right: 4px; border-width: 1px 1px 0 0; }
.card-hud-corners span:nth-child(3) { bottom: 4px; left: 4px; border-width: 0 0 1px 1px; }
.card-hud-corners span:nth-child(4) { bottom: 4px; right: 4px; border-width: 0 1px 1px 0; }

.card-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.1) contrast(1.15) saturate(0.7) sepia(0.2) hue-rotate(85deg);
}

.card-footer-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 2px;
  font-family: monospace;
}

.card-city-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-event-title {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive para el mapa */
@media (max-width: 640px) {
  .map-container-holo {
    padding: 15px;
  }

  .colombia-holo-svg {
    max-height: 380px;
  }

  .hud-stat-item {
    font-size: 0.5rem;
    padding: 1px 4px;
  }

  .map-hud-overlay {
    top: 8px;
    left: 10px;
    gap: 6px;
  }

  /* Ajustar tamaño del pop-up flotante en pantallas muy pequeñas */
  .map-floating-video-card {
    width: 150px;
  }
  .card-city-name {
    font-size: 0.55rem;
  }
  .card-event-title {
    font-size: 0.48rem;
  }
}

/* ==========================================================================
   SECCION PUNTO FISICO - CC NODO
   ========================================================================== */
#punto-fisico {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #02070d;
}

/* Background video */
.store-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(15px) brightness(0.12) contrast(1.1);
  pointer-events: none;
}

.store-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05) 0%, rgba(2, 7, 13, 0.95) 80%);
  z-index: 2;
}

.store-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Info Panel */
.store-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.store-title-accent {
  background: linear-gradient(90deg, var(--green-neon), #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.store-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 540px;
}

/* HUD details box */
.store-details-hud {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(5, 12, 22, 0.55);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
  max-width: 560px;
  box-shadow: inset 0 0 15px rgba(0, 255, 136, 0.03);
}

.hud-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-item:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 255, 136, 0.08);
  padding-bottom: 10px;
}

.hud-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0, 255, 136, 0.7);
  letter-spacing: 0.1em;
  font-family: monospace;
}

.hud-value {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
}

/* CTA */
.store-actions {
  margin-top: 15px;
}

.store-cta-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: var(--green-neon);
  color: #02070d;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: monospace;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
}

.store-cta-whatsapp:hover {
  background: #fff;
  color: #02070d;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cta-pulse {
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shinePulse 3.5s infinite;
}

@keyframes shinePulse {
  0% { left: -50%; }
  30% { left: 150%; }
  100% { left: 150%; }
}

/* Live Cam Feed Panel */
.store-feed-panel {
  position: relative;
  background: rgba(5, 12, 22, 0.8);
  border: 1px solid var(--green-neon);
  border-radius: var(--radius-md);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.15), inset 0 0 20px rgba(0, 255, 136, 0.05);
  padding: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.feed-corners span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--green-neon);
  border-style: solid;
  z-index: 5;
}
.feed-corners span:nth-child(1) { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; }
.feed-corners span:nth-child(2) { top: 8px; right: 8px; border-width: 1.5px 1.5px 0 0; }
.feed-corners span:nth-child(3) { bottom: 8px; left: 8px; border-width: 0 0 1.5px 1.5px; }
.feed-corners span:nth-child(4) { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; }

.feed-scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 255, 136, 0.05) 50%
  );
  background-size: 100% 3px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.35;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px 10px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  margin-bottom: 10px;
  font-family: monospace;
}

.feed-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-status-led {
  width: 6px;
  height: 6px;
  background: var(--green-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-neon);
  animation: storeBlink 1.5s infinite alternate;
}

@keyframes storeBlink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

.feed-cam-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green-neon);
  letter-spacing: 0.05em;
}

.feed-fps-tag {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
}

.feed-video-container {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.2);
  background: #000;
}

.feed-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.1) saturate(0.8);
}

.feed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 4px;
  font-family: monospace;
  font-size: 0.6rem;
  color: rgba(0, 255, 136, 0.6);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #punto-fisico {
    padding: 80px 0;
  }
  .store-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .store-info-panel {
    align-items: center;
    text-align: center;
  }
  .store-desc {
    margin: 0 auto;
  }
  .store-details-hud {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .store-feed-panel {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .store-title {
    font-size: 2.2rem;
  }
  .store-details-hud {
    padding: 16px;
  }
  .hud-value {
    font-size: 0.82rem;
  }
  .store-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   BOTONES "VER MÁS" CON DISEÑO CIBERNÉTICO
   ========================================================================== */
.cyber-btn-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}

.cyber-btn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 42px;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--green-neon);
  background: transparent;
  border: 1px solid var(--green-neon);
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.15em;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  z-index: 1;
}

.cyber-btn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--green-neon);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cyber-btn-more:hover {
  color: #02070d;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  transform: translateY(-3px);
}

.cyber-btn-more:hover::before {
  left: 0;
}

.cyber-btn-more .btn-glitch-text {
  position: relative;
  z-index: 2;
}

.cyber-btn-more .btn-arrow {
  margin-left: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  display: inline-block;
  z-index: 2;
}

.cyber-btn-more:hover .btn-arrow {
  transform: translateX(6px);
}

/* Corner bracket details */
.cyber-btn-more::after {
  content: ' [+]';
  font-size: 0.7rem;
  opacity: 0.7;
  margin-left: 5px;
  font-weight: normal;
  transition: color 0.3s ease;
  z-index: 2;
}

.cyber-btn-more:hover::after {
  color: #02070d;
}

/* Responsive container widths for desktop screens */
@media (min-width: 1440px) {
  .container,
  .relojes-products-header-cyber,
  .relojes-products-grid,
  .cargadores-products-header-cyber,
  .cargadores-products-grid,
  .combos-header-cyber,
  .combos-grid {
    max-width: 1350px;
  }
}

@media (min-width: 1680px) {
  .container,
  .relojes-products-header-cyber,
  .relojes-products-grid,
  .cargadores-products-header-cyber,
  .cargadores-products-grid,
  .combos-header-cyber,
  .combos-grid {
    max-width: 1550px;
  }
}

@media (min-width: 1920px) {
  .container,
  .relojes-products-header-cyber,
  .relojes-products-grid,
  .cargadores-products-header-cyber,
  .cargadores-products-grid,
  .combos-header-cyber,
  .combos-grid {
    max-width: 1750px;
  }
}

/* ============================================================
   PROMO BANNERS SECTION (BANNERS PUBLICITARIOS)
   ============================================================ */
#promo-banners {
  padding: 60px 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(212, 160, 23, 0.08) 0%, transparent 70%), #080a0f;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-header-cyber {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.cyber-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ff3366;
  background: rgba(255, 51, 102, 0.12);
  border: 1px solid rgba(255, 51, 102, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.promo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #f39c12, #d4a017, #f1c40f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-subtitle-tag {
  font-family: monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

/* Banner Grid */
.promo-banner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .promo-banner-grid {
    grid-template-columns: 1fr;
  }
}

/* Banner Card */
.promo-banner-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: #0d1117;
}

.promo-banner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 156, 18, 0.7);
  box-shadow: 0 20px 50px rgba(243, 156, 18, 0.25);
}

.promo-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.promo-banner-card:hover .promo-banner-img {
  transform: scale(1.04);
}

/* Overlay gradient */
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.1) 0%, rgba(8, 10, 15, 0.75) 50%, rgba(8, 10, 15, 0.95) 100%);
  z-index: 1;
}

.promo-overlay-subtle {
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.2) 0%, rgba(8, 10, 15, 0.85) 100%);
}

/* Content */
.promo-banner-content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.promo-content-compact {
  padding: 24px;
}

.promo-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d4a017;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.promo-tag-accent {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.3);
}

.promo-banner-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.promo-banner-heading-sm {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.promo-banner-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  max-width: 600px;
  line-height: 1.5;
}

.promo-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.promo-btn-whatsapp {
  background: rgba(37, 211, 102, 0.15) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25d366 !important;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.promo-btn-whatsapp:hover {
  background: #25d366 !important;
  color: #000000 !important;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5) !important;
}

.promo-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #00ff88;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.promo-link-arrow:hover {
  gap: 14px;
  color: #ffffff;
}

/* Cyber Corners HUD detail */
.cyber-corners span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(243, 156, 18, 0.6);
  border-style: solid;
  pointer-events: none;
  z-index: 3;
}

.cyber-corners span:nth-child(1) { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.cyber-corners span:nth-child(2) { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.cyber-corners span:nth-child(3) { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.cyber-corners span:nth-child(4) { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }


