.titulo-galeria {
    font-size: 3rem;
    font-weight: 600;
}

.tarjeta {
    width: 100%;
    max-width: 800px;
    border-radius: 30px;
}

.tarjeta-img {
    position: relative;
    width: 100%;
}

.tarjeta-overlay {
    background-color: var(--special-overlay);
    background-image: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border-radius: 30px;
}

.tarjeta-img img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    object-position: center;
}

.tarjeta-datos {
    width: 100%;
    padding: 1rem;
}

.tarjeta-horarios img {
    vertical-align: sub;
}

.tarjeta-descripcion hr {
    border-color: var(--special);
}

.tarjeta-descripcion li {
    color: var(--special);
    padding: 0.1rem 0;
}