.card-colaborator {
    background-color: white;
    border: 1px solid #ccc;
    width: 110%;
    height: 110%;
    display: grid;
    grid-template-columns: min-content auto;
    padding: 2%;
}

    .card-colaborator:hover {
        border-left: 2px solid #0A75C7;
        border-right: 2px solid #0A75C7;
        border-top: 2px solid #0A75C7;
    }

        .card-colaborator:hover .list-colaborator {
            display: block;
            z-index: 2;
            border-left: 2px solid #0A75C7;
            border-right: 2px solid #0A75C7;
            border-bottom: 2px solid #0A75C7;
        }

.sigla-colaborator {
    width: 88px;
    height: 88px;
    position: relative;
    top: 10%;
    object-fit: contain;
}

.text-colaborator {
    text-decoration: none;
    margin-bottom: 5px;
    color: #005EA4;
    font: normal normal bold 15px/24px Trebuchet MS;
}

.list-colaborator {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    width: 108.5%;
    z-index: 99;
    border-top: none;
    font-family: 'Trebuchet MS';
}

.arrow-colaborator {
    position: absolute;
    top: 15%;
    right: -12%;
    border: solid gray;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s ease;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.card-colaborator:hover .arrow-colaborator {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}



@media (max-width: 1024px) {
    .card-colaborator {
        width: 64%;
    }

    .arrow-colaborator {
        right: 33%;
    }

    .list-colaborator {
        width: 65%;
    }
}

@media (max-width: 600px) {
    .card-colaborator {
        width: 96%;
    }

    .arrow-colaborator {
        right: 3%;
    }
}
