
    .stats-section {
        padding: 8px 0;
        background-color: #f8f9fa;
        position: relative;
    }
    
    .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .stat-item {
        text-align: center;
        margin: 20px;
        width: 200px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .stat-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .circle-progress {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    
    .circle-bg {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 10;
    }
    
    .circle-progress-bar {
        fill: none;
        stroke: #1a3e72; /* Azul H&L */
        stroke-width: 10;
        stroke-linecap: round;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
        stroke-dasharray: 440;
        stroke-dashoffset: 440;
        transition: stroke-dashoffset 2s ease-out;
    }
    
    .circle-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 30px;
        font-weight: bold;
        color: #1a3e72; /* Azul H&L */
    }
    
    .circle-text span {
        font-size: 30px;
        font-weight: bold;
    }
    
    .stat-item h3 {
        font-size: 18px;
        color: #333;
        margin-top: 10px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
            align-items: center;
        }
        
        .stat-item {
            margin: 30px 0;
        }
    }




/* --- Footer exclusivo para Quiénes Somos --- */
.quienes-footer {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.15);
}

.quienes-footer .footer-left p {
    font-size: 16px;
    font-weight: bold;
}

.quienes-footer .footer-right p {
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
}

/* Animación de entrada */
.quienes-footer.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.quienes-footer.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
