.hero-galeria {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}


.gallery-item:hover .gallery-img {
    transform: scale(1.1); 
}