/* =========================================
   TickerNetifly · Ticker Shortcode Styles
   Prefijo: tn- para evitar conflictos WP
   ========================================= */

.tn-ticker {
    background: var(--blue);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--line);

    
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.tn-ticker-inner {
    display: inline-block;
    animation: tn-tick var(--tn-speed, 22s) linear infinite;
}

@keyframes tn-tick {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.tn-ticker-inner span {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 32px;
}

.tn-ticker-dot {
    color: rgba(255, 255, 255, 0.4);
}
