/* ===============================
   HERO TECH - PUBLICIDAD NEON
================================ */

#hero-tech {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #02010a;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* CANVAS SOLO PARA EL HERO */
#hero-tech canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENIDO */
#hero-tech .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* TITULO */
#hero-tech h1 {
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

#hero-tech h1 span {
  color: #00ffd5;
  text-shadow:
    0 0 10px #00ffd5,
    0 0 25px #00ffd5,
    0 0 45px rgba(0,255,213,0.7);
}

/* TEXTO */
#hero-tech p {
  opacity: 0.8;
  margin: 22px 0;
  font-size: 1.1rem;
}

/* BOTÓN */
#hero-tech button {
  padding: 14px 42px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #00ffd5, #8b6704);
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(0,255,213,.6);
  transition: all 0.35s ease;
}

#hero-tech button:hover {
  transform: scale(1.15);
  box-shadow: 0 0 70px rgba(0,255,213,.9);
}


/* Botón descargar */
.btn-download {
  padding: 15px 45px;
  border-radius: 40px;
  background: linear-gradient(45deg, #e2b203, #362b02);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 40px rgba(255, 0, 170, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-download:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(255, 0, 170, 0.9);
}