.contato-page,
.contato-page *,
.contato-page *::before,
.contato-page *::after {
  box-sizing: border-box;
}

.contato-page {
  padding: 60px 24px 100px;
  font-family: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.contato-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contato-info__title {
  font-size: 42px;
  font-weight: 700;
  color: #76777a;
  line-height: 1.1;
  margin: 0 0 28px;
}

.contato-info__subtitle {
  font-size: 16px;
  color: #808080;
  line-height: 1.6;
  margin: 0 0 16px;
}

.contato-info__text {
  font-size: 16px;
  color: #808080;
  line-height: 1.6;
  margin: 0 0 48px;
}

.contato-info__sac {
  font-size: 36px;
  font-weight: 500;
  color: #76777a;
  line-height: 1.2;
  margin: 0 0 20px;
}

.contato-info__phones {
  font-size: 16px;
  font-weight: 700;
  color: #808080;
  line-height: 2;
  margin: 0;
}

.contato-form-wrap {
  width: 100%;
}

.contato-form__privacy {
  font-size: 14px;
  color: #808080;
  margin: 16px 0 0;
}

.contato-form__privacy a {
  color: #808080;
  text-decoration: underline;
}

.hs-contato-form .hs-form-field {
  margin-bottom: 25px !important;
}

.hs-contato-form label {
  display: none !important;
}

.hs-contato-form .hs-input,
.hs-contato-form input[type="text"],
.hs-contato-form input[type="email"],
.hs-contato-form input[type="tel"],
.hs-contato-form textarea,
.hs-contato-form select {
  width: 100% !important;
  border: 2px solid #d0d0d0 !important;
  border-radius: 15px !important;
  font-size: 15px !important;
  color: #808080 !important;
  padding: 0 20px !important;
  height: 50px !important;
  font-weight: 300 !important;
  font-family: "Roboto", "Source Sans Pro", sans-serif !important;
  background: #fff !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.hs-contato-form textarea {
  height: 100px !important;
  border-radius: 4px !important;
  padding: 14px 20px !important;
  resize: vertical !important;
}

.hs-contato-form input:focus,
.hs-contato-form textarea:focus,
.hs-contato-form select:focus {
  border-color: #00a48d !important;
  outline: none !important;
}

.hs-contato-form .hs-button,
.hs-contato-form .hs-button.primary,
.hs-contato-form .hs-button.primary.large,
.hs-contato-form input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #00a48d !important;
  background-color: #00a48d !important;
  color: #fff !important;
  border: none !important;
  border-color: #00a48d !important;
  height: 50px !important;
  width: 165px !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  font-family: "Roboto", "Source Sans Pro", sans-serif !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  box-shadow: none !important;
  text-shadow: none !important;
  padding: 0 !important;
}

.hs-contato-form .hs-button:hover,
.hs-contato-form .hs-button.primary:hover,
.hs-contato-form input[type="submit"]:hover {
  background: #008f7a !important;
  background-color: #008f7a !important;
}

.hs-contato-form .hs-error-msgs {
  color: #e00 !important;
  font-size: 13px !important;
  margin-top: 4px !important;
  list-style: none !important;
  padding: 0 !important;
}

.hs-contato-form .legal-consent-container {
  font-size: 14px !important;
  color: #808080 !important;
  margin-top: 12px !important;
}

.hs-contato-form .legal-consent-container a {
  color: #808080 !important;
  text-decoration: underline !important;
}

.hs-contato-form ul,
.hs-contato-form li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .contato-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .contato-page {
    padding: 40px 16px 80px;
  }

  .contato-info__title {
    font-size: 32px;
  }

  .contato-info__sac {
    font-size: 28px;
  }
}