body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #7b5cf3, #7b6ef3);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 95%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.option {
  flex: 1;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
}

.option.selected {
  border-color: #7b5cf3;
  background: #f2edff;
}

.option h3 {
  margin: 0;
  font-size: 1rem;
}

.option p {
  margin: 4px 0;
  font-size: 0.85rem;
  color: #555;
}

.option strong {
  color: #000;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  outline: none;
  font-size: 0.9rem;
}

input:focus, select:focus {
  border-color: #7b5cf3;
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.whatsapp span {
  background: #eee;
  padding: 10px;
  border-radius: 10px;
}

button[type="submit"] {
  background: #00b16a;
  color: white;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

button[type="submit"]:hover {
  background: #00995c;
}

.envio {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
}
