.bg-wave {
  height: 106px;
  background-image: url("../assets/images/banner-nexis-calibracao.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-contact-title {
  display: flex;
  justify-content: center;
  margin: 52px 0px;
}

.wrapper-contact-title h1 p {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  font-weight: 700;
  font-family: GothamBold, sans-serif;
  color: #000;
}

.wrapper-contact-title h1 p del {
  padding: 16px 3px;
  color: #fff;
  background-color: #0975bb;
  text-decoration: none;
}

.primary-button {
  background-color: #0a76bc;
}

/* Section Contact */

.contact {
  display: flex;
  justify-content: space-around;
  align-items: start;
  margin-top: 36px;
  flex-wrap: wrap;
}

.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.contact__form-wrapper h1 {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  font-weight: 700;
  font-family: GothamBold, sans-serif;
  color: #000;
}

.contact__form-wrapper h1 span {
  padding: 16px 3px;
  color: #fff;
  background-color: #0975bb;
}

.contact__form-wrapper__form {
  max-width: 515px;
  color: #fff;
}

.error-message {
  display: none;
  max-width: 350px;
  padding: 0 0 12px 0;
  font-size: 1.4rem;
  color: #333;
  font-weight: normal;
  font-family: 'Monstserrat', sans-serif; 
}

.--active-error-message {
  display: block;
}

.contact__form-wrapper__form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
}

.contact__form-wrapper__form__input-wrapper input {
  width: 515px;
  padding: 12px 20px;

  font-size: 1.6rem;
  font-family: 'Monstserrat', sans-serif;
  color: #000;
  border: 1px solid #000;
}

.input-alert {
  height: 0;
  margin: -16px 0px 6px 0px;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  font-size: 1.4rem;
  color: #000;
  font-weight: normal;
  font-family: 'Monstserrat', sans-serif; 
  transition: all .4s;
}

.--alert-active {
  height: 20px;
  margin: 0 0 0 0;
  visibility: visible;
  opacity: 1;
}

.contact__form-wrapper__form__input-wrapper textarea {
  height: 110px;
  font-size: 1.6rem;
  font-family: 'Monstserrat', sans-serif;
  border: 1px solid #000;
  color: #000;
  padding: 12px 20px;
  resize: none;
}

.contact__form-wrapper__form button {
  position: relative;
  margin: 24px auto;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: all .3s;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section Contact - Address */

.contact__address {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact__address h3 {
  font-size: 2.2rem;
  font-family: GothamBold, sans-serif;
  font-weight: 500;
  color: #000;
}

.contact__address h3 span {
  font-weight: 800;
  color: #1b88cc;
}

.contact__address p {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 16px;
  font-size: 1.6rem;
  font-family: GothamBook, sans-serif;
  font-weight: 500;
  color: #000;
}

.contact__address p i {
  font-size: 24px;
}

@media (max-width: 935px) {
  
  .contact {
    flex-wrap: nowrap;
    padding: 0px 36px;
    gap: 36px; 
  }
  
  .contact__address {
    gap: 36px;
  }

  .contact__form-wrapper__form__input-wrapper input {
    width: 100%;
    min-width: 280px;
  }
}

@media (max-width: 762px) {
  .contact {
    flex-wrap: wrap;
  }
}