/* Top Marquee Styles */
.top-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll linear infinite;
    padding-left: 100%;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
}

/* Animación de la marquesina */
@keyframes marqueeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Pausar animación al hacer hover */
.top-marquee:hover .marquee-content {
    animation-play-state: paused;
}


/* Enlaces dentro de la marquesina */
.marquee-text a {
    color: inherit;
    text-decoration: underline;
}

.marquee-text a:hover {
    text-decoration: none;
    opacity: 0.8;
}