*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}
.container-funcionarios{
    width: 90%;
    display: flex;
    justify-content: space-evenly; 
    align-items: center;
    border-radius: 12px;
    /* gap: 48px; */
    height: 500px;
    
}
.container-funcionarios div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    position: relative;
    height: 250px;
    box-shadow: 0 0 16px #000;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}
div p{
    width: 100%;
    position: absolute;
    bottom: 28px;
    font-size: 32px;
    text-align: center;
}
div span{
    width: 100%;
    position: absolute;
    bottom: 4px;
    font-size: 22px;
    text-align: center;
}
div img{
    width: 120px;
    border-radius: 90%;
    height: 130px;
}