.servicos {
    font-family: 'Roboto', sans-serif;
    width: 90%;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f1f4fb;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.servicos__lista {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    table-layout: fixed;
}

.servicos__th {
    background-color: #003bfc;
    color: white;
    padding: 0.75rem;
    text-align: center;
    font-weight: 500;
}

.servicos__lista__li {
    padding: 0.75rem;
    border-bottom: 1px solid #ddd;
}

.servicos__lista__input {
    width: 100%;
    padding: 0.5rem;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-salvar-servicos {
    background-color: #003bfc;
    color: white;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-salvar-servicos:hover {
    background-color: #002bb5;
}

/* Responsivo */
@media (max-width: 768px) {
    .servicos__lista__input {
        font-size: 14px;
    }

    .btn-salvar-servicos {
        width: 100%;
    }
}