/* ===== ACKNOWLEDGMENTS BANNER ===== */

.acknowledgments-banner {
    padding: 120px 0;
    background-color: #F8F8F8;
}

.acknowledgments-banner-title {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    text-align: center;
    color: #000;
}

.acknowledgments-banner-svg {
    height: 64px;
}

.title-wrapper {
    gap: 12px;
}

/* ===== STATIC LOGOS (VISIBLE DESDE XL) ===== */

.acknowledgments-banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
    list-style: none;
    padding: 0;
    margin: 80px 0 0 0;
}

.acknowledgment-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.acknowledgment-logo img:hover {
    filter: none;
    opacity: 1;
}

.acknowledgment-logo:first-child img {
    opacity: 0.3;
}

/* ===== MARQUEE (VISIBLE SOLO < XL) ===== */

.ack-marquee {
    --gap: 32px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
    margin-top: 48px;
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 25s linear infinite;
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.marquee__content li {
    flex: 0 0 auto;
}

.marquee__content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee__content img:hover {
    filter: none;
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media screen and (max-width: 992px) {
    .acknowledgments-banner {
        padding: 48px 0;
    }

    .acknowledgments-banner-title {
        font-size: 22px;
        line-height: 24px;
        width: min-content;
    }

    .title-wrapper {
        justify-content: space-evenly !important;
    }

    .acknowledgments-banner-logos {
        gap: 20px;
    }

    .marquee__content img {
        height: 48px;
    }
}

/* ===== VISIBILITY LOGIC ===== */

/* Marquee: visible solo hasta XL */
@media (min-width: 1200px) {
    .ack-marquee {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .acknowledgments-banner-logos {
        gap: 80px;
    }
}


/* Static logos: visibles solo desde XL */
@media (max-width: 1199.98px) {
    .acknowledgments-banner-logos {
        display: none !important;
    }
}
