/* services */
    .containerServices{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
        flex-wrap: wrap;
        gap: 20px;
    }

    .contentService{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .contentService:first-child{
        background: linear-gradient(to bottom, var(--white), var(--purple));
        border: 1px solid var(--purple);
        align-items: flex-start;
        padding: 20px 32px;
    }         
    
    .contentService:first-child span{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .contentService:first-child span, .contentService:first-child span i{
        font-size: 16px;
        color: var(--black);
    }

    .contentService:first-child i{
        margin: 0;
    }
        
    .contentService:first-child h2{
        font-weight: bold;
        font-size: 20px;
        margin: 0;
        text-align: left;
    }

    .box_img_service{
        width: 100%;
        height: 170px;
        border: 1px solid var(--purple);
        padding: 8px;
    }
    
    .box_img_service img{
        width: 100%; height: 100%;
        object-fit: cover;
    }

    .contentService h2{
        text-align:  center;
        font-weight: 600;
        font-size: 20px;
    }

    .contentService p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: justify;
        margin: 8px auto;
    }

    

    /*.contentService:hover:not(.contentService:first-child){*/
    /*    background: linear-gradient(to top, var(--white), var(--purple), var(--purple));*/
    /*    border: 1px solid var(--purple);*/
    /*}*/

    /*.contentService:hover i:not(.contentService:first-child i),*/
    /*.contentService:hover h2:not(.contentService:first-child h2),*/
    /*.contentService:hover p:not(.contentService:first-child p) {*/
    /*    color: var(--white);*/
    /*}*/
/* services */