/* =============================
   TalentMind AI – Form Styling
   Clean Responsive Professional UI
   ============================= */

.tma-form {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  max-width: 860px;
  margin: 2rem auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tma-form h2, .tma-form h3 {
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tma-form h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 0.25rem;
  margin-bottom: 1.5rem;
}

.tma-form h3 {
  font-size: 1.2rem;
  margin-top: 1.8rem;
}

.tma-question-group {
  margin-bottom: 2rem;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 1.5rem;
}

.tma-question {
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}

.tma-question label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #334155;
}

.tma-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding-left: 0.5rem;
}

.tma-options input[type="radio"] {
  accent-color: #3b82f6;
  width: 18px;
  height: 18px;
}

.tma-options label {
  margin-right: 0.5rem;
  font-size: 0.95rem;
}

.tma-submit {
  text-align: center;
  margin-top: 2rem;
}

.tma-submit button {
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tma-submit button:hover {
  background-color: #2563eb;
}

.tma-results {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.tma-results h4 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tma-results p {
  color: #475569;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .tma-form {
    padding: 1.5rem;
  }
  .tma-options {
    flex-direction: column;
    align-items: flex-start;
  }
  .tma-submit button {
    width: 100%;
  }
}
