body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: linear-gradient(to bottom right, #cce7ff, #e0f7fa, #d1ffd6);
  color: #333;
}

.nube {
  margin: 40px auto;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 30px 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nube h1 {
  font-size: 2.5em;
  color: #6A5ACD;
  margin: 0;
}

.nube h2 {
  font-size: 2em;
  color: #4CAF50;
  margin: 10px 0 0;
}

.profesiones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
  max-width: 800px;
}

.profesiones div {
  padding: 15px 25px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.profesiones div:hover {
  transform: scale(1.05);
}

.abogado { background: #ffb3ba; }
.psicologo { background: #ffdfba; }
.arquitecto { background: #ffffba; }
.profesor { background: #baffc9; }
.ingeniero { background: #bae1ff; }
.psiquiatra { background: #e3baff; }
.medico  { background: #ddf74a; }
.otros { background: #dcdcdc; }

.boton-iniciar {
  margin: 40px auto;
  padding: 15px 40px;
  font-size: 1.2em;
  background: #6A5ACD;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.boton-iniciar:hover {
  background: #4CAF50;
}

.crowdfunding {
  margin: 50px auto;
  padding: 20px;
}

.crowdfunding h3 {
  font-size: 1.8em;
  color: #333;
}

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

.categorias div {
  background: #fff;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
}

.categorias div:hover {
  transform: scale(1.05);
}

footer {
  margin: 50px auto 20px;
  font-size: 1em;
}

footer a {
  color: #6A5ACD;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}