.nm-ticker {
    --nm-speed: 50px;
    --nm-gap: 34px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 50px;
    border: 0;
}

.nm-label {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 18px;
    background: #0A285F;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .4px;
}

.nm-ripple {
    position: relative;
    width: 11px;
    height: 11px;
    display: inline-block;
}

.nm-ripple i {
    position: absolute;
    inset: 0;
    border-radius: 50%;
	background: #fff;
    animation: nmRipple 3s ease-out infinite;
}

.nm-ripple i:nth-child(2) {
    animation-delay: .75s;
}

.nm-ripple i:nth-child(3) {
    animation-delay: 1.5s;
}

.nm-ripple i:nth-child(4) {
    animation-delay: 2.25s;
}

@keyframes nmRipple {
    0% { transform: scale(.25); opacity: 1; }
    70%, 100% { transform: scale(2.8); opacity: 0; }
}

.nm-viewport {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}

.nm-track {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
    animation: nmMarquee linear infinite;
    animation-duration: var(--nm-duration, 35s);
}

.nm-set {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: var(--nm-gap);
    padding-right: var(--nm-gap);
}

.nm-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
}

.nm-item:hover {
    color: #e51b23;
}

.nm-thumb {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    object-fit: cover;
    border-radius: 0 !important;
}

.nm-title {
    display: inline-block;
}

@keyframes nmMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.nm-ticker:hover .nm-track {
    /* Mantemos movimento contínuo; altere para paused se quiser pausar no mouse. */
    animation-play-state: paused;
}

.nm-empty {
    padding: 12px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .nm-ticker {
        min-height: 50px;
    }

    .nm-label {
        min-height: 50px;
        padding: 0 13px;
        font-size: 13px;
    }

    .nm-item {
        font-size: 13px;
        gap: 8px;
    }

    .nm-thumb {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px;
    }
}
