/* Estilos Gerais e Desktop */
.custom-header {
    color: #fff;
    height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}
.custom-header-menu {
    list-style: none;
    display: flex;
    gap: 60px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.custom-header-menu-item a {
    text-decoration: none;
    color: white;
    font-size: 12px !important;
    font-weight: 600 !important;
}
.custom-header-menu-item:hover a {
    color: #ccc;
}
.custom-header-logo {
    max-height: 60px;
    max-width: 60%;
}
.custom-header-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.custom-header-user-image {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    overflow: hidden;
}
.custom-header-dropdown-menu {
    display: none;
    position: absolute;
    background: white !important;
    right: 1.25rem;
    top: 100%;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 5px;
}
.custom-header-dropdown-menu.show {
    display: block !important;
}
.custom-header-dropdown-item,
.custom-header-exit {
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.custom-header-dropdown-item:hover {
    background-color: #f1f1f1;
}

/* Esconde TODOS os elementos mobile no desktop */
.custom-header-logo-mobile, button.custom-header-mobile-button, .custom-header-mobile-list {
    display: none;
}

/* Estilos para Mobile */
@media (max-width: 767px) {
    .custom-header {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        min-height: 88px;
        padding: 0 15px;
    }
    .custom-header-menu {
        display: none;
    }
    .custom-header-logo-mobile,
    button.custom-header-mobile-button {
        display: flex;
    }
    .custom-header-logo-mobile {
        height: 42px;
        margin: 0;
    }
    button.custom-header-mobile-button {
        background: transparent;
        border: none;
        color: white;
        font-size: 32px;
        padding: 0;
        margin: 0;
        height: auto;
        width: auto;
    }
    .custom-header-mobile-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 10px 0;
    }
    .custom-header-mobile-menu-item {
        list-style: none;
    }
    .custom-header-mobile-link {
        color: black !important;
        padding: 10px 20px;
        display: block;
        text-decoration: none;
    }
}