/* Formulário de contato */
.contact-section {
  align-items: start;
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-copy {
  padding-top: 12px;
}
.contact-copy > p:not(.eyebrow) {
  color: #daf3ff;
  font-size: 14px;
  line-height: 1.75;
  max-width: 500px;
  margin: 24px 0;
}
.contact-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 13px;
}
.contact-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #eaf8ff;
  font-size: 12px;
}
.contact-copy li > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}
.contact-whatsapp {
  width: min(330px, 100%);
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(4, 27, 79, 0.2);
  transition: 0.25s;
}
.contact-whatsapp:hover {
  background: rgba(4, 27, 79, 0.34);
  transform: translateY(-2px);
}
.contact-whatsapp > span {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #fff;
  color: #08a668;
  display: grid;
  place-items: center;
  font-size: 21px;
}
.contact-whatsapp > div {
  flex: 1;
}
.contact-whatsapp small,
.contact-whatsapp strong {
  display: block;
}
.contact-whatsapp small {
  font-size: 9px;
  color: #d5f2ff;
  margin-bottom: 4px;
}
.contact-whatsapp strong {
  font-size: 12px;
}
.contact-whatsapp > b {
  font-size: 15px;
}
.contact-form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: clamp(25px, 3vw, 38px);
  box-shadow: 0 24px 65px rgba(4, 30, 83, 0.2);
}
.form-head > span {
  font-size: 9px;
  letter-spacing: 0.17em;
  color: var(--cyan);
  font-weight: 800;
}
.form-head h3 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 10px 0 7px;
}
.contact-form-card .form-head p {
  color: #718097;
  font-size: 12px;
  margin: 0 0 25px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  position: relative;
}
.form-field-full {
  grid-column: 1/-1;
}
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #34445d;
  margin-bottom: 8px;
}
.form-field label b {
  color: #e24c4c;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9e4ec;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s;
}
.form-field input,
.form-field select {
  height: 45px;
}
.form-field textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.55;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #d94d4d;
}
.form-field > small {
  display: block;
  text-align: right;
  color: #9aa7b8;
  font-size: 8px;
  margin-top: 5px;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0 17px;
  color: #69788e;
  font-size: 9px;
  line-height: 1.55;
}
.privacy-check input {
  margin: 2px 0 0;
  accent-color: var(--cyan);
}
.privacy-check a {
  color: #087eb3;
  font-weight: 700;
  text-decoration: underline;
}
.form-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}
.form-submit:hover {
  background: #0a235e;
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.form-submit b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
}
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.5;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: #eaf9f1;
  color: #18794e;
  border: 1px solid #bce8d0;
}
.form-status.error {
  background: #fff0f0;
  color: #a73737;
  border: 1px solid #f1c3c3;
}
.form-noscript {
  color: #a73737;
  font-size: 10px;
}
.contact-form-card .form-submit span {
  width: auto;
  height: auto;
  background: none;
  display: inline;
  color: inherit;
}
@media (max-width: 980px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact-form-card {
    max-width: 720px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 52px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field-full {
    grid-column: auto;
  }
  .contact-form-card {
    padding: 25px 19px;
  }
  .form-head h3 {
    font-size: 22px;
  }
}
