/* ======================================== */
/* VARIABLES Y RESET */
/* ======================================== */
:root {
  --cyan: #00e5ff;
  --cyan-dim: #00b8cc;
  --cyan-glow: rgba(0,229,255,0.15);
  --cyan-border: rgba(0,229,255,0.3);
  --blue: #0070f3;
  --dark: #040a12;
  --dark2: #070d18;
  --dark3: #0a1220;
  --dark4: #0d1828;
  --surface: #0f1e30;
  --surface2: #132336;
  --text: #e0f4ff;
  --text-muted: #7ba8c4;
  --text-dim: #4a7a9b;
  --accent: #ff6b35;
  --green: #00ff88;
  --yellow: #ffcc00;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { background: var(--dark); color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 16px; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: 2px; }

.hidden-nav { display: none !important; }

/* ======================================== */
/* TOPBAR */
/* ======================================== */
.topbar { background: var(--dark2); border-bottom: 1px solid var(--cyan-border); padding: 6px 0; overflow: hidden; position: relative; }
.topbar-track { display: flex; gap: 60px; animation: marquee 40s linear infinite; white-space: nowrap; font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--cyan-dim); letter-spacing: 0.05em; }
.topbar-track span { color: var(--cyan); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======================================== */
/* NAV */
/* ======================================== */
nav { position: sticky; top: 0; z-index: 100; background: rgba(4, 10, 18, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--cyan-border); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo span { color: var(--text); }

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
  transition: all 0.3s;
}
.logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.6));
  transform: scale(1.05);
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: 0.08em; padding: 8px 14px; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; }
.nav-links a:hover { color: var(--cyan); background: var(--cyan-glow); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--surface); border: 1px solid var(--cyan-border); border-radius: 6px; min-width: 220px; overflow: hidden; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 16px; color: var(--text-muted); font-size: 13px; border-bottom: 1px solid rgba(0,229,255,0.08); border-radius: 0; }
.dropdown-menu a:hover { color: var(--cyan); background: var(--cyan-glow); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-ghost { background: transparent; border: 1px solid var(--cyan-border); color: var(--cyan); padding: 8px 20px; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-ghost:hover { background: var(--cyan-glow); border-color: var(--cyan); }
.btn-primary { background: var(--cyan); border: 1px solid var(--cyan); color: var(--dark); padding: 8px 20px; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary:hover { background: var(--cyan-dim); box-shadow: 0 0 16px rgba(0,229,255,0.3); }

.user-pill { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--cyan-border); padding: 6px 14px; border-radius: 20px; }
.user-avatar { width: 24px; height: 24px; background: var(--cyan); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.user-name { font-size: 13px; font-weight: 600; color: var(--text); }
.btn-logout { background: transparent; border: none; color: var(--text-dim); cursor: pointer; font-size: 14px; padding: 4px; transition: color 0.2s; }
.btn-logout:hover { color: #ff4455; }

.btn-logout-text { 
  background: rgba(255,68,85,0.15); 
  border: 1px solid #ff4455; 
  color: #ff4455; 
  padding: 4px 12px; 
  border-radius: 4px; 
  font-size: 11px; 
  font-weight: 600; 
  cursor: pointer; 
  transition: all 0.2s; 
  font-family: 'Rajdhani', sans-serif; 
  text-transform: uppercase; 
}
.btn-logout-text:hover {
  background: #ff4455 !important;
  color: white !important;
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.hamburger { width: 28px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; width: 100%; height: 3px; background: var(--cyan); border-radius: 2px; transition: all 0.3s; }
.menu-toggle.active .hamburger span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle.active .hamburger span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: var(--surface); border-right: 1px solid var(--cyan-border); z-index: 999; transition: left 0.3s ease; overflow-y: auto; padding: 80px 0 40px; }
.mobile-drawer.open { left: 0; }
.mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(4, 10, 18, 0.85); backdrop-filter: blur(4px); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-drawer-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-links { list-style: none; padding: 0 20px; }
.mobile-nav-links li { margin-bottom: 8px; }
.mobile-nav-links a { display: block; color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: 0.08em; padding: 12px 16px; border-radius: 4px; transition: all 0.2s; text-transform: uppercase; }
.mobile-nav-links a:hover { color: var(--cyan); background: var(--cyan-glow); }
.mobile-dropdown-content { display: none; padding-left: 20px; margin-top: 8px; }
.mobile-dropdown-content.open { display: block; }
.mobile-dropdown-content a { font-size: 13px; padding: 10px 16px; }
.mobile-dropdown-toggle::after { content: ' ▾'; font-size: 10px; float: right; transition: transform 0.2s; }
.mobile-dropdown-toggle.open::after { transform: rotate(180deg); }
.mobile-nav-actions { padding: 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--cyan-border); margin-top: 20px; }

/* ======================================== */
/* HERO */
/* ======================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.hero-bg-image.faded { opacity: 0.05; }

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,229,255,0.06) 0%, transparent 70%), 
              radial-gradient(ellipse 50% 40% at 80% 100%, rgba(0,112,243,0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  position: relative;
}

.hero-text { flex: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); color: var(--cyan); font-family: 'Share Tech Mono', monospace; font-size: 12px; padding: 6px 14px; border-radius: 2px; letter-spacing: 0.15em; margin-bottom: 28px; animation: fadeUp 0.8s ease both; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 { font-family: 'Orbitron', monospace; font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin-bottom: 10px; animation: fadeUp 0.8s 0.1s ease both; }
.hero h1 .line-glow { color: var(--cyan); display: block; }
.hero h1 .line-dim { color: var(--text-muted); display: block; font-weight: 400; font-size: 0.5em; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Rajdhani', sans-serif; }
.hero-sub { font-size: 18px; color: var(--text-muted); max-width: 580px; line-height: 1.6; margin-bottom: 40px; font-weight: 400; animation: fadeUp 0.8s 0.2s ease both; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.btn-large { padding: 14px 36px; font-size: 15px; border-radius: 4px; }
.hero-visual { flex: 1; position: relative; animation: float 6s ease-in-out infinite; max-width: 500px; width: 100%; }
.hero-visual img { width: 100%; height: auto; border-radius: 24px; border: 1px solid var(--cyan-border); box-shadow: 0 0 60px rgba(0, 229, 255, 0.15), 0 20px 40px rgba(0,0,0,0.5); object-fit: cover; }

/* ======================================== */
/* LOGO ANIMADO EN HERO */
/* ======================================== */
.hero-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 500px;
}

.hero-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4));
  animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-logo:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 60px rgba(0, 229, 255, 0.8)) 
        drop-shadow(0 0 100px rgba(0, 229, 255, 0.4));
}

