.contato-map {
  width: 100%;
  min-height: 400px;
}

.contato .left {
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%), rgba(2, 47, 66, 0.95);

  display: flex;
  padding: 64px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contato .left h2 {
  color: #FAFAFA;
  font-family: Rubik;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.contato .left p {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 8px 0 20px 0;
}

.contato .left img {
  width: 100%;
  object-fit: cover;
  height: 17.75rem;
  border-radius: 1rem;
}

.contato .right {
  background: #F6F6F6;
  display: flex;
  padding: 56px 32px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  border-radius: 1.5rem;
}

.contato .right .form-label {
  color: #4A4848;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.contato .right .form-control,
.contato .right .form-select {
  display: flex;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid #E9E9E9;
  background: #FAFAFA;
}

.contato .right .form-control::placeholder,
.contato .right .form-select {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.contato .right .btn {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #22587A;
  color: #FAFAFA;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
}

.contato__card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  justify-content: center;
  align-items: flex-start;
  border-radius: 16px;
  background: rgba(2, 47, 66, 0.25);
}

.contato__card h3 {
  color: #FAFAFA;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 0 0 24px 0;
  position: relative;
}

.contato__card h3::before {
  content: '';
  width: 16px;
  height: 1px;
  background: #99B2C2;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.contato__card address,
.contato__card address a,
.contato__card address span {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px;
}

@media screen and (min-width: 1440px) {
  .contato .left h2 {

    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
  }

  .contato .left p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 16px 0 40px 0;
  }

  .contato__card h3 {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 0 0 24px 0;
  }

  .contato__card address,
  .contato__card address a,
  .contato__card address span {
   
    font-size: 16px;
    font-weight: 350;
    line-height: 24px;
  }

}