/* ===== GRID DOS CONTADORES ===== */
.counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

/* ===== CARD ===== */
.counter-card {
    background: #008bb3;
    color: #ffffff;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.counter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.counter-card.active {
    outline: 3px solid #2f80ed;
}


/* LADO ESQUERDO */
.counter-left {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ÍCONE */
.counter-icon {
    font-size: 30px;
    opacity: 0.9;
}

/* CORES */
.counter-expired { background: #d9534f; }
.counter-today   { background: #f0ad4e; }
.counter-3days   { background: #f7c948; color: #222; }
.counter-7days   { background: #5cb85c; }

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

@media (max-width: 600px) {
    .counters {
        grid-template-columns: 1fr;
    }
}