.tarjeta-ticket {
    position: relative;
    opacity: 0;
    transform: translateY(60px) scale(0.92);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 0.15s);
}

.tarjeta-ticket.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tarjeta-ticket:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(139, 21, 57, 0.35);
}

.tarjeta-ticket img {
    transition: transform 0.5s ease;
}

.tarjeta-ticket:hover img {
    transform: scale(1.1);
}

.tarjeta-ticket::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none; /* No bloquea clics */
}

.btn-compra {
    position: relative;
    z-index: 2; /* Queda por encima de todo */
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #8b1539;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-compra:hover {
    background-color: #70112e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 21, 57, 0.4);
}

.btn-compra:active {
    transform: translateY(0);
}
