/* ===================== NÚMEROS DESTACADOS ===================== */
.numeros-destacados {
    width: 100%;
    padding: 60px 10%;
    background-color: #0A7672; /* Color de la paleta de tu web */
    display: flex;
    justify-content: center;
}

.container-numeros {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.numero-cuadro {
    background-color: #ffffff; /* Cuadro blanco */
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    flex: 1 1 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.numero-cuadro:hover {
    transform: translateY(-5px);
}

.numero {
    font-size: 36px;
    font-weight: 700;
    color: #0A7672;
    margin-bottom: 10px;
}

.descripcion {
    font-size: 16px;
    color: #333;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .container-numeros {
        flex-direction: column;
        align-items: center;
    }

    .numero-cuadro {
        width: 80%;
        margin-bottom: 20px;
    }
}
