body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b1d3a; /* Noche estrellada */
  color: white;
  padding: 0;
}

.titulo {
  text-align: center;
  padding: 2rem;
  font-size: 2.5rem;
  color: #66b2ff; /* Azul para el encabezado */
}

.form-container {
  background: white;
  color: black;
  border-radius: 20px;
  max-width: 700px;
  margin: auto;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.subtitulo {
  text-align: center;
  font-size: 1.5rem;
  color: #0b1d3a;
}

.correo-box {
  background: #d0eaff;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
}

.correo-content {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.correo-content input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  background: #fff;
  border-radius: 8px;
}

.correo-content button {
  padding: 0.5rem 1rem;
  background: #0b1d3a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.redes {
  text-align: center;
  margin: 1rem 0;
}

.redes a {
  margin: 0 10px;
  color: #0b1d3a;
  text-decoration: none;
  font-weight: bold;
}

.envianos {
  margin-top: 2rem;
  font-size: 1.3rem;
  text-align: center;
  color: #0b1d3a;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}

.formulario-contacto textarea {
  resize: vertical;
  min-height: 120px;
}

.condiciones {
  font-size: 0.9rem;
  color: #333;
}

.condiciones a {
  color: #0b1d3a;
  text-decoration: underline;
}

.boton-enviar {
  margin-top: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.boton-enviar img {
  width: 160px;
}

.avatar-final {
  text-align: center;
  margin-top: 2rem;
}

.avatar-final img {
  width: 150px;
  border-radius: 50%;
}