.header {
    background-color: #ff6200;
    width: 100%;
    position: relative;
    padding: 1em;
    height: 84px;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}

.header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.botoes-acesso #UC_TOPO_lblNome {
    font-weight: 600;
}

.botoes-acesso .bt_padrao {
    color: #FFFFFF;
    background-color: #ff6200;
}


.header > * {
    height: 100%;
}

.header .logo {
    display: flex;
    align-items: center;
    margin: auto;
    max-height: 25px;
}

    .header .logo .logo-img {
        max-height: 36px;
    }

.header .header-center {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
}

.header .canais {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

    .header .canais .canais-list {
        display: flex;
        flex-direction: row;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        height: 100%;
    }

    .header .canais .canal {
        font-size: 16px;
        font-weight: normal;
        text-decoration: none;
        color: #fff;
        height: 100%;
        display: flex;
        align-items: center;
    }

        .header .canais .canal:hover {
            text-decoration: underline;
        }

.header .botoes-acesso {
    display: flex;
    align-items: center;
    gap: 1em;
}

    .header .botoes-acesso a {
        width: fit-content;
        font-size: 16px;
        font-weight: 600;
    }


.header-center .dropdown-menu {
    background-color: #FFFFFF;
    border: 1px solid #4C4C4C;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(35px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease;
    backdrop-filter: blur(6px);
}

    .header-center .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(14px);
    }

.header-center .canais-list .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(14px);
}

.header-center .dropdown-menu .dropdown-item {
    color: #000;
    font-size: 16px;
    padding: 10px 18px;
    transition: background .2s ease, padding-left .2s ease;
}

    .header-center .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 182, 0, 1);
        padding-left: 24px;
		color: #000;
    }

.header-center .dropdown-item:active {
    background: rgba(255, 182, 0, 0.25);
}

.header-center .canais-list .dropdown::after {
    content: "";
    position: absolute;
    top: 100%; /* logo abaixo do item */
    left: 0;
    width: 100%;
    height: 20px; /* altura da zona morta — ajuste conforme o gap */
    background: transparent;
}

.header .botoes-acesso .dropdown-menu a {
    width: 100%;
}

.header .botoes-acesso .dropdown span {
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}

.bt_registrar {
    border: 2px solid #fff;
}

    .bt_registrar:hover {
        border: 2px solid #808080;
    }

.bt_logar {
    background-color: #fff;
    color: #ff6200;
}

.header .search-input, .mobile-menu .search-input {
    position: relative;
    display: none;
}

.styled-input {
    border: none;
    border-radius: 16px;
    padding: 5px 30px 5px 10px;
    width: 150px;
}

.search-input svg {
    position: absolute;
    right: 10px;
    color: #000;
    top: 9px;
    cursor: pointer;
}

.mobile-menu .search-input svg {
    top: 2px;
}

.header .botoes-acesso .header-btn {
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    font-size: 1.3em;
    line-height: 1;
}

.header .botoes-acesso .registrar {
    background-color: #fff;
    color: #ff6200;
}

.header .botoes-acesso .logar {
    color: #fff;
    background-color: transparent;
}

.header .dropdown .user-icon {
    color: #fff;
    text-decoration: none;
}


.mobile {
    display: none;
}

@media (max-width: 991px) {

    .desktop {
        display: none !important;
    }

    .header {
        flex-direction: column;
    }

    .logo {
        align-self: flex-start;
        height: 100%;
    }

    .mobile-options {
        background-color: #ff6200;
        width: 100%;
        padding-top: 5px;
        overflow: hidden;
    }

    .mobile-menu {
        color: #fff;
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        font-weight: 500;
    }

        .mobile-menu a {
            color: #fff;
            text-decoration: none;
        }

    .header .container {
        justify-content: center;
    }

    .search-input {
        display: none;
    }

    .mobile {
        display: unset;
    }

    .bars-menu {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
