.contato-map {
  width: 100%;
  min-height: 400px;
}
.contato-03 {
  width: 100%;
  max-width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
}

.contato-03__map {
  width: 100%;
  height: 100%;
}

.contato-03__box {
  width: fit-content;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background-color: #fafafa;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 40px;
  position: absolute;
  top: 0;
  right: 40px;
}

.contato-03__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey, #888);
  position: relative;
  margin-bottom: 20px;
}
.contato-03__text {
  color: var(--grey, #888);
  font-size: 1.125rem;
}
.contato-03__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: var(--primary-color, #f0951f);
}

/* FORM */
.contato-03__form {
  display: block;
}

.contato-03__form :is(input, select, textarea) {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #747474;
  color: var(--grey, #888);
}
.contato-03__send {
  border-radius: 8px;
  background-color: var(--primary-color, #f0951f);
  border-radius: 8px;
  color: var(--light);
  border: 0;
  padding: 12px 24px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* ADDRESS */
.contato-03__address {
  margin-top: 16px;
}
.contato-03__address :is(span, a) {
  display: block;
  color: var(--grey, #888);
  margin: 10px 0;
  text-decoration: none;
}

/* BREAKPOINTS */
@media only screen and (min-width: 992px) {
  .contato-03__box {
    width: fit-content;
    max-width: 35%;
  }
}
@media (max-width: 968px) {
  .contato-03 {
    display: flex;
    align-items: center;
  }
  .contato-03__box,
  .contato-03__map {
    width: 50%;
    position: unset;
  }
}
@media (max-width: 576px) {
  .contato-03 {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .contato-03__box,
  .contato-03__map {
    width: 100%;
    position: unset;
  }
  .contato-03__box {
    height: auto;
    max-height: auto;
    overflow: hidden;
  }
  .contato-03__map {
    height: 380px;
  }
}
