.method h5,
.method button {
    font-size: 16px;
}

.method h5{
    color: var(--color-text-escuro);
    margin: 10px 0 5px;
}

.method .card {
    background-color: #F8F9FA;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.method .card:hover {
    background-color: var(--color-primary);
    color: #F8F9FA
}

.method .card:hover p, .method .card:hover button, .method .card:hover h5{
    color: #F8F9FA;
}

.method .card p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.method .card a.animation:hover i {
    transition: 500ms all ease;
    transform: translateX(10px);

}

.method img {
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}

.method h4 {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 48px;
}

@media (max-width: 768px) {
    .method h4 {
        width: 100%;
    }
}