.mainCard {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 20px);
    height: 100%;
    padding: 0 10px;
    cursor: pointer;
    background-color: var(--bg-table);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.cardPhoto {
    width: 100px;
    height: 90%;
}

.cardPhoto img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cardInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 70%;
    height: 90%;
    padding: 10px;
}
.mainCard:hover{
    background-color: var(--hoverCard);
}

.card_info_1 {
    width: 100%;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--azul-card);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}

.card_info_2,
.card_info_3,
.card_info_4,
.card_info_5{
    width: 100%;
    font-size: 0.9em;
    color: var(--text-card);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}