#equipe {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}


#docentes, #discentes, #colaboradores {
    text-align: center;
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 42px;
}

.docen-image, .discen-image, .colabora-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px;
}

.docen, .discen, .colabora{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    gap: 12px;
    width: 25%;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.docen-descrição, .discen-descrição, .colabora-descrição{
    color: #434343;
    text-align: center;
}

.docen button, .discen button, .colabora button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    background-color: #ffc533;
    border: none;
    cursor: pointer;
}

.docen > button, .discen > button, .colabora > button {
    display: inline-flex;
    margin: 0 5px;
}

.botoes{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.botoes button, .botoes a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #ffc533;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    line-height: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
}

.disabled-link {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #cccccc;
    color: #666666;
    opacity: 0.6;
}

@media screen and (max-width: 450px){
    #docentes, #discentes, #colaboradores {
        flex-wrap: wrap;
        justify-content: center;
    }

    .docen, .discen, .colabora {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 320px){
    .docen, .discen, .colabora {
        width: 100%;
    }

    #equipe .docen-descrição .discen-descrição, .colabora-descrição{
        text-align: center;
    }
}