.FotoP{
    width: 95%;
    max-width: 1600px;
    margin: auto;
}
.integrante {
    width: 100%;
    padding: 5px;
    display: flex;
    background: #1b5233;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.integrante .Descrip{
	width: 75%;
}
.integrante img{
    width: 25%;
    border-radius: 50%;
}
.integrante img:hover{
	width: 35%;
}
.integrante .Descrip{
    margin: 10px;
    font-family: 'Lobster', cursive;
	font-size: 1.1em;
    text-align: center;
    text-align: justify;
    padding: 10px;
}

.integrante:before {
    box-sizing: border-box;
	content: "";
    display: block;
    width: 0;
    height: 5px;
    background: white;
    border: 1px solid red;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all 0.5s;
}
.integrante:hover:before {
	width: 100%;
    left: 0;
}