.hero-logo-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-top: 2px solid var(--cyan);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
  pointer-events: none;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan);
}

.hero-logo-ring-2 {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(0, 229, 255, 0.15);
  border-radius: 50%;
  animation: ringRotate 12s linear infinite reverse;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: particleFloat 3s ease-in-out infinite;
}

.hero-particle:nth-child(2) { top: 20%; left: 10%; animation-delay: 0.5s; }
.hero-particle:nth-child(3) { top: 60%; right: 15%; animation-delay: 1s; }
.hero-particle:nth-child(4) { bottom: 30%; left: 20%; animation-delay: 1.5s; }
.hero-particle:nth-child(5) { top: 40%; right: 25%; animation-delay: 2s; }

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

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4)); }
  50% { filter: drop-shadow(0 0 50px rgba(0, 229, 255, 0.7)); }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-30px) scale(1.5);
    opacity: 1;
  }
}

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

/* ======================================== */
/* CARRUSEL DE MARCAS */
/* ======================================== */
.brands-carousel-section {
  padding: 60px 40px;
  background: var(--dark2);
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  position: relative;
}

.brands-carousel-title {
  text-align: center;
  margin-bottom: 40px;
}

.brands-carousel-title h2 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.brands-carousel-title h2 .hl { color: var(--cyan); }

.brands-carousel-title p {
  font-size: 16px;
  color: var(--text-muted);
}

.brands-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15), 0 10px 30px rgba(0,0,0,0.5);
  border: 2px solid var(--cyan-border);
  transition: transform 0.5s ease;
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

.carousel-label {
  margin-top: 24px;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan-border);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.carousel-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ======================================== */
/* SECCIONES GENERALES */
/* ======================================== */
.brands-section { background: var(--dark2); border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border); padding: 40px 20px; }
.brands-label { text-align: center; font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 24px; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1000px; margin: 0 auto; }
.brand-badge { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid rgba(0,229,255,0.1); padding: 12px 24px; border-radius: 8px; font-family: 'Orbitron', monospace; font-size: 13px; font-weight: 600; color: var(--text-muted); transition: all 0.3s; cursor: default; }
.brand-badge:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-glow); transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,229,255,0.1); }
.brand-badge svg { width: 20px; height: 20px; fill: currentColor; }

.stats-bar { background: var(--surface); border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border); padding: 24px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid var(--cyan-border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Orbitron', monospace; font-size: 32px; font-weight: 700; color: var(--cyan); display: block; line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 6px; font-weight: 600; }

.ticker { background: var(--dark2); padding: 16px 0; overflow: hidden; border-bottom: 1px solid rgba(0,229,255,0.1); }
.ticker-inner { display: flex; gap: 48px; animation: marquee 60s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); font-family: 'Share Tech Mono', monospace; flex-shrink: 0; }
.ticker-dot { width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; }
.ticker-item strong { color: var(--text); }

