.servicioCard {
    min-height: 323px;
    padding: 40px 32px;
    background: rgba(218, 217, 215, 0.30);
    position: relative;
    overflow: hidden;
}
.servicioCard .overlay {
    position: absolute;
    bottom: -100%;
    height: 100%;
    left: 0;
    width: 85%;
    background-color: #3CBFAE;
    transition: .3s all linear;
}
.servicioCard .titleCta {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}
.servicioCard .title {
    color:  #00205B;
    font-family: "Noto Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
    transition: .3s all linear;
    opacity: 1;
    visibility: visible;
}
.servicioCard .cardTexto {
    color: #00205B;
    font-family: "Noto Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
    opacity: 0;
    visibility: hidden;
    transition: .3s all linear;
    position: relative;
    z-index: 10;
}
.servicioCard .cardCta {
    color:  #005199;
    font-family: "Noto Sans";
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 99px;
    display: block;
    width: fit-content;
    border: 1px solid #005199;
}
.servicioCard:hover .title { opacity: 0; visibility: hidden; }
.servicioCard:hover .cardTexto { opacity: 1; visibility: visible; }
.servicioCard:hover .overlay {
    bottom: 0;
    width: 100%;
}