main {
  position: absolute;
  z-index: 2;
  top: 74%;
  width: 100%;
}


/*-----------*/

.titulos-principais{
  text-align: center;
}

.sobreSocios-titulo {
  padding-bottom: 7%;
}

.sobre-socios {
  display: flex;
  text-align: center;
  justify-content: space-evenly;
}

.bloco-sobreSocios {
  background: white;
  padding: 8% 0;
}


.socio {
  width: 26%;
  padding: 2%;
  background: white;
  border-radius: 15px;
  box-shadow: 7px 13px 37px rgba(0, 0, 0, .6);
}


.texto-socio {
  font-size: 18px;
  text-align: center;
}

.foto-socio{
  width: 180px;
  height: 180px;
  border-radius: 100%;
  padding: 5% 10%;
}

/*-----------sobre piego-----------------*/



.sobre-piego {
  background-color: rgb(27, 27, 27);
  color: white;
  padding: 8% 0;
}


.block-sobrePiego {
  justify-content:space-evenly;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.texto-sobrePiego {
  width: 70%;
  align-items: center;
  font-size: 18px;
  text-align: justify;
  padding-top: 3%;
}

.img-sobrePiego{
  width: 30%;
  border-radius: 10px;
}

/*----------redes sociais-------------*/


ul li {
  list-style: none;
  display: inline-block;
  margin: .5em .2em;
}

ul li a {
  text-decoration: none;
  color: white;
  background: #314652;
  width: 30px;
  height: 30px;
  line-height: 30px !important;
  border-radius: 50%;
  transition: all .3s ease-in-out;
}

ul li a:hover {
  transform: scale(1.2);
}

/*----------------resposivo-------------------------*/


/*Shrinking for mobile*/

@media (max-width: 768px) {

  .sobre-socios {
    flex-direction: column;
    align-items: center;
  }

  .socio {
    width: 70%;
    margin: 3%;
  }

  .block-sobrePiego {
    flex-direction: column;
    align-items: center;
  }

  .texto-sobrePiego {
    width: 80%;
  }
  
  .img-sobrePiego{
    width: 70%;
  }

  
}