@media (max-width: 768px) {
    .tabela-servicos thead {
        display: none;
    }

    .tabela-servicos tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 1rem;
        background-color: #fff;
    }

    .tabela-servicos tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 0;
        border-bottom: 1px solid #eee;
    }

    .tabela-servicos tbody td:last-child {
        border-bottom: none;
    }

    .tabela-servicos tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
    }
}