/* ============================================
   MAGNAMICROM - Estilos Principales
   Diseño: Negro + Naranja, Tech/Industrial
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6600;
  --orange-dark: #e55a00;
  --orange-light: #ff8833;
  --black: #000000;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --white: #ffffff;
  --white90: rgba(255,255,255,0.9);
  --white10: rgba(255,255,255,0.07);
  --orange10: rgba(255,102,0,0.1);
  --orange20: rgba(255,102,0,0.2);
  --orange50: rgba(255,102,0,0.5);
  --font-title: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --transition: 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 0 30px rgba(255,102,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary > * { position: relative; }
.btn-primary.sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,102,0,0.15);
  transition: all var(--transition);
}
#header.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom-color: rgba(255,102,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}
.logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--orange); }

.btn-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 9px 20px;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-wa-header:hover { background: #1ebe5d; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,102,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,102,0,0.05) 0%, transparent 50%),
              var(--black);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: fadeInUp 0.8s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange10);
  border: 1px solid var(--orange20);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Circuit visual */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.circuit-board {
  position: relative;
  width: 100%;
  height: 100%;
}
.circuit-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(255,102,0,0.15);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}
.chip {
  position: absolute;
  background: var(--dark3);
  border: 1px solid rgba(255,102,0,0.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  animation: chipGlow 2s ease-in-out infinite alternate;
}
@keyframes chipGlow {
  from { border-color: rgba(255,102,0,0.3); box-shadow: none; }
  to { border-color: var(--orange); box-shadow: 0 0 20px rgba(255,102,0,0.4); }
}
.chip-main {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 3;
}
.chip-sm {
  width: 60px;
  height: 60px;
  font-size: 0;
}
.chip-sm::after {
  content: '';
  width: 24px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.7;
}
.c1 { top: 15%; left: 20%; animation-delay: 0.5s; }
.c2 { top: 70%; right: 15%; animation-delay: 1s; }
.c3 { bottom: 15%; left: 30%; animation-delay: 1.5s; }
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 50%;
  animation: expand 3s ease-out infinite;
}
.r1 { width: 200px; height: 200px; animation-delay: 0s; }
.r2 { width: 300px; height: 300px; animation-delay: 1.5s; }
@keyframes expand {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--orange);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 1; }
  50% { width: 20px; opacity: 0.4; }
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── SERVICIOS ─── */
.servicios-section { background: var(--dark2); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.servicio-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.servicio-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}
.card-body {
  padding: 22px;
}
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange10);
  border: 1px solid var(--orange20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: all var(--transition);
}
.servicio-card:hover .card-icon {
  background: var(--orange);
  color: var(--white);
}
.card-body h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}
.card-cta:hover { gap: 10px; }

/* ─── ESPECIALIDAD ─── */
.especialidad-section { background: var(--dark); }
.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.esp-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.esp-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.esp-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}
.esp-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.esp-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}
.esp-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 5rem;
  color: rgba(255,102,0,0.05);
}

.lab-banner {
  background: var(--dark3);
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.lab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lab-text {
  padding: 48px;
}
.lab-text h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.lab-list { list-style: none; }
.lab-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--gray-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lab-list li i { color: var(--orange); }
.lab-visual {
  position: relative;
  overflow: hidden;
}
.lab-img-wrap {
  height: 100%;
  min-height: 280px;
  position: relative;
}
.lab-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lab-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark3) 0%, transparent 30%);
}

