body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

/* HEXÁGONOS */
.hexagon {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.2;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  z-index: 0;
}
.bg-purple { background: #a855f7; }
.bg-blue { background: #3b82f6; }
.bg-green { background: #22c55e; }
.bg-orange { background: #f97316; }

/* HERO */
.hero {
  text-align: center;
  padding: 140px 20px 100px;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}
.hero p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.cta {
  background: linear-gradient(90deg, #7e22ce, #2563eb);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* SECCIONES */
.section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section.light {
  background: #f9fafb;
}
.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

/* CÓMO FUNCIONA */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}
.step {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.arrow {
  align-self: center;
  font-size: 1.5rem;
  color: #888;
}
.desc {
  color: #555;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}
.feature {
  border-radius: 16px;
  padding: 30px;
  color: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feature.green { background: #dcfce7; }
.feature.blue { background: #dbeafe; }
.feature.orange { background: #ffedd5; }

/* FUNCIONALIDADES */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: auto;
}
.grid div {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-weight: 600;
}

/* FORMULARIO */
.form {
  max-width: 450px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}
.form input:focus {
  outline: none;
  border-color: #7e22ce;
  box-shadow: 0 0 0 2px rgba(126, 34, 206, 0.2);
}

/* FOOTER */
footer {
  padding: 40px 20px;
  text-align: center;
  color: #777;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}
