@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.quantitativoConteudo {
    width: 650px;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin-bottom: 150px;
    margin-right: 350px;
}

/* Removido position: absolute e substituído por alinhamento central */
.quantitativo__titulo {
    font-size: 25px;
    color: rgb(16, 33, 227);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin-bottom: 20px;
}


.quantitativoConteudo__head th {
    background-color: #ccc;
    padding: 10px;
    border: 1px solid #999;
    font-weight: 500;
}

.quantitativoConteudo td {
    padding: 8px;
    border: 1px solid #ccc;
}

.quantitativoConteudo tr:nth-child(even) {
    background-color: #f9f9f9;
}

.quantitativoConteudo tr:hover {
    background-color: #f1f1f1;
}



/* Responsividade */
@media screen and (max-width: 768px) {
    .quantitativo__titulo {
        font-size: 22px;
    }

    .quantitativoConteudo {
        padding: 15px;
    }
}

@media screen and (max-width: 500px) {
    .quantitativo__titulo {
        font-size: 20px;
    }

    .quantitativoConteudo {
        width: 95%;
        padding: 10px;
    }
}
