body {
  font-family: Arial, sans-serif;
  background: #D8D8D8;
  margin: 0;
  padding: 20px;
}

form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.step {
  display: none;
}

.step.active {
  display: block;
}

/* Indicador de etapas (1, 2, 3, 4) */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-indicator div {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-indicator div.active {
  background: #007bff;
}

/* Inputs e selects */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Botões */
button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 10px;
}

button:hover {
  background: #0056b3;
}

/* Estilo para os grupos de opções */
label {
  display: block;
  margin-bottom: 10px;
}

/* Espaço extra para grupos específicos */
#cores {
  margin-top: 10px;
  margin-bottom: 20px;
}
