/* Contact page */
.contact-hero {
  min-height: 505px;
  background: linear-gradient(90deg, rgba(11, 13, 14, .91) 0%, rgba(17, 19, 21, .78) 42%, rgba(67, 176, 42, .35) 100%), url("../images/desmontederocha.jpg") center center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.contact-hero-content {
  padding: 78px 0 96px;
}

.contact-hero h1 {
  max-width: 650px;
  color: #fff;
  font-family: var(--hm-font-title);
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}

.contact-hero h1 span {
  display: block;
  color: var(--hm-yellow);
}

.contact-hero p {
  max-width: 560px;
  margin-top: 24px;
  color: #fff;
  font-family: var(--hm-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.contact-trust {
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--hm-black) 0%, var(--hm-dark) 100%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  overflow: hidden;
}

.contact-trust article {
  min-height: 124px;
  padding: 30px 26px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.contact-trust article:last-child {
  border-right: 0;
}

.contact-trust i {
  color: var(--hm-green);
  font-size: 42px;
  line-height: 1;
}

.contact-trust h2 {
  color: #fff;
  font-family: var(--hm-font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-trust p {
  margin-top: 9px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.55;
}

.contact-main {
  padding-top: 68px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: .78fr 1.72fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 {
  max-width: 330px;
  color: #151719;
  font-family: var(--hm-font-title);
  font-size: clamp(32px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-info p {
  margin-top: 22px;
  color: var(--hm-muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-info ul,
.contact-specialist ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-top: 18px;
}

.contact-info li > i {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hm-black);
  color: var(--hm-green);
  font-size: 22px;
}

.contact-info strong {
  display: block;
  color: var(--hm-green);
  font-family: var(--hm-font-title);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-info span,
.contact-info a {
  display: block;
  margin-top: 6px;
  color: #2e3438;
  font-size: 13px;
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 245px;
  gap: 26px;
  padding: 28px;
  background: linear-gradient(135deg, var(--hm-black) 0%, var(--hm-dark) 100%);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.contact-form h2,
.contact-specialist h2 {
  color: #fff;
  font-family: var(--hm-font-title);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-form h2 {
  padding-bottom: 16px;
  position: relative;
}

.contact-form h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  background: var(--hm-green);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
  margin-top: 24px;
}

.contact-form label {
  display: block;
  margin: 18px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 9px;
  padding: 0 16px;
  border: 1px solid #dce2e5;
  border-radius: 4px;
  background: #fff;
  color: #202326;
  font-family: var(--hm-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form textarea {
  min-height: 162px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(67,176,42,.34);
  border-color: var(--hm-green);
}

.contact-consent {
  display: flex !important;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.82) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.contact-consent input {
  width: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--hm-green);
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
}

.contact-turnstile {
  min-height: 58px;
  margin-top: 18px;
  overflow: hidden;
}

.contact-turnstile > div {
  transform: scale(.84);
  transform-origin: left top;
}

.contact-turnstile:empty {
  display: none;
  min-height: 0;
  margin-top: 0;
}

@media (max-width: 390px) {
  .contact-turnstile > div {
    transform: scale(.78);
  }
}

.contact-specialist {
  padding: 28px 22px;
  border: 1px solid rgba(67,176,42,.72);
  border-radius: 6px;
  color: #fff;
}

.contact-specialist > i {
  color: var(--hm-green);
  font-size: 60px;
  line-height: 1;
}

.contact-specialist h2 {
  margin-top: 34px;
  font-size: 24px;
}

.contact-specialist li {
  margin-top: 17px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.45;
}

.contact-specialist li:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--hm-green);
  margin-right: 10px;
}

.contact-specialist .hm-btn {
  width: 100%;
  margin-top: 32px;
  padding: 0 14px;
  font-size: 12px;
}

.contact-process {
  background: linear-gradient(rgba(6, 8, 9, .94), rgba(6, 8, 9, .95)), url("../images/footer.jpg") center center / cover no-repeat;
  color: #fff;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 62px;
  align-items: center;
}

.contact-process .about-copy h2,
.contact-process .about-copy p {
  color: #fff;
}

.contact-process .about-copy p {
  color: rgba(255,255,255,.82);
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contact-steps article {
  position: relative;
  text-align: center;
}

.contact-steps article:not(:last-child):after {
  content: "";
  position: absolute;
  top: 38px;
  left: 78%;
  right: -52px;
  border-top: 1px dashed rgba(67,176,42,.62);
}

.contact-steps i {
  width: 78px;
  height: 78px;
  border: 2px solid var(--hm-green);
  border-radius: 50%;
  color: var(--hm-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
}

.contact-steps strong {
  display: block;
  margin-top: 21px;
  color: var(--hm-yellow);
  font-family: var(--hm-font-title);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.contact-steps h3 {
  margin-top: 12px;
  color: #fff;
  font-family: var(--hm-font-title);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-steps p {
  margin-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.58;
}

.contact-faq {
  background: #fff;
}

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

.contact-faq article {
  min-height: 126px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 18px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--hm-border);
  border-radius: 5px;
  box-shadow: 0 12px 32px rgba(12, 17, 22, .07);
}

.contact-faq i,
.contact-faq article > span {
  color: var(--hm-green);
}

.contact-faq i {
  font-size: 38px;
  line-height: 1;
}

.contact-faq h3 {
  color: #17191b;
  font-family: var(--hm-font-body);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
}

.contact-faq p {
  margin-top: 9px;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-faq article > span {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

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

  .contact-specialist {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0 22px;
    align-items: start;
  }

  .contact-specialist h2 {
    margin-top: 0;
  }

  .contact-specialist ul,
  .contact-specialist .hm-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .contact-main-grid,
  .contact-process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-trust-grid,
  .contact-steps,
  .contact-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-trust article:nth-child(2) {
    border-right: 0;
  }

  .contact-trust article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .contact-steps article:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-trust-grid,
  .contact-form-grid,
  .contact-steps,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 490px;
    background-position: 55% center;
  }

  .contact-hero-content {
    padding: 58px 0 84px;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

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

  .contact-trust {
    margin-top: -42px;
  }

  .contact-trust article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .contact-trust article:last-child {
    border-bottom: 0;
  }

  .contact-main {
    padding-top: 52px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-specialist {
    display: block;
  }

  .contact-specialist h2 {
    margin-top: 24px;
  }

  .contact-info li,
  .contact-faq article {
    grid-template-columns: 44px 1fr;
  }

  .contact-faq article > span {
    display: none;
  }
}
