.dpc-acessos{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
    font-family:Arial, Helvetica, sans-serif;
}

.dpc-acessos *{
    box-sizing:border-box;
}

.dpc-acessos h2{
    margin:0 0 30px;
    text-align:center;
    color:#1351b4;
    font-size:2rem;
    font-weight:700;
}

.dpc-acessos .grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dpc-acessos .card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    min-height:190px;

    padding:30px 20px;

    background:#fff;
    border:1px solid #dfe3e8;
    border-radius:12px;

    text-decoration:none;
    color:#003366;

    transition:all .25s ease;
}

.dpc-acessos .card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    border-color:#1351b4;
}

.dpc-acessos .card img{
    width:70px;
    height:70px;
    margin-bottom:18px;
}

.dpc-acessos .card span{
    font-size:16px;
    font-weight:600;
    line-height:1.5;
}

@media (max-width:992px){

.dpc-acessos .grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:576px){

.dpc-acessos .grid{
    grid-template-columns:1fr;
}

}