/* HEADER ESTILO BAND - TUBE NET */
.band-header {
    background-color: var(--tubenet-dark-blue);
    padding: 12px 0;
    color: #fff;
}

.logo-main {
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
}

.logo-main span {
    color: var(--tubenet-red);
}

.nav-link-top {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-link-top:hover {
    color: #ccc;
}

/* BARRA EM ALTA (TRENDING) */
.trending-bar {
    background-color: #f2f2f2;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.85rem;
}

.trending-label {
    font-weight: 900;
    color: #333;
    margin-right: 15px;
}

.trending-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.trending-links::-webkit-scrollbar {
    display: none;
}

.trending-links a {
    color: #555;
    text-decoration: none;
    border-left: 1px solid #ccc;
    padding-left: 15px;
    white-space: nowrap;
}