.galeria-item img {
    width: 100%;
    height: auto;
    display: block;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.galeria-item a:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}
.img-galeria {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* marcas */
/* Marcas */
.marcas-section {
    background: radial-gradient(circle at top, #2b2b2b, #0f0f0f);
    padding: 5rem 0;
}

.marca-box {
    background-color: #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.marca-box img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.marca-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767px) {
    .marca-box {
        height: 120px;
    }

    .marca-box::after {
        display: none;
    }
}
