.mercadoCard {
    padding: 24px 16px;
    background-color: #fff;
    transition: .3s all linear;
    display: flex;
    flex-direction: column;
    height: 344px;
}
.mercadoCard .title {
    color: #005199;
    font-family: "Noto Sans";
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
    transition: .3s all linear;
}
.mercadoCard .textCont { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.mercadoCard .textCont .image {
    position: absolute;
    width: 100%;
    left: 0;
    height: auto;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
    visibility: visible;
    transition: .3s all linear;
    max-height: 248px;
    aspect-ratio: 1/1;
}
.mercadoCard .textCont .texto, .mercadoCard .cardCta {
    position: relative;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: .3s all linear;
}
.mercadoCard .textCont .texto {
    color: #fff;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8; /* number of lines to show */
    line-clamp: 8;
    -webkit-box-orient: vertical;
}
.mercadoCard .cardCta {
    color: #FFF;
    font-family: "Noto Sans";
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    border-radius: 99px;
    border: 1px solid #FFF;
    width: fit-content;
    padding: 4px 8px;
    display: block;
    cursor: pointer;
}
.mercadoCard:hover { background-color: #00205B; }
.mercadoCard:hover .title { color: #fff; }
.mercadoCard:hover .textCont .texto, .mercadoCard:hover .cardCta {
    opacity: 1;
    visibility: visible;
}
.mercadoCard:hover .image {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    .mercadoCard:hover { background-color: #fff; }
    .mercadoCard { height: 100%; }
    .mercadoCard .title { margin-bottom: 24px; color: #005199 !important; }
    .mercadoCard .textCont .texto, .mercadoCard .cardCta { opacity: 1; visibility: visible; }
    .mercadoCard .textCont .texto { color: #00205B; margin-bottom: 0; margin-top: 16px; }
    .mercadoCard .textCont .texto:not(.open) {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .mercadoCard .cardCta { color: #005199; border-color: #005199; margin-top: 0; }
    .mercadoCard .textCont .openText {
        display: block;
        width: fit-content;
        margin-right: 0;
        margin-left: auto;
    }
    .mercadoCard .textCont .image { height: 205px; position: relative; opacity: 1; visibility: visible; }
    .mercadoCard .textCont .openText.open { transform: rotate(180deg); }
}

@media screen and (min-width: 800px) {
    .mercadoCard .textCont .openText { display: none; }
}