main {
  margin-top: 35px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

h1 {
  font-size: 2.2em;
  cursor: default;
}

.mosaic {
  display: flex;
}

.person {
  width: 20%;
  cursor: pointer;
}

.person img {
  width: 100%;
}

.descricao-pessoa {
  display: none;
}

.equipe {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.pessoa {
  width: 18%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.foto-pessoa {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #352052;
  margin-bottom: 20px;
}

.foto-pessoa:hover {
  filter: brightness(0.9);
  border: 4px solid #BD4CF7; 
}


.pessoa.ativo img {
  filter: brightness(0.8);
  border: 4px solid #BD4CF7; 
}

.nome-pessoa {
  font-size: 1.5em;
  margin-bottom: 5px;
  border-bottom: 3px solid whitesmoke;
  border-image: linear-gradient(to right, #352052, #BD4CF7) 1;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}

/* -------------DESCRIÇÃO------------- */

#descricao-pessoa {
  margin-top: 50px;
  margin-bottom: 20px;
  margin: 0 20px;
  font-size: 1.3em;
}

.ativo 

p {
  font-size: 1.3em;
  font-style: italic;
  letter-spacing: 1.5px;
}

em {
  font-family: 'Open Sans', sans-serif;
}

body a {
  text-decoration: none;
}

.fa-github, .fa-instagram, .fa-linkedin {
  font-size: 1.5em;
  color: #BD4CF7;
  margin: 3px 5px 0 0;
}

.fa-star {
  color: #FFC107;
  cursor: default;
}