/* ===== RESET Y CONFIGURACIÓN BASE ===== */
.pagina2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d2d2d;
    background-color: #ffffff;
}

/* ===== ESTADÍSTICAS ===== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
    border-radius: 24px;
    padding: 50px 30px 40px 30px;
    box-shadow: 0 8px 32px rgba(44, 122, 123, 0.10);
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo */
.stats-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 122, 123, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-container::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 122, 123, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px 15px 20px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 122, 123, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.stat-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    stroke: #2c7a7b;
    filter: drop-shadow(0 2px 4px rgba(44, 122, 123, 0.15));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3b5d;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a3b5d;
    margin: 0 0 12px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.stat-description {
    font-size: 0.85rem;
    color: #4a5a6e;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== ABOUT US ===== */
.about-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 10px 0;
}

.about-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #2c7a7b;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: #e8f4f8;
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(44, 122, 123, 0.15);
}

.about-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a3b5d;
    margin: 0 0 25px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 1.05rem;
    color: #4a5a6e;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

.pagina2 .about-img{
    border-radius: 50%;    
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
        padding: 35px 25px 30px 25px;
    }
    
    .stat-description {
        max-width: 100%;
    }

    .stat-item {
        padding: 20px 12px 15px 12px;
    }
}

@media (max-width: 600px) {
    .pagina2 {
        padding: 30px 16px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 25px 15px 20px 15px;
        border-radius: 18px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .stat-icon svg {
        width: 36px;
        height: 36px;
    }

    .stat-item {
        padding: 15px 8px 12px 8px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.95rem;
        padding: 0 5px;
    }
}

@media (max-width: 420px) {
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 18px 10px 15px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-description {
        font-size: 0.65rem;
        line-height: 1.3;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .stat-item {
        padding: 12px 6px 10px 6px;
        border-radius: 14px;
    }

    .about-title {
        font-size: 1.4rem;
    }

    .about-tag {
        font-size: 0.65rem;
        padding: 5px 16px;
    }
}