.setores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.setores-grid-second {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 800px;
}

.setores-grid > div, .setores-grid-second > div{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}
.setores {
    margin-bottom: 50px;
    margin-top: 100px;
}
.figura {
    background-color: #A25641;
    border-radius: 20px;
    position: relative;
    bottom: 90px;
    padding: 40px;
}
.figura img{
    height: 112px;
    width: 112px;
}
.setores-grid h4, .setores-grid-second h4 {
    color: #363636;
    font-weight: 600;
    font-size: 1.39rem;
    position: relative;
    bottom: 50px;
}

.setores-grid a, .setores-grid-second a {
    border: 1px solid #5E5E5E;
    border-radius: 25px;
    padding: 10px 20px;
    color: #363636;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    position: relative;
    bottom: 40px;
    transition: .3s;
}

.setores-grid a:hover, .setores-grid-second a:hover {
    background-color: #A25641;
    color: #fff;
    box-shadow: 0px 0px 10px #A25641;
    border: 1px solid #A25641;
}

.setores h3  {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    color: #363636;
    padding-left: 10px;
    padding-right: 10px;
}

.setores > p  {
    text-align: center;
    color: #363636;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

.setores h3:after  {
    content: url(/img/point.svg);
}


@media only screen and (min-width:446px) and (max-width:870px) {
    .setores-grid, .setores-grid-second {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width:445px) {
    .setores-grid, .setores-grid-second {
        grid-template-columns: 1fr;
    }
}