.contact-hero-image {
  background-image: url('../img/contato-hero-img.png');
  background-position: center 48%;
}

.contact-hero-content {
  padding-top: 82px;
}

.contact-hero h1 {
  margin-bottom: 26px;
}

.contact-hero p {
  max-width: 440px;
}

.contact-options {
  padding-top: 24px;
  padding-bottom: 34px;
}

.section-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.section-title h2 {
  margin: 0;
  font-size: 28px;
  white-space: nowrap;
}

.section-title > span {
  width: 90px;
  height: 2px;
  background: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 150px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 251, 244, .85);
  border: 1px solid rgba(154, 101, 62, .12);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 88px;
  height: 88px;
  border: 1px solid #dea254;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-circle img {
  width: 46px;
  height: 46px;
}

.contact-card h3 {
  margin-bottom: 4px;
  font-size: 21px;
}

.contact-card p {
  margin-bottom: 10px;
  font-size: 12.5px;
  line-height: 1.3;
}

.contact-card a {
  color: #ce600a;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 950px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .contact-hero-image {
    background-position: 62% center;
  }

  .contact-hero-content {
    padding-top: 355px;
  }

  .contact-hero h1 {
    margin-bottom: 18px;
  }

  .contact-options {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .section-title {
    gap: 12px;
  }

  .section-title h2 {
    font-size: 23px;
  }

  .section-title > span {
    width: 35px;
  }

  .contact-card {
    padding: 17px;
  }

  .icon-circle {
    width: 72px;
    height: 72px;
  }

  .icon-circle img {
    width: 39px;
    height: 39px;
  }
}

@media (max-width: 420px) {
  .contact-card {
    align-items: flex-start;
    gap: 14px;
  }

  .icon-circle {
    width: 62px;
    height: 62px;
  }

  .icon-circle img {
    width: 34px;
    height: 34px;
  }
}
