.meu-header-fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.news-ticker-bar {
    background-color: #0b0b0b;
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.ticker-stripes {
    width: 55px;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 8px,
        #ff7a00 8px,
        #ff7a00 16px
    );
    flex-shrink: 0;
    z-index: 3;
    position: relative;
}

.ticker-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    animation: scrollTicker 30s linear infinite;
    padding-left: 20px;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: #e6e6e6;
    font-size: 16px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.ticker-sep {
    color: #ff7a00;
    font-weight: 600;
    margin-left: 30px;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navbar alinhada com as margens originais (59px esquerda, 54px direita) */
.meu-header-fixo .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    width: 100%;
    margin: 0;
    padding-left: 59px;
    padding-right: 54px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    display: block;
    transition: max-height 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Estilo das opções do menu */
.nav-link {
    color: #666666 !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #000000 !important;
}

/* Opção ativa com a barra preta embaixo */
.nav-link.active {
    color: #000000 !important;
    font-weight: 500;
}

.nav-link.active::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000000 !important;
    border-radius: 2px;
}

.ao-vivo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, padding 0.3s ease;
}

.ao-vivo-btn:hover {
    background: #f7f7f7;
    border-color: #d0d0d0;
}

.ao-vivo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff3b30;
}

.discord-area {
    display: flex;
    align-items: center;
    position: relative;
}

.discord-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s ease;
}

.discord-login-btn:hover {
    background: #4752c4;
}

.discord-user {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.discord-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.discord-username {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.discord-arrow {
    color: #6b6b6b;
    transition: transform 0.15s ease;
}

.discord-user.open .discord-arrow {
    transform: rotate(180deg);
}

.discord-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    overflow: hidden;
    z-index: 9999;
}

.discord-user.open .discord-dropdown {
    display: block;
}

.discord-dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.discord-dropdown-item:hover {
    background: #f5f5f5;
}

@media (max-width: 991px) {
    .meu-header-fixo .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .meu-header-fixo .navbar .nav-links {
        display: none;
    }

    .header-right {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .meu-header-fixo .navbar {
        height: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-img {
        max-height: 32px;
    }

    .news-ticker-bar {
        height: 30px;
    }

    .ticker-item {
        font-size: 14px;
    }

    .header-right {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .meu-header-fixo .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-right {
        gap: 12px;
    }

    .ao-vivo-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .discord-username {
        display: none;
    }

    .discord-arrow {
        display: none;
    }

    .discord-user {
        gap: 0;
    }

    .ticker-sep {
        margin-left: 15px;
    }
}