/* RESET E ESTILOS GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: url('https://wazzimagiygg.com/WikiNotPedia2.png') center/cover no-repeat fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: white;
}

/* AVISO DE COOKIES */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
}

.cookie-notice {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(0, 120, 215, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 120, 215, 0.3);
}

.cookie-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 120, 215, 0.5));
}

.cookie-notice h2 {
    color: #0078d7;
    margin-bottom: 15px;
    font-size: 28px;
    text-align: center;
    background: linear-gradient(135deg, #0078d7, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cookie-notice h3 {
    color: #4CAF50;
    margin: 20px 0 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-notice p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: justify;
}

.cookie-required-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-required-list ul {
    list-style: none;
    padding: 0;
}

.cookie-required-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cookie-required-list li:last-child {
    border-bottom: none;
}

.cookie-required-list li:before {
    content: "🔐";
    font-size: 16px;
    opacity: 0.9;
}

.cookie-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: #ffc107;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-warning i {
    font-size: 24px;
}

.cookie-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.cookie-button {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-button.primary {
    background: linear-gradient(135deg, #0078d7, #005a9e);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 120, 215, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-button.primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 215, 0.4);
    background: linear-gradient(135deg, #005a9e, #0078d7);
}

.cookie-button.secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-button.secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* TELA DE LOGIN (modificada para aparecer após cookies) */
#login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 40, 0.95));
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 20px;
}

/* ÁREA DO DESKTOP */
.desktop-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-template-rows: repeat(16, 1fr);
    gap: 0;
    padding: 10px;
    z-index: 0;
    overflow: hidden;
}

/* CÉLULAS DO DESKTOP */
.desktop-cell {
    position: relative;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.desktop-cell:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.desktop-cell.drag-over {
    background-color: rgba(0, 120, 215, 0.3) !important;
}

/* ÍCONES DO DESKTOP */
.desktop-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
    transition: transform 0.2s;
    padding: 2px;
}

.desktop-icon:hover {
    transform: scale(1.05);
}

.desktop-icon.dragging {
    opacity: 0.7;
    transform: scale(1.1);
    z-index: 1000;
}

.desktop-icon img {
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
    pointer-events: none;
}

.desktop-icon span {
    color: white;
    font-size: 11px;
    text-align: center;
    text-shadow: 1px 1px 2px black;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1px 3px;
    border-radius: 3px;
}

/* MENU DE CONTEXTO DO DESKTOP */
.context-menu {
    position: fixed;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(40, 40, 40, 0.98));
    color: white;
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
}

.context-menu-item {
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.context-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.context-menu-item img {
    width: 16px;
    height: 16px;
}

/* MODAL PARA ADICIONAR ATALHO */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(40, 40, 40, 0.98));
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal h3 {
    margin-bottom: 20px;
    color: #0078d7;
    font-size: 1.3em;
}

.modal-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.modal-input:focus {
    outline: none;
    border-color: #0078d7;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

.modal-button {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.modal-button.primary {
    background: linear-gradient(135deg, #0078d7, #005a9e);
    color: white;
}

.modal-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-button:hover {
    transform: translateY(-1px);
}

/* NOTIFICAÇÃO DE SALVAMENTO */
.save-notification {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 10000;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

.save-notification.error {
    background: #ff6b6b !important;
}

/* BARRA DE TAREFAS */
.taskbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.taskbar-left {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 5px;
}

.taskbar-icons {
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 5px;
    max-width: 60%;
    overflow-x: auto;
    padding: 0 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.taskbar-icons::-webkit-scrollbar {
    height: 3px;
}

.taskbar-icons::-webkit-scrollbar-track {
    background: transparent;
}

.taskbar-icons::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.taskbar-icon {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 160px;
    min-width: 40px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.taskbar-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.taskbar-icon.active {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid #0078d7;
    box-shadow: 0 2px 5px rgba(0, 120, 215, 0.3);
}

.taskbar-icon img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(1.2);
}

/* BOTÕES DA TASKBAR */
.taskbar-button {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(60, 60, 60, 0.9));
    border: none;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.taskbar-button:hover {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.95), rgba(80, 80, 80, 0.95));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.taskbar-button:active {
    transform: translateY(0);
}

/* RELÓGIO */
#clock {
    padding: 0 15px;
    text-align: right;
    line-height: 1.3;
    font-size: 0.85em;
    flex-shrink: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#clock span:first-child {
    font-size: 1.1em;
    font-weight: 600;
}

/* MENUS POPUP */
.menu, .admin-popup, .tools-popup, #notificationPopup, #userMenu {
    position: fixed;
    bottom: 45px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98), rgba(40, 40, 40, 0.98));
    color: white;
    border-radius: 12px;
    padding: 12px;
    width: 320px;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(30, 30, 30, 0.5);
    z-index: 1001;
    animation: menuSlideUp 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes menuSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SCROLLBAR PERSONALIZADA */
.menu::-webkit-scrollbar,
.admin-popup::-webkit-scrollbar,
.tools-popup::-webkit-scrollbar,
#notificationPopup::-webkit-scrollbar,
#userMenu::-webkit-scrollbar {
    width: 8px;
}

