/* Fondo del sitio migrado desde tu sitio anterior. */
body {
    background-color: #f5faf7;
}
/* Fondo del contenido migrado desde tu sitio anterior. */
.sitePage > div {
    background-color: #f5f5f5;
}


.tarjeta-hover{
    position: relative;
    width: 100%;
    min-height: 500px;
    height: 500px; /* o 300px si querés más alta */
    overflow: hidden;
}

.tarjeta-hover .cara-gris,
.tarjeta-hover .cara-azul{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 25px !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: opacity .35s ease;
}

.tarjeta-hover .cara-gris{
    opacity: 1;
    z-index: 2;
}

.tarjeta-hover .cara-azul{
    opacity: 0;
    z-index: 1;
}

.tarjeta-hover:hover .cara-gris{
    opacity: 0;
}

.tarjeta-hover:hover .cara-azul{
    opacity: 1;
}