#agendaentradas {
    background-image: url(../img/manojo.jpg);
}
#premiosprincesa {
    background-image: url(../img/2019-Princesa.webp);
}
#premiosprincesa, #agendaentradas {
    background-size: cover;
    background-position: center;
}

.tarjeta_link {
    text-decoration: none;         
}        
.tarjeta_link:hover .card {
    box-shadow: 0px 0px 8px 3px goldenrod;
}

/*Estilos de Lino para las tarjetas y el zoom de imagen. Comentado por Alicia.*/

.card-body{
    overflow: hidden;           
    border-radius: inherit;    
    position: relative;
}
.card-body > img{         
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.45s ease;   
    /*will-change: transform;
        Según: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/will-change

        Warning:
        will-change is intended to be used as a last resort, in order to try to deal with existing performance problems.
        It should not be used to anticipate performance problems.

        --Traducción--
        Advertencia:
        will-change está pensado para usarse como último recurso para lidiar con los problemas de rendimiento que ya se estén dando.
        No debería utilizarse para anticipar problemas de rendimiento.
    */
    object-fit: cover;
}
.tarjeta_link:hover .card-body > img{
    transform: scale(1.12); 
}   
/*.icono-ubicacion{
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-right: 0.4em;
    flex-shrink: 0;
}*/

@media (min-width: 992px){
    .row-igual-altura{
        align-items: stretch;
    }
    .columna-princesa{
        display: flex;
        flex-direction: column;
    }
    .columna-princesa .tarjeta_link{
        flex: 1;
        display: flex;
    }
    .columna-princesa .card{
        flex: 1;
    }
}

/*
.card-header-absolute{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}
*/