/* ========================================
   SEÇÃO DE CONTATO
   ======================================== */

/* Seção de Perguntas */
.section-question {
  background: linear-gradient(180deg, #faf8f6 0%, #f7f4f2 100%);
  text-align: center;
  padding: 34px 0 24px;
  height: 22rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-question h3 {
  font-family: inherit;
  font-size: 32px;
  margin-bottom: 10px;
}

/* Formulário de Contato */
.section-contact {
  position: relative;
  background: url("../assets/images/FaleConosco.png") center/cover no-repeat;
  padding: 46px 0 70px;
  color: #fff;
}

.section-contact h3 {
  font-family: inherit;
  font-size: 32px;
  margin-bottom: 10px;
}

.section-contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-inner {
  position: relative;
  text-align: center;
}

.contact-form {
  width: min(640px, 90%);
  margin: 18px auto 0;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-radius: 15px;
  padding: 12px 16px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(14, 63, 95, 0.15);
  transform: translateY(-2px);
}

.contact-form button {
  width: 140px;
  justify-self: end;
}
