/* RESET */
.section label {
  display: block;
  font-weight: 500;
  margin-bottom: 12px;
}

.section input[type=text],
.section input[type=email],
.section input[type=tel],
.section select {
  width: 100%;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  box-sizing: border-box;
}

.section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  color: #222;
}

/* LAYOUT DE TRÊS COLUNAS */
.grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-three {
    grid-template-columns: 1fr;
  }
}

/* GRUPO DE RADIO - RESPONSABILIDADE */
.radio-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.radio-group input[type="radio"] {
  margin-right: 6px;
  position: relative;
  top: -1px;
}

/* ESCONDER SEÇÕES OPCIONAIS */
.section-responsavel {
  display: none;
}

#wrapper_estado,
#wrapper_cidade,
#wrapper_estado_resp,
#wrapper_cidade_resp,
[name="aluno_estadocivil"],
[name="responsavel_estadocivil"] {
  transition: all 0.2s ease;
}