/* ======================================================
   FORMULÁRIOS – INSCRIÇÕES CURSOS (MÓDULO 1 e 2)
   Visual idêntico ao formulário de Interessados
====================================================== */

.nm-form-inscricao {
  max-width: 900px;
  margin: 0 auto;
}

/* Inputs, selects e textarea */
.nm-form-inscricao input[type="text"],
.nm-form-inscricao input[type="email"],
.nm-form-inscricao input[type="tel"],
.nm-form-inscricao input[type="date"],
.nm-form-inscricao input[type="file"],
.nm-form-inscricao select,
.nm-form-inscricao textarea {
  width: 100%;
  height: 56px;
  padding: 14px 18px;
  border: 1px solid #c9ced6;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Textarea maior */
.nm-form-inscricao textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Upload */
.nm-form-inscricao input[type="file"] {
  height: auto;
  padding: 10px;
}

/* Placeholder */
.nm-form-inscricao ::placeholder {
  color: #9aa3ad;
  font-size: 15px;
}

/* Foco */
.nm-form-inscricao input:focus,
.nm-form-inscricao select:focus,
.nm-form-inscricao textarea:focus {
  border-color: #7f86c9;
  box-shadow: 0 0 0 2px rgba(127, 134, 201, 0.15);
  outline: none;
}

/* Labels */
.nm-form-inscricao label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

/* Espaçamento entre campos */
.nm-form-inscricao > *,
.nm-form-inscricao .nm-form-group {
  margin-bottom: 18px;
}

/* Texto auxiliar */
.nm-help-text {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* Botão enviar */
.nm-form-inscricao button[type="submit"] {
  width: 100%;
  height: 60px;
  background: #7f86c9;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.nm-form-inscricao button[type="submit"]:hover {
  background: #6d74b8;
}

.nm-form-inscricao button[type="submit"]:active {
  transform: scale(0.98);
}

/* Mensagens */
.nm-error {
  color: #dc2626;
  font-size: 14px;
}

.nm-success {
  color: #16a34a;
  font-size: 15px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .nm-form-inscricao {
    padding: 0 10px;
  }
}
