/*
 * NewEra — seção Vamos conversar
 * Direção: formulário editorial escuro, duas colunas no desktop e uma coluna no mobile.
 */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--navy) !important;
  color: #fff;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  z-index: -1;
  width: min(74vw, 850px);
  height: min(74vw, 850px);
  content: "";
  border: 1px solid rgba(87, 191, 71, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::before {
  top: -500px;
  left: -585px;
}

.contact-section::after {
  right: -650px;
  bottom: -640px;
  opacity: .45;
}

.contact-section .contact-circuit {
  display: none;
}

.newera-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .78fr);
  gap: clamp(68px, 10vw, 155px);
  align-items: start;
}

.newera-contact-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 46px;
  color: #c7c9c5;
  font-family: "Oxanium", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.newera-contact-index::before {
  width: 14px;
  height: 1px;
  content: "";
  background: #57bf47;
}

.newera-contact-intro h2 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .99;
}

.newera-contact-intro h2 span {
  display: block;
  color: #57bf47;
}

.newera-contact-lead {
  max-width: 530px;
  margin: 38px 0 0;
  color: #b7c7d8;
  font-size: 17px;
  line-height: 1.72;
}

.newera-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 68px;
  margin-top: 45px;
}

.newera-contact-detail {
  display: grid;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  transition: color 160ms cubic-bezier(.23, 1, .32, 1);
}

.newera-contact-detail:hover {
  color: #57bf47;
}

.newera-contact-detail span,
.newera-contact-form label {
  color: #94abc0;
  font-family: "Network", "Oxanium", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.newera-contact-detail strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.newera-contact-form-panel {
  padding-top: 5px;
}

.newera-contact-form {
  display: grid;
  gap: 28px;
}

.newera-form-group {
  display: grid;
  gap: 13px;
}

.newera-contact-form input,
.newera-contact-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(185, 207, 229, .38);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font: 400 16px/1.4 "Manrope", Arial, sans-serif;
  transition: border-color 160ms cubic-bezier(.23, 1, .32, 1), color 160ms cubic-bezier(.23, 1, .32, 1);
  appearance: none;
  -webkit-appearance: none;
}

.newera-contact-form input::placeholder {
  color: #7590a8;
  opacity: 1;
}

.newera-contact-form input:focus,
.newera-contact-form select:focus {
  border-color: #57bf47;
}

.newera-select-group {
  position: relative;
}

.newera-select-group::after {
  position: absolute;
  right: 2px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 1px solid #b7c7d8;
  border-bottom: 1px solid #b7c7d8;
  pointer-events: none;
  transform: rotate(45deg);
}

.newera-contact-form select {
  cursor: pointer;
}

.newera-contact-form select:invalid {
  color: #7590a8;
}

.newera-contact-form option {
  background: #081b35;
  color: #fff;
}

.newera-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: 100%;
  min-height: 53px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  cursor: pointer;
  font-family: "Network", "Oxanium", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 160ms cubic-bezier(.23, 1, .32, 1), transform 160ms cubic-bezier(.23, 1, .32, 1), box-shadow 160ms cubic-bezier(.23, 1, .32, 1);
}

.newera-contact-submit:hover {
  background: #74d55f;
  box-shadow: 0 12px 30px rgba(87, 191, 71, .25);
  transform: translateY(-2px);
}

.newera-contact-submit:active {
  transform: scale(.98);
}

.newera-contact-submit svg {
  width: 19px;
  height: 19px;
}

.newera-form-note {
  margin: -10px 0 0;
  color: #7890a7;
  font-size: 10px;
  line-height: 1.55;
}

.newera-floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 14px 35px rgba(5, 24, 18, .3);
  color: #fff;
  font-family: "Network", "Oxanium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .055em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms cubic-bezier(.23, 1, .32, 1), box-shadow 160ms cubic-bezier(.23, 1, .32, 1), background 160ms cubic-bezier(.23, 1, .32, 1);
}

.newera-floating-whatsapp strong {
  display: block;
  font-weight: 800;
}

.newera-floating-whatsapp:hover {
  background: #74d55f;
  box-shadow: 0 18px 40px rgba(5, 24, 18, .42);
  transform: translateY(-3px);
}

.newera-floating-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
}

.newera-floating-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

@media (max-width: 820px) {
  .contact-section {
    padding: 84px 0 100px;
  }

  .contact-section::before {
    width: 680px;
    height: 680px;
    top: -395px;
    left: -490px;
  }

  .contact-section::after {
    display: none;
  }

  .newera-contact-inner {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .newera-contact-index {
    margin-bottom: 42px;
  }

  .newera-contact-intro h2 {
    max-width: 560px;
    font-size: clamp(52px, 14vw, 82px);
  }

  .newera-contact-lead {
    max-width: 590px;
    margin-top: 34px;
    font-size: 16px;
  }

  .newera-contact-details {
    display: grid;
    gap: 29px;
    margin-top: 48px;
  }

  .newera-contact-form {
    gap: 30px;
  }

  .newera-contact-form-panel {
    max-width: 720px;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding-top: 72px;
  }

  .newera-contact-inner {
    width: min(100% - 48px, 1180px);
    gap: 70px;
  }

  .newera-contact-index {
    margin-bottom: 38px;
    font-size: 10px;
  }

  .newera-contact-intro h2 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .newera-contact-lead {
    margin-top: 31px;
    font-size: 15px;
    line-height: 1.7;
  }

  .newera-contact-detail strong {
    font-size: 15px;
  }

  .newera-contact-form input,
  .newera-contact-form select {
    font-size: 15px;
  }

  .newera-floating-whatsapp {
    right: 14px;
    bottom: 14px;
    gap: 8px;
    padding: 7px 12px 7px 7px;
    font-size: 8.5px;
  }

  .newera-floating-icon {
    width: 34px;
    height: 34px;
  }

  .newera-floating-icon svg {
    width: 19px;
    height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .newera-contact-submit,
  .newera-floating-whatsapp {
    transition: none;
  }
}