
.banner-marquee {
    width: 100%;
    overflow: hidden;
    background-color: #e43618;
    padding: 12px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollInfinite 10s linear infinite;
}

.marquee-content {
    display: flex;
}

.marquee-content span {
    font-size: 24px;
    color: #000;
    white-space: nowrap;
    margin-right: 50px;
	 font-family: 'Cocogoose';
}

/* Animación continua perfecta */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
















/*
fx pero queda sin texto entre que aparece el otro
.banner-marquee {
    width: 100%;
    overflow: hidden;
    background-color: #e43618;
    padding: 10px 0;
    position: relative;
}

.banner-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    animation: scrollText 25s linear infinite;
}

/ * Animación de izquierda a derecha * /
@keyframes scrollText {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

*/