/* PÁGINA CONTATO */
.contact-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

/* HERO */
.contact-hero {
  padding: 90px 0 36px;
  text-align: center;
}

.contact-badge {
  display: inline-flex;
  margin-bottom: 18px;
  color: #1d1d1f;
  font-size: 17px;
  font-weight: 400;
}

.contact-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: #1d1d1f;
}

.contact-hero p {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: 21px;
  line-height: 1.4;
  color: #6e6e73;
}

/* SEÇÃO */
.contact-section {
  padding: 12px 0 90px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* CARDS */
.contact-card {
  padding: 38px;
  border-radius: 32px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.06);
}

.contact-card h2 {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: #1d1d1f;
}

/* LISTA DE CONTATO */
.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 22px;
  background: #f5f5f7;
  color: #1d1d1f;
  text-decoration: none;
  transition: .2s ease;
}

.contact-list a:hover {
  background: #eef5ff;
  transform: translateY(-2px);
}

.contact-list i {
  font-size: 24px;
  color: #0071e3;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
}

.contact-list span {
  font-size: 15px;
  color: #6e6e73;
}

/* FORMULÁRIO */
.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  background: #f5f5f7;
  color: #1d1d1f;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: rgba(0,113,227,.4);
  box-shadow: 0 0 0 4px rgba(0,113,227,.08);
}

.contact-form button {
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: #0071e3;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.contact-form button:hover {
  background: #0077ed;
  transform: translateY(-1px);
}

/* MAPA */
.contact-map-card {
  margin-top: 28px;
}

.contact-map-card p {
  margin-bottom: 24px;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 24px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contact-hero {
    padding: 80px 0 32px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px;
  }
}
.hp-field {
  position: absolute;

  left: -9999px;

  opacity: 0;

  pointer-events: none;
}