.contato-content {
  display: flex;
  justify-content: space-between;
  min-height: 555px;
  position: relative;
}

.info-contato {
  display: flex;
  min-height: 555px;
  max-width: 441px;
  background: linear-gradient(to right, #515070 0%, #6B69B0 100%);
}

.info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 50px;
}

.text-contato {
  font-size: 20px;
}

.endereco-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 55%;
}

.endereco-body {
  display: flex;
}

.endereco-body > p {
  margin-left: 15px;
}

.endereco-content:last-child {
  margin-bottom: 100px;
}

.endereco-img {
  min-width: 34px;
  align-content: center;
}


.form {
  width: 100%;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header > img {
  padding-right: 20px;
}

.text-mensagem {
  font-size: 20px;
}

.form-body {    
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 60%;
}

.input-content {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.input {
  border: none;
  border-bottom: 1px solid #D7D7D7;
  padding: 5px 0;
}

.input:focus {
  outline: none;
}

.textarea {
  resize: none;
}
.radio-assunto {
  display: flex;
}

.radio-assunto-item {
  display: flex;
  align-items: center;
}

.radio-assunto-item:last-child {
  margin-left: 15px;
}

.radio-assunto-item > input {
  margin: 0;
  margin-right: 5px;
}

.input-textarea {
  width: 100%;
}

.form-footer {
  display: flex;
  justify-content: space-between;
}

.checkbox-politica-privacidade {
  display: flex;
  align-items: center;
}

.checkbox-politica-privacidade > label {
  margin-left: 5px;
}

@media (max-width: 768px) {
  .banner-image-container {
    height: 456px;
  }

  .img-contato {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
  }

  .title-contato {
    font-size: 48px;
  }

  .title-input {
    font-size: 14px;
  }

  .contato-content {
    flex-direction: column;
  }
  
  .info-contato {
    max-width: initial;
  }

  .form {
    padding: 0;
  }

  .form-header {
    height: 100px;
  }
  
  .form-body {
    flex-direction: column;
    align-items: initial;
    flex-wrap: initial;
  }

  .input-content {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: center;
    height: 150px;
    justify-content: space-evenly;
  }

  .radio-assunto {
    border: none;
  }
}