* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    gap: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.conjuntoPerfis{
    display: flex;
    flex-direction: row;
    gap: 300px;
}

.perfil {
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 7px 10px #0003;
    background-color: white;
    transition: 0.5s ease;
}

.perfil:hover {
    width: 210px;
    height: 210px;
}

.itensPerfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nome{
    font-size: 1.5rem;
    font-weight: bolder;
}

.cargo{
    font-size: 1rem;
}


.imagem {
    width: 10vh;
    height: 12vh;
    border-radius: 70%;
}