
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:#f1f1f1;
  color: #1E1E26;
   margin: 0;
  padding: 0;
  width: 100%;
}

  h1 {
      color: #1E1E26;
      font-size: 32px;
      margin-bottom: 10px;
    }

    h2 {
      color: #1E1E26;
      font-size: 20px;
      margin-top: 35px;
    }


/* CONTAINER */
.container {
  max-width: 520px;
  margin: 60px auto;
  padding: 0 20px;
}

h1 {
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}

.subtitle {
  text-align: center;
  color: #1E1E26;
  font-size: 14px;
  margin-bottom: 30px;
}

/* FORM */
.form {
  background: rgba(255,255,255,0.06);
  padding: 28px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.field {
  margin-bottom: 16px;
}

label {
  font-size: 13px;
  color: #1E1E26;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #1E1E26;

  border-radius: 10px;
  border: 1.5px solid rgba(124, 58, 237, 0.5);

  background: #fff;
  outline: none;

  box-sizing: border-box;
  appearance: none; /* 🔑 MUITO importante pro select */
}

/* Altura padrão (Nome, Email, Assunto) */
input,
select {
  height: 46px;
}

/* Textarea (Mensagem) */
textarea {
  min-height: 120px;
  resize: none;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

/* Foco */
input:focus,
select:focus,
textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.status.success {
  color: #7B2CFF !important;
}

.status.error {
  color: #a72727 !important;
}

textarea {
  resize: none;
}

/* BOTÃO */
.btn {
  margin-top: 30px;
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  width: 210px;
  background:#7b2cff;
  color: #fff;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
  display: block;
  margin: 20px auto;
}

.btn:hover {
  opacity: 0.9;
}

/* STATUS */
.status {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
}

.footer {
  max-width: 900px;
  margin: 40px auto 30px;
  text-align: center;
  opacity: .6;
  font-size: 13px;
  color: #1E1E26; /* 👈 resolve */
  
}

.footer-links a {
  color: #1E1E26;
  text-decoration: none;
}


.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #9e6bff;
}

/* ===============================
   BOTÃO VOLTAR
================================ */
.btn-voltar {
  position:relative;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-voltar img {
  width: 30px;
}

.btn-voltar:hover {
  transform: scale(1.08);
}
