
.tigres-gallery {
    display: grid;
    gap: 15px;
}

.tigres-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.tigres-item:hover {
    transform: scale(1.03);
}

.tigres-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.tigres-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tigres-lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: tigresFade 0.3s ease;
}

@keyframes tigresFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .tigres-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tigres-item img {
        height: 200px;
    }
}

