.pubpriv {
    flex-direction: column;
}

.pubpriv-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* tabela */
.pubpriv-content table {
    width: 600px;
    border-spacing: 0 15px;
    border-collapse: separate;
}

/* thead */
.pubpriv-content table thead tr th { 
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: var(--main-gray);
}

/* tbody */
.pubpriv-content table tbody tr {
    height: 60px;
    background: var(--main-white);
}

/* th */
.pubpriv-content table tbody tr th {
    padding: 0 0 0 74px;
}

.pubpriv-content table tbody tr th,
.pubpriv-content table tbody tr td {
    font-family: 'Open Sans', sans-serif;
    color: var(--main-background);
    font-weight: 800;
    font-size: 20px;
    text-align: start;
}

.pubpriv-content table tbody tr th {
    border-radius: 15px 0 0 5px;
}

/* td */
.pubpriv-content table tbody tr td {
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

.pubpriv-content table tbody tr td:nth-child(3) {
    border-radius: 0 30px 30px 0;
    padding: 0 20px 0 0;
}

.pubpriv-content table tbody tr td i {
    font-size: 30px;
}

.pubpriv-content table tbody tr td span {
    font-size: 10px;
    font-weight: 700px;
}

@media (max-width: 980px) {
    .pubpriv-content {
        flex-direction: column;
        justify-content: center;
    }

    .pubpriv-content table {
        width: 100%;
    }

    .pubpriv-content table thead tr th {
        font-size: 20px;
    }

    .pubpriv-content table tbody tr th {
        padding: 0 0 0 30px;
    }

    .pubpriv-content table tbody tr td {
        padding: 0 20px;
    }

    .pubpriv-content table tbody tr th, .pubpriv-content table tbody tr td {
        font-size: 15px;
    }
}