/* ===== BANNER EN MOVIMIENTO ===== */

.bienvenida-ticker {
    background: #01294a;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
}

.bienvenida-ticker-inner {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;                /* arranca fuera de la pantalla */
    animation: scroll-horizontal 22s linear infinite;
    font-size: 15px;
    color: #f1f1f1;
}

.bienvenida-ticker-inner span {
    color: #ffd700;                    /* dorado elegante */
}

/* ===== ANIMACIÓN ===== */
@keyframes scroll-horizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bienvenida-ticker-inner {
        font-size: 13px;
        animation-duration: 28s;       /* más lento para móviles */
    }
}
