/* ============================================================
   Contato page — extracted from /contato/
   ============================================================ */

.alfa-contact {
  background: var(--alfa-bg);
  padding: 96px 0;
}

.alfa-contact-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.alfa-contact-col {
  padding: 0 30px;
}

.alfa-contact-form-col {
  flex: 0 0 60%;
  max-width: 60%;
  padding-top: 30px;
  padding-bottom: 15px;
}

.alfa-contact-info {
  flex: 0 0 40%;
  max-width: 40%;
  padding-top: 44px;
  padding-bottom: 44px;
}

/* ---- Form ---- */
.alfa-contact-form {
  margin: 0;
  overflow: hidden;
}

.alfa-field-group {
  margin-bottom: 15px;
  padding: 0 5px;
}

.alfa-field-label {
  display: block;
  font-family: var(--font-figtree);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--alfa-gray);
  margin: 0;
}

.alfa-field-input {
  display: block;
  width: 100%;
  height: 47px;
  background: #fff;
  border: 1px solid #E0E0E1;
  border-radius: 5px;
  padding: 6px 16px;
  font-family: var(--font-figtree);
  font-size: 18px;
  line-height: 24px;
  color: #001631;
  box-sizing: border-box;
}

textarea.alfa-field-input {
  height: 115px;
  resize: vertical;
}

.alfa-field-submit {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.alfa-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--alfa-blue);
  border: 2px solid var(--alfa-blue);
  border-radius: 5px;
  font-family: var(--font-figtree);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  padding: 0 31.2031px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.alfa-btn-outline:hover {
  background: var(--alfa-blue);
  color: #fff;
}

/* ---- Info column ---- */
.alfa-contact-heading {
  font-family: var(--font-figtree);
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  color: var(--alfa-blue);
  margin: 0 0 20px;
}

.alfa-contact-heading + .alfa-social {
  margin-top: 0;
}

.alfa-contact-info .alfa-social {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.alfa-contact-heading--end {
  margin-top: 16px;
}

.alfa-contact-address {
  font-family: var(--font-figtree);
  font-size: 18px;
  line-height: 27px;
  color: var(--alfa-gray);
  margin: 0 0 20px;
  padding-top: 14px;
}

.alfa-contact-phones {
  list-style: none;
  margin: 0;
  padding: 0;
}

.alfa-contact-phones li {
  display: flex;
  align-items: center;
}

.alfa-contact-phones li + li {
  margin-top: 7.5px;
}

.alfa-contact-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 28px;
  color: var(--alfa-lightblue);
  font-size: 28px;
}

.alfa-contact-phone-text {
  font-family: var(--font-figtree);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #54595F;
}

/* ---- Map ---- */
.alfa-map {
  background: #1F60A0;
  line-height: 0;
}

.alfa-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
  .alfa-contact {
    padding: 48px 0;
  }

  .alfa-contact-row {
    display: block;
    padding: 0 16px;
  }

  .alfa-contact-form-col,
  .alfa-contact-info {
    flex: none;
    max-width: none;
  }

  .alfa-contact-form-col {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  .alfa-contact-info {
    padding: 30px 0;
  }

  .alfa-social--center-sm {
    justify-content: center;
    width: 100%;
  }

  .alfa-btn-outline {
    padding: 0 14.8906px;
  }

  .alfa-map iframe {
    height: 229px;
  }
}