/*====================================================
                    SERVIÇOS
=====================================================*/


.servicos{

    background:#ffffff;
    padding:50px 0;

}



/*====================================================
                TITULO DA SEÇÃO
=====================================================*/


.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 30px;
}



.section-title span{
    display:inline-block;
    background:#eaf2ff;
    color:#0066ff;
    padding:7px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:20px;
}



.section-title h2{
    color:#111111;
    font-size:38px;
    line-height:1.2;
    font-weight:700;
}



.section-title h2 strong{
    color:#0066ff;
}



.section-title p{
    color:#666666;
    margin-top:20px;
    font-size:16px;
    line-height:1.6;
}



/*====================================================
                GRID DOS CARDS
=====================================================*/


.servicos-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

}





/*====================================================
                    CARD
=====================================================*/


.servico-card{

    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    position:relative;
    min-height:320px;
    display:flex;
    flex-direction:column;
    align-items:center;
}



.servico-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    border-color:#0066ff;
    

}





/*====================================================
                    ICONE
=====================================================*/


.servico-card .icon{

    width:65px;
    height:65px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eaf2ff;
    transition:.3s;

}
.servico-card:hover .icon{
    transform:scale(1.1);
}



.servico-card .icon i{

    font-size:28px;

    color:#0066ff;

}





/*====================================================
                    TEXTO CARD
=====================================================*/


.servico-card h3{

    color:#111111;

    font-size:18px;

    margin-bottom:15px;

    font-weight:700;

}



.servico-card p{

    color:#666666;

    font-size:14px;

    line-height:1.6;

}





/*====================================================
                    RESPONSIVO TABLET
=====================================================*/


@media(max-width:1100px){


    .servicos-grid{

        grid-template-columns:repeat(3,1fr);

    }


}





/*====================================================
                    RESPONSIVO CELULAR
=====================================================*/


@media(max-width:768px){


    .servicos{

        padding:60px 0;

    }



    .section-title h2{
        font-size:32px;
    }



    .servicos-grid{

        grid-template-columns:1fr;
        gap:25px;

    }



    .servico-card{

        padding:30px 25px;

    }


}