/* .large-text {
    font-size: 2rem;
    color: var(--text_primary);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.small-text {
    font-size: 1rem;
    color: var(--text_secondary);
    text-align: center;
    width: 100%;
} */

.marquee__container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10px;
    position: relative;
}

.marquee {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
    overflow: hidden;
    position: relative;
}

.marquee__inner-wrap {
    height: 100%;
    height: 10rem;
}

.marquee__img {
    position: relative; /* Necesario para posicionar el pseudo-elemento */
    width: max(4rem, 12rem);
    height: 4rem;
    margin: 0 4vw;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px;
}

.marquee__img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(4rem + 40px);
    height: calc(4rem + 40px);
    z-index: -1;
}

.marquee__inner {
    height: 100%;
    width: fit-content;
    align-items: center;
    display: flex;
    position: relative;
    animation: marquee 75s linear infinite;
    will-change: transform;
}

/* Gradientes para desvanecer al inicio y al final */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    pointer-events: none;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
