/* ==========================
   RESET
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100vw;
    height:100vh;
    overflow:hidden;
    font-family:Tahoma, Verdana, sans-serif;
    background:url("images/thumb-1920-941898.jpg") center/cover no-repeat fixed;
}

/* ==========================
   DESKTOP
========================== */
.desktop{
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.icone{
    width:90px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    color:#fff;
    text-align:center;
    font-size:13px;
    text-shadow:1px 1px 2px #000;
    cursor:pointer;
    padding:6px;
    border-radius:4px;
    user-select:none;
}

.icone:hover{
    background:rgba(49,106,197,.35);
    outline:1px solid rgba(255,255,255,.35);
}

.icone img{
    width:48px;
    height:48px;
    image-rendering:auto;
}

/* ==========================
   TASKBAR
========================== */
.barra-tarefas{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(#3b95ff,#245edb);
    border-top:1px solid #6db3ff;
}

.iniciar{
    height:100%;
    min-width:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:bold;
    background:linear-gradient(#65dc65,#2e8c2e);
    border-radius:0 16px 16px 0;
    box-shadow:inset 0 1px rgba(255,255,255,.5);
}

.relogio{
    color:#fff;
    padding:0 15px;
    font-size:13px;
}

/* ==========================
   WINDOWS
========================== */
.janela{
    display:none;
    position:absolute;
    top:90px;
    left:180px;
    width:600px;
    height:420px;
    background:#ece9d8;
    border:1px solid #0054e3;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(0,0,0,.4);
}

#janela-lixeira{
    left:240px;
    top:120px;
}

#janela-internet{
    left:300px;
    top:150px;
}

.barra-titulo{
    height:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8px;
    color:#fff;
    font-weight:bold;
    background:linear-gradient(#4f9df8,#0a58d4);
    cursor: move;
    user-select: none;
}

.barra-titulo button{
    width:24px;
    height:22px;
    border:1px solid #fff;
    border-radius:3px;
    background:linear-gradient(#ff8d8d,#d31b1b);
    color:#fff;
    cursor:pointer;
}

.barra-titulo button:hover{
    filter:brightness(1.08);
}

.conteudo-janela{
    height:calc(100% - 30px);
    overflow:auto;
    padding:20px;
    background:#fff;
}

/* ==========================
   MY COMPUTER
========================== */
.computador{https://neocities.org/site_files/text_editor?filename=style.css#
    line-height:2;
}

/* ==========================
   RECYCLE BIN
========================== */
.lixeira{
    display:flex;
    flex-direction:column;
    align-items:left;
    justify-content:left;
    text-align:left;
    gap:10px;
}

.lixeira-gif{
    width:200px;
    height:auto;
}
.button {padding: 10px 24px;}

/* ==========================
   INTERNET EXPLORER
========================== */
.internet{
    padding:0;
    background:#ece9d8;
}

.toolbar{
    display:flex;
    gap:6px;
    padding:6px;
    border-bottom:1px solid #b9b9b9;
    background:#ece9d8;
}

.toolbar button,
.address-bar button{
    padding:4px 10px;
    border:1px solid #888;
    background:#ece9d8;
    cursor:pointer;
}

.address-bar{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px;
    border-bottom:1px solid #b9b9b9;
    background:#ece9d8;
}

.address-bar input{
    flex:1;
    padding:4px;
    border:1px solid #999;
    font-family:Tahoma,Verdana,sans-serif;
}

.browser-content{
    height:calc(100% - 78px);
    overflow:auto;
    background:#fff;
    padding:20px;
}

.browser-content h1{
    color:#003399;
    margin-bottom:15px;
}
.botoes-lixeira{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.botoes-lixeira button{

    width:90px;
    height:30px;

    font-family:Tahoma, Verdana, sans-serif;
    font-size:14px;

    background:#ece9d8;

    border:1px solid #808080;
    border-top-color:white;
    border-left-color:white;

    cursor:pointer;
}

.botoes-lixeira button:hover{
    background:#d6e8ff;
}

.botoes-lixeira button:active{
    border-top-color:#808080;
    border-left-color:#808080;
    border-right-color:white;
    border-bottom-color:white;
}