/* ==================== FOOTER DA SIDEBAR ==================== */

/* Esconder texto do footer quando a sidebar estiver minimizada */
body.aside-minimize #kt_aside_footer .menu-title {
    display: none !important;
}

body.aside-minimize #kt_aside_footer .menu-icon {
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

body.aside-minimize #kt_aside_footer .btn.aside-footer-link {
    justify-content: center !important;
    padding: 15px 0 !important;
    min-height: 60px;
}

/* Esconder tooltip quando minimizado */
body.aside-minimize #kt_aside_footer .aside-footer-link[data-bs-toggle="tooltip"] {
    pointer-events: none !important;
}

/* Esconder tooltip no mobile */
@media (max-width: 991px) {
    #kt_aside_footer .aside-footer-link[data-bs-toggle="tooltip"] {
        pointer-events: none !important;
    }
}

/* Transição suave */
#kt_aside_footer .menu-title,
#kt_aside_footer .menu-icon,
#kt_aside_footer .btn,
#kt_aside_footer .aside-footer-link {
    transition: all 0.3s ease;
}

/* ==================== DARK MODE TOGGLE ==================== */

/* Estilo do switch de dark mode */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
}

.dark-mode-toggle input[type="checkbox"] {
    display: none;
}

.dark-mode-slider {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
    cursor: pointer;
}

.dark-mode-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.dark-mode-toggle input:checked + .dark-mode-slider {
    background-color: #1e1e2d;
}

.dark-mode-toggle input:checked + .dark-mode-slider:before {
    transform: translateX(24px);
}

/* Ícones de sol e lua */
.dark-mode-icon {
    font-size: 16px;
    transition: 0.3s;
}

/* ==================== TEMA CLARO ==================== */

/* Cor do footer da sidebar no tema claro */
.light-theme #kt_aside_footer .btn-custom {
    background-color: #1e1e2d;
    color: white;
}

.light-theme #kt_aside_footer .btn-custom:hover {
    background-color: #2b2b40;
}

/* ==================== TEMA ESCURO ==================== */

/* Cor do footer da sidebar no tema escuro */
.dark-theme #kt_aside_footer .btn-custom {
    background-color: #5e6278;
    color: white;
}

.dark-theme #kt_aside_footer .btn-custom:hover {
    background-color: #6c7188;
}

/* ==================== RESPONSIVIDADE ==================== */

/* Mobile */
@media (max-width: 991px) {
    body #kt_aside_footer .menu-title {
        display: none !important;
    }
    
    body #kt_aside_footer .menu-icon {
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    body #kt_aside_footer .btn {
        justify-content: center;
        padding: 10px 0;
    }
}