/* CONTADORES */
.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.counter-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: #273c75;
}

.counter-box p {
    margin-top: 10px;
    font-size: 1rem;
}
