.list-services {
    position: relative;
}

.list-services h2 {
    margin-bottom: 40px;
}

.list-services .itens-services {
    position: relative;
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.list-services .itens-services .item-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 35px;
    border-radius: 50%;
    border: 4px solid #097268;
    width: 230px;
    height: 230px;
    gap: 20px;
    transition: all 0.8s;
}

.list-services .itens-services .item-services h3 {
    font-size: 20px;
    color: #097268;
    margin: 0;
    
    text-align: center;
    padding: 0 10px;
}

.list-services .itens-services .item-services .icon-vet {
    width: 100%;
    max-width: 40px;
}

.list-services .itens-services .item-services .icon-service {
    width: 100%;
    max-width: 65px;
}

.list-services .itens-services .item-services:hover {
    border-color: #00383F;
    box-shadow: 0px 0px 20px 1px rgba(0, 56, 63, 0.75);
}

.btn-default-light {
    background-color: #F3EEE8;
    color: #048A6C;
    border: 2px solid #F3EEE8;
    padding: 8px 40px;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 1s;
}

.btn-default-light:hover {
    background-color: #097268;
    color: #F3EEE8;
    border: 2px solid #F3EEE8;
}