/* ===== RESET ===== */
*{
    margin:100;
    padding:0;
    width:260px;
    
}

/* ===== CORES GLOBAIS ===== */
:root{
    --bg-main:#0f1120;
    --bg-card:#1a1d33;
    --bg-hover:#252846;

    --menu:#121428;

    --border:#35395c;

    --text:#ffffff;
    --text-light:#bfc6ff;

    --primary:#00e5ff;
    --success:#00ffb3;
     

/* ===== BODY ===== */
body{
    background:var(--bg-main);
    color:var(--text);
    font-family:Arial, Helvetica, sans-serif;
   
}

/* ===== LAYOUT ===== */
.container{
    display:flex;
    min-height:100vh;
   
}


/* ===== MENU ===== */
.sidebar{
    width:260px;
    background:var(--menu);
    padding:20px;
    border-right:1px solid var(--border);
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:var(--primary);
    margin-bottom:30px;

}

/* ===== BOTÕES MENU ===== */
.menu-btn{
    display:block;
    width:100%;
    padding:180px;
    margin-bottom:15px;
    

    background:var(--bg-card);
    border:1px solid var(--border);

    color:var(--text);
    text-decoration:none;

    border-radius:10px;

    transition:0.3s;
    font-size:18px;
 
}

.menu-btn:hover{
    background:var(--primary);
    color:#000;
    transform:translateX(5px);
       
}

/* ===== CONTEUDO ===== */
.content{
    flex:1;
    padding:30px;
}

/* ===== CARDS ===== */
.card{
    background:var(--bg-card);
    border:1px solid var(--border);
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
}

.card-title{
    color:var(--text-light);
    margin-bottom:10px;
}

.card-value{
    font-size:35px;
    color:var(--primary);
    font-weight:bold;
}

/* ===== TABELAS ===== */
table{
    width:100%;
    border-collapse:collapse;
    background:var(--bg-card);
    border-radius:10px;
    overflow:hidden;
}

table th{
    background:#15182b;
    color:var(--primary);
    padding:15px;
    text-align:left;
}

table td{
    padding:15px;
    border-top:1px solid var(--border);
    color:var(--text);
}

table tr:hover{
    background:var(--bg-hover);
}

/* ===== INPUTS ===== */
input,
select{
    width:100%;
    padding:12px;
    background:#121428;
    border:1px solid var(--border);
    color:#fff;
    border-radius:8px;
    margin-bottom:15px;
}

/* ===== BOTÃO PADRÃO ===== */
.btn{
    background:var(--primary);
    color:#000;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    opacity:0.8;
}

/* ===== TITULOS ===== */
h1,h2,h3{
    margin-bottom:15px;
}

/* ===== RESPONSIVO ===== */
@media(max-width:768px){

    .container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

}

