body {
  margin: 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 200px;
  margin-bottom: 30px;
}

.boton {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #3FD1A8;         /* color normal */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease; /* animación suave */
}

/* 🔹 Efecto al pasar el puntero */
.boton:hover {
  background: #3DEBBA;         /* color cuando pasa el mouse */