.contato-map {
  width: 100%;
  min-height: 400px;
}

.contato .form-container {
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

.contato .form-container h2 {
  color: #141515;
  text-align: center;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.contato .form-container p {
  color: #585858;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin: 16px 0 40px 0;
}


.contato .form-label {
  color: #969696;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.contato .form-control,
.contato .form-select {
  display: flex;
  padding: 14px;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid #DEDEDE;
  background: #FFF;
}

.contato .form-control::placeholder,
.contato .form-select {
  color: rgba(57, 60, 60, 0.45);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.contato .warning {
  color: #888;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

.contato .btn {
  display: flex;
  padding: 11px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: var(--primary-color);
  color: #FAFAFA;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  width: fit-content;
  max-width: fit-content;
}

.contato img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 992px) {
.contato img {
  position: absolute;
  bottom: 0;
 right: -108px;
    z-index: -1;
}
}

@media screen and (min-width: 1400px) {
  .contato .form-container h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .contato .form-container p {
    font-size: 16px;
    line-height: 22.4px;
  }

  .contato .form-label {
    font-size: 16px;
  }

  .contato .form-control,
  .contato .form-select {
    padding: 16px;
  }

  .contato .warning {

    font-size: 16px;
    line-height: 22.4px;
  }

  .contato .btn {

    font-size: 18px;
  }
}