* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0a0f1c;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.navbar a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

/* BOTONES */
.btn-primary {
  background: linear-gradient(45deg, #00c3ff, #a100ff);
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #555;
  padding: 10px 20px;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  font-size: 60px;
}

.hero h2 {
  color: #00c3ff;
  margin: 10px 0;
}

.hero p {
  margin: 20px 0;
  color: #aaa;
}

.hero-buttons {
  margin: 20px 0;
}

.hero-buttons button {
  margin-right: 10px;
}

.benefits span {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: #ccc;
}

.hero-img img {
  width: 300px;
}

/* FEATURES */
.features {
  text-align: center;
  padding: 60px 10%;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #11182a;
  padding: 20px;
  border-radius: 10px;
}

/* RESULTS */
.results {
  text-align: center;
  padding: 60px 10%;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px;
}


/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* OCULTAR BOTON EN MOBILE */
.desktop-only {
  display: block;
}

/* NAV */
nav {
  display: flex;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0a0f1c;
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    display: block;
    font-size: 18px;
  }

  .desktop-only {
    display: none;
  }

  /* HERO STACK */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-img img {
    width: 220px;
    margin-top: 20px;
  }

  /* BOTONES GRANDES */
  .hero-buttons button {
    width: 100%;
    margin: 10px 0;
  }

  /* BENEFICIOS */
  .benefits span {
    display: block;
    margin: 5px 0;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
  }

  /* STATS */
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  /* CTA */
  .cta {
    padding: 40px 20px;
  }
}

/* VIDEO */
.video-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.video-container video {
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
}

/* DEMO */
.demo {
  text-align: center;
  padding: 60px 10%;
}
