.colaboradores {
    margin-bottom: 70px !important;

    .titulo {
        text-align: center;
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .colaboradores-grid {
        display: flex;
        gap: 22px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;

        .colaborador-item {
            width: calc((100% - (22px * 9)) / 10);
            display: flex;
            justify-content: center;
            align-items: center;

            a {
                width: 99px;
                height: 99px;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                background-color: #FFFFFF;
                overflow: hidden;
                box-sizing: border-box;
                padding: 0;
            }

            .nombre {
                font-size: 8px;
                text-align: center;
                margin-top: 6px;
            }

            img {
                width: 100%;
                height: 100%;
                display: block;
                border-radius: 0;
                object-fit: none;
            }
        }
    }
}

@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    .colaboradores {
        .colaboradores-grid {
            .colaborador-item {
                width: calc((100% - (22px * 9)) / 4);
            }
        }
    }
}

@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
    .colaboradores {
        .colaboradores-grid {
            .colaborador-item {
                width: calc((100% - (22px * 9)) / 7);
            }
        }
    }
}

@media (max-width: 767px) {

    .colaboradores {
        .colaboradores-grid {
            .colaborador-item {
                width: calc((100% - (22px * 9)) / 4);
            }
        }
    }
}

@media (max-width: 576px) {

    .colaboradores {
        .colaboradores-grid {
            .colaborador-item {
                width: calc((100% - (18px * 9)) / 2);


                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 100%;
                }
            }
        }
    }
}

@media (max-width: 390px) {

    .colaboradores {
        .colaboradores-grid {
            .colaborador-item {
                width: calc((100% - (12px * 9)) / 2);


                img {
                    width: 100%;
                    height: 100%;
                    border-radius: 100%;
                }
            }
        }
    }
}