/* Container Principal */
.bgm-gallery-wrapper {
    width: 100%;
}

/* Barra de Filtros */
.bgm-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bgm-filter-btn {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bgm-filter-btn.active, 
.bgm-filter-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Grid da Galeria */
.bgm-gallery-grid {
    display: grid;
    width: 100%;
    gap: 20px;
}

.bgm-gallery-item {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.bgm-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.bgm-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

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

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