/* ─────────────────────────────────────────────
   CONTACT — Seção de contato, formulário,
             responsivo
───────────────────────────────────────────── */

/* ─── SECTION ─── */
#contato {
  background: url("../../images/bg-section.jpg") center center / cover no-repeat;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-shell {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* ─── HEADER ─── */
.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-kicker {
  color: #418fd8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-title {
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  color: #2c538b;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 16px;
}

.contact-desc {
  font-size: 16px;
  color: rgba(11, 36, 71, 0.6);
  line-height: 1.72;
  max-width: 440px;
  margin: 0 auto;
}

/* ─── FORM LAYOUT ─── */
.form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field       { margin-bottom: 14px; }
.form-field-last  { margin-bottom: 24px; }

.form-field-select { position: relative; }

.select-arrow {
  position: absolute;
  right: 18px;
  top: 38px;
  pointer-events: none;
}

/* ─── FORM ELEMENTS ─── */
.form-label {
  display: block;
  color: #0B2447;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 87, 168, 0.18);
  border-radius: 14px;
  padding: 14px 18px;
  color: #0B2447;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-input::placeholder { color: rgba(11, 36, 71, 0.38); }
.form-input:focus {
  border-color: #0057A8;
  background: rgba(255, 255, 255, 0.85);
}

.form-input-select {
  appearance: none;
  cursor: pointer;
}

.form-textarea { resize: none; }

/* ─── SUBMIT ─── */
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #008baa;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 27px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-submit:hover {
  background: #007892;
  transform: translateY(-2px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .form-cols { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  #contato       { padding: 72px 0; }
  .contact-shell { padding: 0 18px; }
  .contact-title { font-size: 34px; }
}
