/* HEADER - Tipografia EMERJ */
.header-emerj h1,
.header-emerj h2,
.header-emerj h3 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  color: #0e2f45;
  font-size: 2.5rem; /* tamanho padrão desktop */
}

.header-emerj p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem; /* tamanho padrão desktop */
  color: #555;
}

/* Ajustes para mobile */
@media (max-width: 767.98px) {
  .header-emerj h1 {
    font-size: 1.8rem; /* menor para mobile */
  }

  .header-emerj h2 {
    font-size: 1.5rem;
  }

  .header-emerj h3 {
    font-size: 1.2rem;
  }

  .header-emerj p {
    font-size: 0.95rem; /* texto do parágrafo menor para mobile */
  }
}

/* FORMULÁRIO */
/* Tipografia e cores EMERJ */
.formPesquisaExAluno {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 900px; /* Limite de largura */
  margin: 0 auto;
  padding: 2rem 1rem;
}

.formPesquisaExAluno label {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem; /* maior para títulos e labels */
  color: #0e2f45;
}

.formPesquisaExAluno .text-dourado {
  color: #c4a26a;
}

.formPesquisaExAluno input,
.formPesquisaExAluno textarea {
  font-size: 1rem; /* maior para campos */
}

.formPesquisaExAluno button {
  font-size: 1rem;
}

/* Harmonização visual com header */
.formPesquisaExAluno .form-section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0e2f45;
}

.formPesquisaExAluno .form-help {
  color: #c4a26a;
  font-weight: 500;
}

/* Grid checkboxes */
.formPesquisaExAluno .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .formPesquisaExAluno .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Botões */
.formPesquisaExAluno .btn-submit {
  background-color: #0e2f45;
  color: #c4a26a;
  border: none;
}

.formPesquisaExAluno .btn-submit:hover {
  background-color: #0b2535;
  color: #ffd27f;
}
