#section-nosotros,
#section-marcas,
#section-productos,
#section-servicios,
#section-contacto,
#section-ubicacion {
    background-image: url('../images/home/Logo-El-Rey-de-la-Verdura_fondo-textura-4.png');
    /* background-size: contain !important; */
}

#logo .header-logo {
    width: 205px;
}
footer .f-logo {
    width: 60px;
}
.carousel-item h3 {
    color: #ebb142 !important;
}
#section-contacto .de-title {
    text-align: left;
}
.seccion_productos .card-image-1 {}
.seccion_productos .card-image-1.mod-b img {
    transform: scale(1);
    opacity: 1;
}
.seccion_productos .card-image-1.mod-b .d-text {
    background: rgba(30, 30, 30, .7);
}
.seccion_productos .card-image-1.mod-b h3 {
    margin-bottom: 10px;
    text-align: center;
}
.seccion_productos .card-image-1:hover .d-text {
    opacity: 0;
}
.seccion_marcas {
    padding: 50px 0 100px 0;
}
:root {
    --bg: #0f1115;
    --fade: #0f1115;
    --logo-color: #9aa1ac;
    --logo-color-hover: #ffffff;
    --gap: 64px;
    --speed: 28s;
}
.marquee {
    width: min(1100px, 92vw);
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #101010 8%,
        #101010 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #101010 8%,
        #101010 92%,
        transparent 100% 
    );
    margin-right: auto;
    margin-left: auto;
}

.marquee__track {
    display: flex;
    width: max-content;
    /* gap: var(--gap); */
    gap: 64px;
    /* animation: marqueeAnimation var(--speed) linear infinite; */
    animation: marqueeAnimation 28s linear infinite;
}

/* pausa al pasar el mouse (opcional, quitar si no se quiere) */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee__group {
    display: flex;
    align-items: center;
    /* gap: var(--gap); */
    gap: 64px;
    flex-shrink: 0;
}

.logo {
    /* height: 32px; */
    height: 80px;
    display: flex;
    align-items: center;
    /* color: var(--logo-color); */
    fill: currentColor;
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.02em;
    /* opacity: 0.7; */
    opacity: 1;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.logo:hover {
    opacity: 1;
    /* color: var(--logo-color-hover); */
}

.logo svg {
    height: 28px;
    width: auto;
}

@keyframes marqueeAnimation {
    from {
        transform: translateX(0);
    }
    to {
        /* se mueve exactamente el ancho de UN grupo (50% del track total) */
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
    }
}

#gallery .item .de-image-hover .image-popup img {
        width: 100%;
    height: 100%;
    object-fit: cover;
}

.seccion_banner_VA .de-title h2,
.seccion_banner_MC .de-title h2 {
    margin-top: 0;
}
.seccion_banner_MC .de-title p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

.seccion_banner_VA .de-title p {
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    max-width: 575px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    #logo .header-logo {
        width: 190px;
    }
}