.contato {
  height: max-content;
  width: 100%;
  padding-bottom: 2rem;
}

.contato>div .title {
  text-align: left;
  margin-top: 2rem;
}

.contato>div h2 {
  padding: 10px 0;
  font-weight: bold;
}

#form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#form label {
  display: flex;
  flex-direction: column;
  height: 8rem;
  font-weight: bold;
}

#form label input {
  border: none;
  outline: none;
  border-bottom: 2px solid black;
  padding: 1rem .5rem;
  font-size: 1.5rem;
  background-color: var(--white2);
}

#form label textarea {
  resize: none;
  border: 2px solid black;
  margin-top: 2rem;
  height: 210px;
  outline: none;
  padding: 1rem .5rem;
  font-size: 1.5rem;
  background-color: var(--white2);
}

#form label:nth-child(3) {
  height: 250px;
}

#form .btn {
  margin-top: 2rem;
  align-self: flex-end;
  font-weight: bold;
  text-transform: uppercase;
}

.contato .footer {
  display: none;
}

@media screen and (min-width:1100px) {
  .contato .gap-style {
    width: 35%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .contato {
    display: flex;
    height: 60rem;
    padding: 0;
    align-items: center;
    position: relative;
  }

  .contato>div {
    /* transform: translateX(100px); */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100px 100px 1fr;
    column-gap: 5rem;
    /* transform: translateX(-200px); */
  }

  .contato .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .contato .footer {
    display: inline-block;
    grid-column: 1;
    grid-row: 1/4;
    height: 100%;
    position: relative;
  }

  .contato .footer::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    position: absolute;
    right: -30px;
    top: -30px;
  }

  .contato .footer .footer-logo {
    align-self: flex-start;
    margin-top: 3rem;
  }

  .contato .footer div {
    justify-content: center;
    align-items: flex-start;
    padding: 0 3rem;
  }

  .contato .title,
  .contato h2 {
    grid-column: 2;
  }

  .contato #form {
    grid-column: 2;
  }

  .footer>div p {
    padding: 2rem 0;
    text-align: left;
  }
}