/**************************  Dock Menu  ***************************/

.divBotaoNotificacoes i{
    color: #d6b066;
}

.dockmenu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #333333;
    padding: 10px 15px;
    font-family: 'Inspinia', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    /*transition: transform 0.5s ease-in-out;*/
    transition: bottom 1s ease;
    white-space: nowrap;
    z-index: 99999995 !important;
}

.toggle-dockmenu-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 99999995;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.toggle-dockmenu-button:hover {
    opacity: 1;
}

@media print
{
    .toggle-dockmenu-button, .dockmenu
    {
        display: none !important;
    }
}

.dockmenu.hiddenToggle {
    display: none;
}

.dockmenu-section {
    display: flex;
    gap: 10px;
    /*overflow-x: auto;*/
}

.dockmenu-item {
    color: #ddd;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    /*font-size: 14px;*/
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.image-container img {
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7));
    height: 50px;
    width: auto;
    margin-left:20px;
}

.dockmenu-logo {
    height: 30px;
    width: auto;
    border-radius: 5px;
}

.dockmenu-item.active,
.dockmenu-item:hover {
    background-color: #555555;
    text-decoration:none;
    color: #fff;
}

.dropdown-toggle.count-info {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.dropdown-notificacoes {
    position: relative;
}

.dropdown-notificacoes .label {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
}

.dropdown-dockmenu-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #3a3a3a;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.dropdown-dockmenu-menu a {
    color: #ddd;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    border-radius: 5px;
}

.dropdown-dockmenu-menu a:hover {
    background-color: #555555;
    color: #fff;
}

.dropdown-dockmenu:hover .dropdown-dockmenu-menu {
    display: block;
}
.dockmenu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 10px;
    cursor: pointer;
    transition: width 0.5s ease, padding 0.5s ease;
    min-width: 50px;
    width: auto;
}

.dockmenu-item:hover {
    width: auto;
}
.dockmenu-label {
    color: white;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(-10px);
    max-width: 0;
    overflow: hidden;
}

.dockmenu-item:hover .dockmenu-label {
    max-width: 200px; /* ajuste conforme necessário */
    opacity: 1;
    transform: translateX(0);
    transition: max-width 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}


.dockmenu-item:hover .dockmenu-label {
    display: inline;
    opacity: 1;
    transform: translateX(0);
}

/* Design Responsivo */
@media (max-width: 1140px) {
    .dockmenu {
        width: auto;
        flex-direction: row;
        justify-content: space-around;
    }

    .dockmenu-item {
        flex: 1 1 auto;
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
}

::-moz-selection {
    color: #000000;
    background: #d6b066;
}

::selection {
    color: #000000;
    background: #d6b066;
}

@media (max-width: 768px) {
    .navbar-top-links {
        flex: 1 1 auto;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .navbar-static-top{
        width: 95vw;
        flex-direction: row;
        justify-content: space-around;
    }
}

::-moz-selection {
    color: #000000;
    background: #d6b066;
}

::selection {
    color: #000000;
    background: #d6b066;
}

body.body-small.fixed-sidebar.mini-navbar #page-wrapper {
    margin: 0 0 0 0px !important;
}

body.body-small.fixed-sidebar.mini-navbar .navbar-static-side {
    width: 0px !important;
}

/********************************************************************  HEADER  ********************************************************************/

.header-item {
    background-color: #d6b066;
    color: #fff;
    padding: 5px 15px;
    border-radius: 25px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
}

.dropdown-notificacoes>.dropdown-menu {
    margin-top: 0px !important;
}

.pulse{
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.header-item:hover {
    background-color: #fff;
    color: #d6b066;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.header-item.demonstracao::after {
    content: "DEMONSTRAÇÃO";
    position: absolute;
    margin-top: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d6b066;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-item.demonstracao:hover::after {
    opacity: 1;
    visibility: visible;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu li {
    list-style: none;
    margin-right: 10px;
}

.header-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
}

.header-menu li a:hover {
    background-color: #c19a3a;
    color: #fff;
}

.logout-item {
    background-color: #CF1E44;
    color: #fff !important;
    padding: 5px 15px;
    border-radius: 25px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    display: inline-block ;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
}

.logout-item:hover {
    background-color: #fff;
    color: #CF1E44 !important;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.logout-item::after {
    content: "Tem Certeza?";
    position: absolute;
    margin-top: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CF1E44;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logout-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.header-item strong {
    color: #333;
}

.nomeUsuarioHeader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar {
    background: linear-gradient(to right,
    rgba(117, 112, 115, 0.6),
    rgba(0, 0, 0, 0) 60%,
    rgba(255, 255, 255, 0) 50%);
    /*color: white;*/
}


a{
    color: #d6b066;
}
a:hover{
    color: #806a3e;
}

.divBotaoNotificacoes i{
    color: #d6b066;
}

#notificacoesBox{
    overflow: auto;
    max-height: 500px;
}


a{
    color: #d6b066;
}
a:hover{
    color: #806a3e;
}

.btn {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
    min-width: 40px;
}
.btn:disabled{
    transform: scale(1) !important;
    box-shadow: none;
}

.btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

select, input{
    border-radius: 10px !important;
}

.dockmenu-item .dropdown-dockmenu-menu a.active {
    background-color: #555555;
    text-decoration: none;
    color: #fff;
}