.unidadeDeNegocios .item .card {
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.unidadeDeNegocios .item .card:hover::before {
    opacity: 1;
}

.unidadeDeNegocios .item .card::before {
    content: "+";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 50pt;
    background: #494F51DD;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    transition: 300ms all ease;
}

.unidadeDeNegocios .item .title {
    font-size: 15pt;
    font-weight: bold;
    color: #494F51;
}

.unidadeDeNegocios .item .description {
    color: #707070;
}

.unidadeDeNegocios .modal-content {
    border-radius: 25px;
    overflow: initial;
}

.unidadeDeNegocios .modal {
    background: unset;
}

.unidadeDeNegocios .close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}