@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0f0f0f;
  color: white;
  overflow-x: hidden;
  position: relative;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero {
  text-align: center;
  padding: 8rem 2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero h1 {
  font-size: 4rem;
  color: #00ffff;
  text-shadow: 0 0 20px #0ff;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.precio {
  color: #ff00ff;
  font-size: 2rem;
}

.btn, .btn-grande {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #ff00c8, #00ffe5);
  color: black;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn:hover, .btn-grande:hover {
  transform: scale(1.1);
}

.benefits {
  padding: 5rem 2rem;
  text-align: center;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
  box-shadow: 0 0 15px #000;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #00ffe5;
}

.tool-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.cta-final {
  padding: 6rem 2rem;
  text-align: center;
  background: #000;
}

.btn-grande {
  font-size: 1.5rem;
}
