#contadores .contadores-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
    background: #282828;
    border-radius: 15px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}
#contadores .contadores-content::before,
#contadores .contadores-content::after {
    content: "";
    position: absolute;
    background: transparent;
    width: 50px;
    height: 50px;
    border: 10px solid rgba(218,26,71,1);
    border-radius: 15px 0;
}
#contadores .contadores-content::before {
    border-bottom: none;
    border-right: none;
    left: -2.5px;
    top: -2.5px;
    right: auto;
}
#contadores .contadores-content::after {
    border-top: none;
    border-left: none;
    right: -2.5px;
    bottom: -2.5px;
    left: auto;
}
#contadores .contador-item {
    padding: 30px;
}
#contadores .contador-item:not(:nth-child(4n), :last-child){
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}
#contadores .contador-item:not(.ultima-linha, .unica-linha) {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
#contadores .contagem {
    font-size: 30px;
    font-weight: bold;
}