/*IMPORTS*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

:root {
    --color01: #742bde;
    --color02: #ffffff;
    --color03: #f5f6fb;
    --color04: #a0a5ba;
    --color05: #f3ecfd;
}

body {
    background: var(--color03);
    height: 100vh;
}

#container-main {
    width: 1280px;
    height: 100%;
    margin: auto;
    display: flex;
}

aside {
    left: 0;
    top: 0;
    width: 270px;
    height: 100%;
    font-weight: bold;
}

div#imagem {
    height: 10vh;
    background: var(--color02);
    display: flex;
    align-items: center;
    justify-content: center;
}

div#imagem img {
    width: 70px;
}

div#menu-side {
    height: 100%;
    display: flex;
    justify-content: center;
    background: #ffffffa6;
}

ul li {
    margin-top: 50px;
    cursor: pointer;
}

#button_side {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color01);
    width: 200px;
    height: 50px;
    border-radius: 10px;
    color: white;
}

#button_side span {
    margin-left: 10px;
}

#link-side {
    color: var(--color04);
    display: flex;
    align-items: center;
    margin-left: 20px;
}

#link-side span {
    margin-right: 10px;
    display: flex;
}
#tudo{
    width: 100%;
}
header {
    height: 10vh;
    background-color: var(--color02);
    padding-right: 50px;
    padding-left: 50px;
    display: flex;
    align-items: center;
}

nav {
    width: 100%;
    height: 35%;
    display: flex;
    justify-content: space-between;
}

nav form {
    display: flex;
    width: 350px;
    height: 35px;
    color: var(--color04);
}

#icon-search {
    display: flex;
    align-items: center;
    background: var(--color02);
}

nav form input {
    width: 100%;
    height: 100%;
    border-radius: 0 5px 5px 0;
    padding: 5px;
    border: none;
    outline: none;
}

#user-log {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 175px;
}

#user-log span {
    color: var(--color04);
}

#user-log img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

main {
    padding: 2%;
}

section {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

section div#cada-um {
    width: 23%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color02);
}

section div#cada-um div {
    display: block;
    margin-left: 10px;
}

section div#cada-um span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

section div span#sleep {
    background-color: var(--color05);
    color: #742bde;
}

div#cada-um span#grupo {
    color: #41b6ff;
    background: #effaff;
}

div#cada-um span#carteira {
    color: #ff8b4f;
    background: #fff4ef;
}

div#cada-um span#carro {
    color: #ff4c80;
    background: #ffeef2;
}

section#meio {
    height: 300px;
}

section div#mes {
    width: 73%;
    border-radius: 10px;
    background: var(--color02);
}

section div#genero,
div#cirurgia,
div#paciente-mes {
    width: 23%;
    border-radius: 10px;
    background: var(--color02);
}

div#paciente-mes {
    width: 23%;
    border-radius: 10px;
    background: var(--color01);
}

section div#grafico {
    width: 48%;
    border-radius: 10px;
    background: var(--color02);
}
