.contato-map {
  width: 100%;
  min-height: 400px;
}
/* =============================== SEÇÃO CONTATO =============================== */
/* CONTATO MOD 2 */
.container.contato-2__wrapper--small {
  max-width: 600px !important;
}
.container.contato-2__wrapper--medium {
    max-width: 1100px !important;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
    padding: 30px;
    transform: translateX(-41px);
}
.contato-2__title {
  font-size: 2.4rem;
  color: var(--dark);
  text-transform: uppercase;
}
.contato-2__text {
  font-size: 1.27rem;
}
.contato-2__title span {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.contato-box {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: all 0.3s ease-out;
  border-radius: 21.174px;
  border: 1.512px solid #e1e2e2;
  box-shadow: 51.421px 24.198px 16.636px 0 rgba(0, 0, 0, 0),
    7.562px 4.537px 9.074px 0 rgba(0, 0, 0, 0.09),
    1.512px 1.512px 4.537px 0 rgba(0, 0, 0, 0.1);
}
.contato-box:hover {
  transform: scale(1.03) translateX(5px) translateY(-5px);
}
.contato-box__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease-out;
}
.contato-box__title {
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0px;
}
.contato-box__address :is(span, a) {
  display: block;
  color: var(--grey);
  font-size: 0.9rem;
  text-align: center;
  margin: 8px 0;
}

.contato-2__form .row [class*="col-"] {
  padding: 8px;
}

.contato-2__form :is(input, textarea, select) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px;

  width: 100%;
  margin: 6px 0;

  border: 1px solid #c4c4c4;
  border-radius: 6px;

  font: 12px var(--primary-font);
  color: var(--grey);

  -webkit-transition: 0.3s;
  transition: 0.3s;

  outline: none;
  text-align: left;
}

/* BOTÃO SUBMIT */
.contato-2__form .ir {
  display: block;
  position: relative;

  max-width: 242px;
  width: 100%;
  height: 50px;

  border: 2px solid var(--grey);

  transition: 0.3s;
  margin: 8px 0;
}

.contato-2__form .ir:hover {
  border-color: var(--primary-color);
}

.contato-2__form .ir:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1%;
  height: 100%;
  background-color: var(--primary-color);
  transition: 0.3s;
  z-index: 0;
  opacity: 0;
}

.contato-2__form .ir:hover:before {
  width: 100%;
  opacity: 1;
}

.contato-2__form .ir label,
.contato-2__form .ir [type="submit"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  margin: 0;
  text-align: center;
}

.contato-2__form .ir label {
  color: var(--grey);
  font-size: 14px;
  font-weight: bold;
}

.contato-2__form .ir:hover label {
  color: #fff;
}

.contato-2__form .ir [type="submit"] {
  background-color: transparent;
  outline: none;
  border: none;
}

.mapa-contato-2 {
  width: 100%;
}
.mapa-contato-2 iframe {
  width: 100%;
  height: 380px;
  margin-bottom: 0;
}
/* ===============================  END SEÇÃO CONTATO =============================== */
@media screen and (max-width: 1024px) {
  .container.contato-2__wrapper--medium {
    max-width: 1100px !important;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
    transform: translateX(0px);
}
}