.people-title {
    width: 90%;
    margin: 0 auto;
    min-height: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
}

.people-title-h1 {
    text-align: center;
    margin: 0;
    font-family: Orbitron, Arial, Helvetica, sans-serif;
    font-display: block;
    font-size: 50px;
    font-style: italic;
    color: rgb(255, 255, 255);
}

.people-container-info {
    background-color: rgb(254, 254, 254);
    width: 90%;
    max-width: 1430px;
    margin: 0 auto 100px auto;
    min-height: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    justify-content: center;
    justify-items: center;
 
    padding: 20px 20px;
    align-content: start;
    border-radius: 20px;
}

.container-each-people {
    align-items: center;
    min-width: 20px;
    border-radius: 20px;
    min-height: 440px;
    background-color: #EFEBE9;
    margin-top: 20px;
    margin-bottom: 5px;
    width: 270px;
    height: auto;
    padding-bottom: 10px;
    border: solid 3px;
    border-color: gray;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 2px 2px 10px 2px #afacab;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-origin: center center;
}

.container-each-people:hover {
    transform: scale(1.04);
    box-shadow: 4px 8px 18px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.container-people-photo {
    min-width: 270px;
    min-height: 288px;
    display: grid;
    place-items: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container-people-photo-image {
    min-width: 243px;
    width: 90%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: solid 3px;
    border-color: gray;
}

.container-people-photo img,
.container-people-photo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-people-info {
    width: 100%;
    height: auto;
    text-align: center;
}

.people-nome {
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
    font-size: 27px;
    font-weight: bold;
    padding-top: 0;
    padding-bottom: 2%;
    color: #0e134d;
}

.people-cargo {
    margin-top: 0;
    color: #546E7A;
    font-family: sans-serif;
    font-weight: lighter;
    letter-spacing: 1px;
    font-size: 14.5px;
    display: inline-block;
    border-bottom: 1px solid #cfd8dc;
    padding-bottom: 7px;
    margin-bottom: 13px;
}

.curriculo-lattes {
    margin-bottom: 7px;
    margin-right: 5%;
    text-align: center;
}

.linkedin {
    text-align: center;
    margin-bottom: 7px;
}

.research-gate {
    text-align: center;
}

.curriculo-lattes a,
.linkedin a,
.research-gate a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: #0e134d;
    font-weight: 200;
    font-size: 13.5px;
}