.gfnm-grid {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.gfnm-grid-item {
    position: relative;
    display: block;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none;
}

.gfnm-grid-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.gfnm-grid-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gfnm-grid-over span {
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gfnm-grid-item:hover .gfnm-grid-over {
    opacity: 1;
}

@media (max-width: 768px) {
    .gfnm-grid-item {
        width: 100px;
        height: 100px;
    }
    
    /* Veja Mais centralizado no mobile (aparece ao tocar) */
    .gfnm-grid-over {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gfnm-grid-over span {
        font-size: 0.9em;
        text-align: center;
    }
}
@media (min-width: 1401px) {
    .gfnm-grid {
			justify-content: center;
    }
}
