#main-contato {
  background-image: url("../img/bg-login.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 65vh;

  text-align: center;
  padding-top: 50px;
}

#main-contato p strong {
  font-size: 30px;
  font-weight: bold;
}

#main-contato p {
  font-weight: 300;
  color: white;
  width: 50%;
  margin: 0 auto 70px auto;
  font-size: 28px;
}

#main-contato .logo {
  max-width: 874px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#nossa-equipe {
  position: relative;
  top: -70px;
  text-align: center;
  margin-bottom: 100px;
}

#nossa-equipe h2 {
  font-size: 32px;
  font-weight: 700;
  color: #C48D30;
  margin-bottom: 100px;
}

#nossa-equipe img {
  margin-bottom: 15px;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}

.contato-devs {
  display: flex;
  padding: 0 120px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contato-devs p:nth-child(2) {
  font-size: 22px;
  font-weight: 600;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.redes svg path {
  transition: 0.15s;
}

.redes svg:hover path {
  fill: #bce1ab;
}

@media (max-width: 1400px) {

  #main-contato p {
    width: 60%;
    margin-bottom: 40px;
  }

  #nossa-equipe img {
    width: 240px;
    height: 240px;
  }

  .contato-devs {
    padding: 0 20px;
  }
}

@media screen and (max-width: 750px) {
  #nossa-equipe h2 {
    margin-bottom: 50px;
  }

  .contato-devs {
    gap: 40px;
    flex-direction: column;
  }

  #main-contato {
    padding-top: 20px;
  }

  #main-contato p {
    font-size: 22px;
    width: 90%;
    margin-bottom: 10px;
  }

  #main-contato p strong {
    font-size: 26px;
  }

  #main-contato .logo {
    width: 70%;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }

}

@media (max-width: 380px) {
  #main-contato .logo {
    display: none;
  }
}