/* ===== QUIÉNES SOMOS MODERNO ===== */
.about-section {
    padding: 120px 20px;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s, box-shadow 0.5s;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 25px;
    text-shadow: 0 0 12px #00d4ff55;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #ccc;
}

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.value {
    text-align: center;
    flex: 1 1 180px;
    background: #111;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.value:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.value .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0047ff);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s;
}

.value .icon img {
    width: 45px;
    height: 45px;
}

.value:hover .icon {
    transform: scale(1.1);
}

.value h4 {
    font-size: 20px;
    color: #00d4ff;
    margin-bottom: 8px;
    font-weight: 600;
}

.value p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .about-values {
        justify-content: center;
    }

    .about-image img {
        width: 80%;
    }
}
