

.paradise-desktop {
    background: linear-gradient(45deg, #1a1a2e, #16213e); /* Fundo profundo */
    height: 100vh;
    overflow: hidden;
    color: var(--text-main);
}

.top-bar {
    height: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 13px;
}

.os-logo {
    font-weight: bold;
    margin-right: 15px;
    background: var(--accent-color);
    padding: 2px 8px;
    border-radius: 4px;
}

.system-dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); /* Efeito de vidro */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    gap: 15px;
}

.dock-item:hover {
    transform: scale(1.2) translateY(-10px); /* Efeito de zoom clássico */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-button {
    margin-left: 15px;
    color: #ff4d4d; /* Vermelho sistema */
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s;
}

.exit-button:hover {
    opacity: 0.7;
}