.titulo-ticker {
    margin-top: 10px !important;
    margin-left: 5px;
    text-align: center;
}
.footer-rss-ticker {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    align-items: center;

    overflow: hidden;
    z-index: 100;
}

.news-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-bottom: 5px !important;
}

/* 🧠 texto dinámico */
.news-ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: tickerScroll 120s linear infinite;
    font-weight: 600;
    color: var(--blanco);
}

/* 🎬 animación */
@keyframes tickerScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}