/* ─── ENSAMBLE ─── */
.ensamble-section { background: var(--dark2); }
.ensamble-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ensamble-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.ensamble-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.ensamble-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.ensamble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ensamble-card:hover .ensamble-img img { transform: scale(1.06); }
.ensamble-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.ensamble-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.gamer-tag {
  background: linear-gradient(135deg, #7f00ff, #ff6600);
}
.ensamble-info {
  padding: 28px;
}
.ensamble-info h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ensamble-info p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  margin-bottom: 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.feature-list li i { color: var(--orange); font-size: 0.75rem; }
.gamer-btn { background: linear-gradient(135deg, #7f00ff, #ff6600); border: none; }

/* ─── CLIENTES ─── */
.clientes-section { background: var(--dark); }
.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.cliente-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 40px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  filter: grayscale(100%) brightness(0.7);
}
.cliente-card:hover {
  border-color: var(--orange);
  filter: grayscale(0%) brightness(1);
  transform: translateY(-3px);
}
.cliente-card img { max-height: 60px; }
.cliente-placeholder {
  text-align: center;
  color: var(--gray);
}
.cliente-placeholder i {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.cliente-placeholder span {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--orange10); }
.trust-item i { font-size: 1.5rem; color: var(--orange); flex-shrink: 0; }
.trust-item span { font-size: 0.85rem; color: var(--gray-light); font-weight: 500; }

/* ─── CONTACTO ─── */
.contacto-section { background: var(--dark2); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contacto-info { }
.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange10);
  border: 1px solid var(--orange20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-block h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color var(--transition);
}
.info-block a:hover { color: var(--orange); }
.wa-options { margin-bottom: 24px; }
.wa-options h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.wa-btn:hover { background: #1ebe5d; transform: translateX(4px); }
.wa-alt { background: #128C7E; }
.wa-alt:hover { background: #0d7169; }
.redes-sociales h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 12px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-btn.fb { background: #1877F2; color: var(--white); }
.social-btn.fb:hover { background: #0d65d9; transform: translateY(-2px); }
.social-btn.tk { background: var(--dark4); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.social-btn.tk:hover { background: #010101; transform: translateY(-2px); }
.contacto-map { }
.map-wrap {
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  filter: grayscale(40%) invert(85%) contrast(90%);
}
.map-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
}
.map-label i { color: var(--orange); }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,102,0,0.15);
}
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { list-style: none; }
.footer-links li a {
  color: var(--gray);
  font-size: 0.85rem;
  padding: 4px 0;
  display: block;
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.85rem;
  padding: 5px 0;
  line-height: 1.5;
}
.footer-contact li i { color: var(--orange); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-bottom a { color: var(--gray); font-size: 0.8rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ─── WHATSAPP FLOTANTE ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  position: relative;
}
.wa-float-btn:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float-options {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.2s ease;
}
.wa-float-options.show { display: flex; }
.wa-option-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.wa-option:hover { background: #1ebe5d; }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 998;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .esp-grid { grid-template-columns: 1fr 1fr; }
  .lab-content { grid-template-columns: 1fr; }
  .lab-visual { min-height: 220px; }
  .ensamble-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-main {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    padding: 24px;
    gap: 6px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,102,0,0.2);
    margin-left: 0;
  }
  .nav-main.open { transform: translateY(0); }
  .btn-wa-header { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .section { padding: 70px 0; }
  .esp-grid { grid-template-columns: 1fr; }
  .contacto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .servicios-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

/* ─── LOGO IMG ─── */
.logo-img {
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* ─── TECH SCENE (Hero Visual) ─── */
.tech-scene {
  position: relative;
  width: 420px;
  height: 420px;
}
.tech-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: techGlowPulse 3s ease-in-out infinite;
}
@keyframes techGlowPulse {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}
.circuit-traces {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.tech-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,102,0,0.12);
  border-radius: 50%;
  animation: techRingExpand 4s ease-out infinite;
}
.tech-ring.r1 { width: 240px; height: 240px; animation-delay: 0s; }
.tech-ring.r2 { width: 360px; height: 360px; animation-delay: 2s; }
@keyframes techRingExpand {
  0% { opacity: 0.5; transform: translate(-50%,-50%) scale(0.85); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.2); }
}

/* — MAINBOARD — */
.tc-mainboard {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 170px; height: 170px;
  background: linear-gradient(135deg, #1a1a0a 0%, #111108 100%);
  border: 1.5px solid rgba(255,102,0,0.5);
  border-radius: 8px;
  padding: 12px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(255,102,0,0.2), inset 0 0 20px rgba(255,102,0,0.04);
  z-index: 10;
  animation: mbFloat 4s ease-in-out infinite;
}
@keyframes mbFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-6px); }
}
.mb-label {
  font-family: var(--font-title);
  font-size: 0.6rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}
.mb-socket {
  position: relative;
  width: 70px; height: 70px;
  background: #0d0d00;
  border: 1px solid rgba(255,102,0,0.4);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.mb-socket-inner {
  width: 50px; height: 50px;
  background: #1a1500;
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.mb-socket-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 3px;
  padding: 4px;
}
.mb-pin {
  width: 4px; height: 4px;
  background: rgba(255,102,0,0.5);
  border-radius: 50%;
  animation: pinBlink 2s ease-in-out infinite;
}
.mb-pin:nth-child(odd) { animation-delay: 0.5s; }
.mb-pin:nth-child(3n) { animation-delay: 1s; }
@keyframes pinBlink {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; background: #ff6600; }
}
.mb-socket-glow {
  position: absolute;
  inset: -4px;
  border-radius: 6px;
  border: 1px solid rgba(255,102,0,0.3);
  animation: socketGlow 2s ease-in-out infinite;
}
@keyframes socketGlow {
  0%,100% { box-shadow: none; }
  50% { box-shadow: 0 0 12px rgba(255,102,0,0.5); }
}
.mb-slots { display: flex; gap: 4px; }
.mb-slot {
  width: 40px; height: 7px;
  background: #0a0a00;
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 1px;
}
.mb-slot.active {
  border-color: rgba(255,102,0,0.6);
  box-shadow: 0 0 6px rgba(255,102,0,0.4);
}
.mb-caps { display: flex; gap: 5px; }
.mb-cap {
  width: 8px; height: 14px;
  background: linear-gradient(to top, #552200, #ff6600);
  border-radius: 2px 2px 0 0;
  border: 1px solid rgba(255,102,0,0.5);
  position: relative;
}
.mb-cap::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: #ff9933;
  border-radius: 50%;
}
.pulse-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
.d1 { top: 8px; right: 8px; animation-delay: 0s; }
.d2 { bottom: 8px; left: 8px; animation-delay: 0.5s; }
.d3 { bottom: 8px; right: 8px; animation-delay: 1s; }
@keyframes dotPulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 8px var(--orange); }
}

/* — GPU — */
.tc-gpu {
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  animation: gpuFloat 3.5s ease-in-out infinite 0.5s;
}
@keyframes gpuFloat {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}
.gpu-body {
  width: 105px; height: 165px;
  background: linear-gradient(170deg, #1a1a1a 0%, #111 100%);
  border: 1.5px solid rgba(255,102,0,0.45);
  border-radius: 6px;
  padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 0 0 20px rgba(255,102,0,0.15), -4px 0 20px rgba(255,102,0,0.1);
  position: relative;
}
.gpu-glow {
  position: absolute;
  left: -8px; top: 20%; bottom: 20%;
  width: 8px;
  background: linear-gradient(to bottom, transparent, rgba(255,102,0,0.5), transparent);
  border-radius: 4px 0 0 4px;
  animation: gpuGlow 2s ease-in-out infinite;
}
@keyframes gpuGlow { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
.gpu-label {
  font-family: var(--font-title);
  font-size: 0.55rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.5px;
  align-self: flex-start;
}
.gpu-fans { display: flex; gap: 6px; }
.gpu-fan {
  width: 38px; height: 38px;
  background: #0d0d0d;
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fanSpin 1.2s linear infinite;
}
@keyframes fanSpin { to { transform: rotate(360deg); } }
.fan-blade {
  position: absolute;
  width: 14px; height: 6px;
  background: rgba(255,102,0,0.7);
  border-radius: 3px;
  transform-origin: right center;
}
.fan-blade.b1 { transform: rotate(0deg) translateX(-7px); }
.fan-blade.b2 { transform: rotate(120deg) translateX(-7px); }
.fan-blade.b3 { transform: rotate(240deg) translateX(-7px); }
.fan-center {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.gpu-connector {
  display: flex; gap: 2px; margin-top: auto;
  padding: 4px;
  background: #0a0a0a;
  border: 1px solid rgba(255,102,0,0.2);
  border-radius: 3px;
}
.gpu-pin {
  width: 6px; height: 12px;
  background: rgba(255,102,0,0.4);
  border-radius: 1px;
}
.gpu-pin:nth-child(odd) { height: 8px; margin-top: 4px; }

/* — RAM — */
.tc-ram {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 8;
  animation: ramFloat 3s ease-in-out infinite 1s;
}
@keyframes ramFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}
.ram-stick {
  width: 28px; height: 110px;
  background: linear-gradient(180deg, #0d1a0d 0%, #091209 100%);
  border: 1px solid rgba(255,102,0,0.35);
  border-radius: 3px 3px 1px 1px;
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 3px 0;
  gap: 4px;
  position: relative;
  box-shadow: 0 0 12px rgba(255,102,0,0.1);
}
.ram-label {
  font-size: 0.45rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.ram-chips {
  display: flex; flex-direction: column; gap: 3px;
  flex: 1;
}
.ram-chip {
  width: 20px; height: 12px;
  background: #1a2a1a;
  border: 1px solid rgba(255,102,0,0.25);
  border-radius: 1px;
}
.ram-edge {
  display: flex; gap: 1px; margin-top: auto;
  padding-bottom: 2px;
}
.ram-pin {
  width: 3px; height: 8px;
  background: rgba(255,180,0,0.6);
  border-radius: 0 0 1px 1px;
}
.ram-rgb {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ff3300, #ff6600);
  border-radius: 3px 3px 0 0;
  animation: rgbGlow 2s ease-in-out infinite;
}
@keyframes rgbGlow {
  0%,100% { opacity: 0.6; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(255,102,0,0.8); }
}
.ram-stick.s2 .ram-rgb {
  background: linear-gradient(90deg, #ff3300, #ff6600, #ff3300);
  animation-delay: 1s;
}

/* — SSD NVME — */
.tc-ssd {
  position: absolute;
  bottom: 10px; left: -5px;
  width: 115px; height: 50px;
  background: linear-gradient(135deg, #1a0a1a 0%, #110811 100%);
  border: 1.5px solid rgba(255,102,0,0.35);
  border-radius: 4px;
  padding: 6px 8px;
  z-index: 8;
  box-shadow: 0 0 16px rgba(255,102,0,0.1);
  animation: ssdFloat 4s ease-in-out infinite 1.5s;
}
@keyframes ssdFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(0deg); }
}
.ssd-label {
  font-family: var(--font-title);
  font-size: 0.5rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.ssd-chips { display: flex; gap: 3px; margin-bottom: 4px; }
.ssd-chip {
  height: 14px; flex: 1;
  background: #1a0a1a;
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 2px;
}
.ssd-chip.big { flex: 2; }
.ssd-connector {
  display: flex; gap: 1px;
}
.ssd-connector span {
  flex: 1; height: 5px;
  background: rgba(255,180,0,0.5);
  border-radius: 0 0 1px 1px;
}