.menu::-webkit-scrollbar-track,
.admin-popup::-webkit-scrollbar-track,
.tools-popup::-webkit-scrollbar-track,
#notificationPopup::-webkit-scrollbar-track,
#userMenu::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
}

.menu::-webkit-scrollbar-thumb,
.admin-popup::-webkit-scrollbar-thumb,
.tools-popup::-webkit-scrollbar-thumb,
#notificationPopup::-webkit-scrollbar-thumb,
#userMenu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
    border-radius: 4px;
    border: 2px solid rgba(30, 30, 30, 0.5);
}

/* POSICIONAMENTO DOS MENUS */
#startMenu {
    left: 10px;
}

#adminMenu {
    left: 120px;
}

#toolsMenu {
    left: 230px;
}

#userMenu {
    left: auto;
    right: 10px;
    width: 280px;
}

#notificationPopup {
    left: auto;
    right: 60px;
    bottom: 50px;
}

/* ITENS DO MENU */
.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 3px;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-item:active {
    transform: translateX(0);
}

.menu-item img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    filter: brightness(1.3);
}

/* JANELAS */
.window {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 850px;
    height: 550px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25),
                0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    resize: both;
    overflow: hidden;
    border-radius: 12px;
    z-index: 100;
    min-width: 320px;
    min-height: 240px;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: windowAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes windowAppear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.window.minimized {
    display: none;
}

.window-header {
    background: linear-gradient(135deg, #0078d7, #005a9e);
    color: white;
    padding: 10px 15px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.window-header span {
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding: 2px;
    border-radius: 4px;
    transition: all 0.2s;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.window-controls button:active {
    transform: scale(0.95);
}

.window iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 12px 12px;
}

/* OVERLAY PARA FECHAR MENUS */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    backdrop-filter: blur(3px);
}

/* JANELA ATIVA */
.window.active {
    z-index: 101;
    box-shadow: 0 16px 56px rgba(0, 120, 215, 0.25),
                0 6px 20px rgba(0, 120, 215, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* BOTÃO MOSTRAR TODAS AS JANELAS */
.show-all-windows {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.show-all-windows:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* MENU DO USUÁRIO */
.user-info-header {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 8px;
}

.user-name {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #0078d7, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.user-email {
    font-size: 0.9em;
    opacity: 0.8;
    word-break: break-all;
}

/* NOTIFICAÇÕES */
.notification-item {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.notification-item strong {
    color: #4CAF50;
    font-weight: 600;
}

/* ALERTA DE SANÇÃO */
.sancao-alerta {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(153, 0, 0, 0.2));
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ff6b6b;
    border-left: 4px solid #cc0000;
    animation: pulse 2s infinite;
    border: 1px solid rgba(204, 0, 0, 0.3);
}

@keyframes pulse {
    0% { background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(153, 0, 0, 0.2)); }
    50% { background: linear-gradient(135deg, rgba(204, 0, 0, 0.3), rgba(153, 0, 0, 0.3)); }
    100% { background: linear-gradient(135deg, rgba(204, 0, 0, 0.2), rgba(153, 0, 0, 0.2)); }
}

/* ÍCONE DE NOTIFICAÇÃO */
#notificationIcon {
    cursor: pointer;
    font-size: 1.3em;
    margin-right: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#notificationIcon:hover {
    color: #0078d7;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 4px 12px rgba(0, 120, 215, 0.2);
}

/* RESPONSIVIDADE */
@media (max-height: 700px) {
    .menu, .admin-popup, .tools-popup, #notificationPopup, #userMenu {
        max-height: 55vh;
    }
}

@media (max-width: 900px) {
    .menu, .admin-popup, .tools-popup, #notificationPopup, #userMenu {
        width: 280px;
        max-height: 50vh;
    }
    
    .taskbar-button {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    #clock {
        font-size: 0.75em;
        padding: 0 10px;
    }
    
    .taskbar-icon {
        max-width: 120px;
    }
    
    .window {
        top: 20px;
        left: 20px;
        width: calc(100% - 40px);
        height: calc(100% - 80px);
    }
}

@media (max-width: 600px) {
    .taskbar-left {
        gap: 3px;
    }
    
    .taskbar-button {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .menu, .admin-popup, .tools-popup, #notificationPopup, #userMenu {
        width: 250px;
    }
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* ESTADO INATIVO */
.idle {
    opacity: 0.7;
}

/* ANIMAÇÃO DE FADE OUT PARA COOKIES */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
