/* Suporte — complementos ao signup.css (reaproveita bg, brand e campos .su-*). */

/* O atributo `hidden` num .su-field não funcionava sozinho: .su-field tem
   display:flex (mesma especificidade que [hidden]) e vence por vir depois. Esta
   regra (classe + atributo) faz o campo com `hidden` realmente sumir — sem ela,
   o "Qual o assunto?" ficava visível mesmo sem selecionar "Outro". */
.su-field[hidden] { display: none; }

.sp-card { width: min(560px, 100%); }

/* Linhas de 2 colunas (nome/sobrenome, nascimento/email) */
.sp-row { display: flex; gap: 1rem; }
.sp-row .su-field { flex: 1 1 0; min-width: 0; }
@media (max-width: 560px) {
  .sp-row { flex-direction: column; gap: 0; }
}

/* Textarea da mensagem (reusa .su-input + ajustes) */
.sp-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-family: "Inter", system-ui, sans-serif;
}
.sp-counter {
  display: block;
  margin-top: 0.3rem;
  text-align: right;
  font-size: 0.74rem;
  color: #8a93ab;
  font-family: "JetBrains Mono", monospace;
}

/* Honeypot anti-spam: invisível para humanos */
.sp-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Tela de sucesso */
.sp-success { text-align: center; }
.sp-success-mark {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffb05a;
  text-shadow: 0 0 22px rgba(255, 176, 90, 0.5);
}
