.container-contato {
  margin: 4rem auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  /* background: #75bcf130; */
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  position: relative;
}

.content-onde-estamos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 0 0 calc((100% - 2rem)/2);
  border-radius: 10px;
  position: relative;
}

.content-onde-estamos__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.container-contato::before {
  content: "";
  background: url(/assets/image/logo/logo1.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  position: absolute;
  display: block;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  transform: translate(-50%, 0%);
}

.title-onde-estamos,
.title-fale-comigo {
  font-size: 2.8rem;
  font-weight: bold;
}

.informacoes-onde-estamos {
  line-height: 1.8;
  font-size: 1.5rem;
}

.subtitulo-onde-estamos {
  font-weight: 600;
  display: flex;
  gap: 5px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.descricao-onde-estamos {
  font-weight: 400;
}

/*  */

.content-fale-comigo {
  flex: 0 0 calc((100% - 2rem)/2);
  border-radius: 10px;
  z-index: 1;
}

.content-fale-comigo form {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 500;
  font-size: 1.6rem;
}

.input-content input,
.input-content textarea {
  padding: 10px;
  border-radius: 5px;
  border: solid 1px #ccc;
  outline: none;
  line-height: 1.4;
  resize: none;
}

.title-fale-comigo {
  text-align: center;
}

.enviar {
  border: solid 1px #ccc;
  background-color: var(--color-04);
  border-radius: 5px;
  padding: 1rem 4rem;
  width: max-content;
  color: #f0f0f0;
  cursor: pointer;
}

.lbl-codigo {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.como-chegar-contato {
  background: var(--color-04);
  display: flex;
  flex-direction: column;
}

.como-chegar-contato .localizacao {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
  max-width: var(--width-size);
  margin: auto;
}

.como-chegar-contato iframe {
  width: 100%;
  height: 40rem;
}

.como-chegar-contato .title-endereco {
  font-size: 3rem;
  font-weight: 100;
}

.como-chegar-contato .info-endereco {
  font-size: 1.4rem;
  font-weight: 100;
}


@media screen and (max-width: 786px) {
  .container-contato {
    flex-direction: column-reverse;
  }

  .container-contato::before {
    background-repeat: repeat;
  }
}

.ajs-header,
.ajs-content {
  font-size: 1.5rem;
}