.servicos{

    padding:90px 0;

    background:#f8fafc;

}

.servicos .titulo-secao{

    margin-bottom:60px;

    text-align:center;

}

.servicos .titulo-secao span{

    color:#0d6efd;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.servicos .titulo-secao h2{

    margin:15px 0;

    font-size:2.3rem;

    color:#1d3557;

}

.servicos .texto-central{

    max-width:750px;

    margin:0 auto;

    color:#666;

    line-height:1.8;

}
.grid-servicos{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}
.card-servico{

    background:#fff;

    border-radius:18px;

    padding:35px 28px;

    display:flex;

    flex-direction:column;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid #0d6efd;

    height:100%;

}

.card-servico:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}
.icone-servico{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}
.card-servico h3{

    margin-bottom:18px;

    color:#1d3557;

    font-size:1.35rem;

}
.card-servico p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

    flex-grow:1;

}
.card-servico ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.card-servico ul li{

    margin-bottom:12px;

    color:#444;

}
.btn-orcamento{

    margin-top:auto;

    border:none;

    background:#0d6efd;

    color:#fff;

    padding:14px;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    font-weight:600;

}

.btn-orcamento:hover{

    background:#0b5ed7;

}
@media(max-width:1100px){

.grid-servicos{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.grid-servicos{

grid-template-columns:1fr;

}

}