section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--cyan); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title { font-family: 'Orbitron', monospace; font-size: clamp(22px, 4vw, 38px); font-weight: 700; line-height: 1.2; color: var(--text); }
.section-title .hl { color: var(--cyan); }
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 14px auto 0; line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--surface); border: 1px solid rgba(0,229,255,0.12); border-radius: 6px; padding: 28px 24px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: var(--cyan-border); transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--cyan); }
.service-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: 'Orbitron', monospace; font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.05em; margin-bottom: 8px; text-transform: uppercase; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.15); color: var(--cyan-dim); font-size: 11px; padding: 3px 8px; border-radius: 2px; font-family: 'Share Tech Mono', monospace; letter-spacing: 0.05em; }

.banner-section { background: var(--surface); border-top: 1px solid var(--cyan-border); border-bottom: 1px solid var(--cyan-border); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.banner-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,229,255,0.04) 0%, transparent 70%); pointer-events: none; }
.banner-inner { max-width: 800px; margin: 0 auto; position: relative; }
.banner-title { font-family: 'Orbitron', monospace; font-size: clamp(18px, 3vw, 32px); font-weight: 700; color: var(--text); margin-bottom: 16px; line-height: 1.3; }
.banner-title span { color: var(--cyan); }
.banner-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-card { background: var(--surface); border: 1px solid rgba(0,229,255,0.1); border-radius: 6px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.2s; }
.feature-card:hover { border-color: var(--cyan-border); }
.feature-icon-wrap { flex-shrink: 0; width: 44px; height: 44px; background: var(--cyan-glow); border: 1px solid var(--cyan-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.feature-icon-wrap svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h4 { font-family: 'Orbitron', monospace; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.pricing-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.ptab { background: transparent; border: 1px solid rgba(0,229,255,0.2); color: var(--text-muted); padding: 10px 22px; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.ptab.active, .ptab:hover { background: var(--cyan-glow); border-color: var(--cyan); color: var(--cyan); }
.pricing-table { background: var(--surface); border: 1px solid rgba(0,229,255,0.15); border-radius: 6px; overflow: hidden; }
.pt-header { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 0; background: var(--surface2); border-bottom: 1px solid rgba(0,229,255,0.12); padding: 14px 24px; }
.pt-header span { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.pt-header span:not(:first-child) { text-align: center; }
.pt-row { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; padding: 14px 24px; border-bottom: 1px solid rgba(0,229,255,0.06); transition: background 0.15s; align-items: center; }
.pt-row:hover { background: rgba(0,229,255,0.03); }
.pt-row:last-child { border-bottom: none; }
.pt-name { font-size: 14px; color: var(--text); font-weight: 500; }
.pt-name small { display: block; font-size: 12px; color: var(--text-dim); font-weight: 400; margin-top: 2px; }
.pt-price { text-align: center; font-family: 'Share Tech Mono', monospace; font-size: 13px; color: var(--cyan); }
.pt-avail { text-align: center; font-size: 13px; }
.dot-green { color: var(--green); }
.dot-red { color: #ff4455; }

.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.social-card { border-radius: 8px; padding: 32px 28px; display: flex; align-items: center; gap: 24px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid transparent; }
.social-card:hover { transform: translateY(-2px); }
.social-card.wa { background: linear-gradient(135deg, #071e12 0%, #0a2e1a 100%); border-color: rgba(37,211,102,0.2); }
.social-card.tg { background: linear-gradient(135deg, #060f1e 0%, #091525 100%); border-color: rgba(0,136,204,0.2); }
.social-icon { font-size: 40px; flex-shrink: 0; }
.social-card h3 { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.social-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.social-card.wa h3 { color: #25d366; }
.social-card.tg h3 { color: #0088cc; }
.social-card .social-btn { margin-top: 12px; display: inline-block; padding: 8px 18px; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s; }
.social-card.wa .social-btn { background: #25d366; color: #0a2e1a; }
.social-card.tg .social-btn { background: #0088cc; color: #fff; }

/* ======================================== */
/* FOOTER */
/* ======================================== */
footer { background: var(--dark2); border-top: 1px solid var(--cyan-border); padding: 60px 40px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 20px; display: block; margin-bottom: 14px; }
.footer-brand .logo-img { height: 60px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: var(--surface); border: 1px solid var(--cyan-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s; color: var(--text-muted); }
.social-link:hover { background: var(--cyan-glow); color: var(--cyan); }
.social-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 600; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(0,229,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom strong { color: var(--cyan); font-weight: 600; }

/* ======================================== */
/* MODALES */
/* ======================================== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(4,10,18,0.85); backdrop-filter: blur(6px); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }

.modal-overlay.fade-out {
  animation: modalFadeOut 0.4s ease forwards;
}

@keyframes modalFadeOut {
  from { opacity: 1; visibility: visible; }
  to { opacity: 0; visibility: hidden; }
}

.modal.fade-out {
  animation: modalSlideOut 0.4s ease forwards;
}

@keyframes modalSlideOut {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(0.9); opacity: 0; }
}

.modal { background: var(--surface); border: 1px solid var(--cyan-border); border-radius: 8px; padding: 40px; width: 400px; max-width: 95vw; position: relative; animation: fadeUp 0.3s ease; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--text-dim); font-size: 20px; cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--cyan); }
.modal h2 { font-family: 'Orbitron', monospace; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--text-dim); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Share Tech Mono', monospace; }
.form-group input, .form-group select { width: 100%; background: var(--dark3); border: 1px solid rgba(0,229,255,0.2); color: var(--text); padding: 12px 16px; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--cyan); }
.form-forgot { text-align: right; margin-top: -10px; margin-bottom: 18px; }
.form-forgot a { font-size: 12px; color: var(--text-dim); text-decoration: none; }
.form-forgot a:hover { color: var(--cyan); }
.btn-full { width: 100%; padding: 14px; font-size: 15px; }

.form-toggle { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-dim); }
.form-toggle a { color: var(--cyan); text-decoration: none; cursor: pointer; font-weight: 600; }
.form-toggle a:hover { text-decoration: underline; }
.hidden { display: none !important; }

.toast-container { position: fixed; top: 80px; right: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--surface); border: 1px solid var(--cyan-border); color: var(--text); padding: 14px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.4); display: flex; align-items: center; gap: 10px; animation: slideIn 0.3s ease; min-width: 250px; }
.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid #ff4455; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; transform: translateX(100%); } }

.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 500; background: #25d366; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: transform 0.2s, box-shadow 0.2s; color: white; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ======================================== */
/* PRECIOS BLOQUEADOS */
/* ======================================== */
.pricing-locked {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-blur-content {
  filter: blur(8px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 10, 18, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--cyan-border);
}

.pricing-overlay-content {
  text-align: center;
  padding: 40px;
  max-width: 400px;
}

.pricing-overlay-content svg {
  width: 60px;
  height: 60px;
  color: var(--cyan);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.pricing-overlay-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 10px;
}

.pricing-overlay-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Estilos para registro multi-paso */
.register-step {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.otp-input {
  background: var(--dark3);
  border: 1px solid var(--cyan-border);
  color: var(--text);
  border-radius: 6px;
  font-family: 'Share Tech Mono', monospace;
  outline: none;
  transition: all 0.2s;
}

.otp-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 60px 20px; min-height: auto; }
  .hero-content { flex-direction: column; text-align: center; gap: 30px; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 100%; order: -1; }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pt-header, .pt-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .pt-header span:last-child, .pt-row > *:last-child { display: none; }
  section { padding: 60px 20px; }
  
  .brands-carousel-section { padding: 40px 20px; }
  .brands-carousel { padding: 0 40px; }
  .carousel-slide img { max-height: 300px; }
  .carousel-label { font-size: 20px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 16px; }
  
  .hero-logo-container { height: 350px; }
  .hero-logo { max-width: 300px; }
  .hero-logo-ring { width: 280px; height: 280px; }
  .hero-logo-ring-2 { width: 330px; height: 330px; }
  
  .logo-img { height: 40px; }
  .footer-brand .logo-img { height: 50px; }
}

/* Métodos de Pago */
.payment-methods {
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, rgba(0,255,136,0.05) 100%);
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.payment-title {
  margin-bottom: 20px;
}

.payment-title span {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 8px 20px;
  border: 1px solid var(--cyan-border);
  border-radius: 20px;
  display: inline-block;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: var(--dark3);
  border: 1px solid var(--cyan-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.payment-item:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
  box-shadow: 0 5px 20px rgba(0,229,255,0.3);
}

.payment-icon {
  font-size: 32px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.payment-item span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .payment-logos {
    gap: 15px;
  }
  
  .payment-item {
    padding: 12px 15px;
    min-width: 80px;
  }
  
  .payment-icon {
    font-size: 24px;
  }
  
  .payment-item span {
    font-size: 10px;
  }
  
  .payment-title span {
    font-size: 12px;
    padding: 6px 15px;
  }
}