@media(max-width:768px){
    *{
        box-sizing: border-box;
    }

    .area{
        max-width: 1200px;
        margin: 0 auto;
    }

    .cards{
        flex-direction: column;
        align-items: center;
    }
    .card-dark, .card{
        width: 100%;
        max-width: 650px;
    }

    .conteudoCards{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }

    .card-dark, .card{
        flex-direction:column;
        text-align:center;
        padding:35px;
    }

    .card-dark h2, .card h2{
        font-size:30px;
    }

    .coluna{
        width: 100%;
    }

    .cabecalho{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .circulo{
        width: 80px;
        height: 80px;
    }

    .circulo img{
        width: 40px;
    }

    .servicos{
        display: grid;
        flex-direction: column;
        gap: 8px;
        margin-top: 30px;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        padding: 0 10px;
        overflow: hidden;
        word-wrap: break-word;
    }

    .servico{
        width: 100%;
        padding: 12px 8px;
        border-radius: 16px;
        background: #f5f5f5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .servico img{
        width: 26px;
        height: 26px;
        margin-bottom: 8px;
    }

    .servico h3{
        font-size: 12px;
        line-height: 1.3;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .servico ul{
        display: none;
        padding: 0;
        margin: 10px 0 0 0;
    }

    /* .servico li{
        font-size: 14px;
        line-height: 1.7;
    } */

    .coluna{
        margin-top: 40px;
    }

    .coluna p{
        margin: 0 auto 30px;
        text-align: center;
    }

}

/* @media(max-width:480px){
    .servicos{
        grid-template-columns: repeat(2, 1fr);
    }
} */