@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;600;700;800&family=Roboto:wght@100;300;400;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "roboto", sans-serif;
}

.container-principal-alinhamento {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}

.container-imagens {
  height: 470px;
  width: 350px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 5px;
  background: linear-gradient(45deg, #F9A826, rgb(180, 151, 19));
}

.container-imagens .wrapper img {
  position: relative;
  z-index: 20;
  border-radius: 25%;
  display: block;
  height: 200px;
  width: 200px;
  border: 5px solid #fff;
  object-fit: cover;
  margin: 20px auto;
}

.container-imagens:hover .wrapper img.active { 
  height: 470px;
  width: 350px;
  margin: 0 auto;
  border: none;
  border-radius: 25%;
}

.wrapper .title {
  color: #fff;
  font-size: 30px;
  font-weight: 500px;
  padding: 10px;
  line-height: 25px;
}

.wrapper .job-title {
  color: #000;
  font-size: 17px;
  line-height: 0px;
  margin: 10px 0;
}

.container-imagens .icons {
  margin-top: 80px;
  margin-left: 138px;
  max-width: 100px;
  display: flex;
  gap: .3rem;
  list-style: none;
}

.container-imagens .icons li a {
  height: 100%;
  width: 100%;
  border-radius: 25%;
  transition: all 0.3s;
}

.container-imagens .icons li a:hover {
  transform: scale(0.9);
}

.titulo-principal {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 50px 20px;
}