.largo{
}

.inicio{
    background-color: rgb(238, 238, 238);
    border-bottom: 2px black solid;
    color: white;
}
.primaria{
    font-family: primaria;
}

@font-face {
    font-family: primaria;
    src: url('Alkatra-VariableFont_wght.ttf');
}

hr{
    background-color: rgb(26, 146, 146);
}

.grid-funcionarios{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    text-align: center;

}

.negrito{
    font-weight: bold;
}

.reset{
    padding: 0;
    margin: 0;
}

.numero{
    font-size: 28px;
}

.quadrados{
    text-align: center;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: black;
    margin: 1em;
    
}

.nav{
    display: inline-block;
}

.nav div{
    border-right: white 1px solid;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}
.nav div:hover{
    background-color: white;
    color: black;
}

.grid2{
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em;
}

.tabelinha {
    font-family: primaria;
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

.tabelinha th{
    color: white;
}

.tabelinha td,
.tabelinha th {
    border: 1px solid #ddd;
    padding: 8px;
}

.tabelinha tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tabelinha tr:hover {
    background-color: #ddd;
}

.tabelinha th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #04AA6D;
}