/* About Section - Simplificado */
.about-section {
    background-color: var(--bg-white);
}

.about-content {
    display: flex;
    gap: clamp(2rem, 5vw, var(--space-xl));
    align-items: flex-start;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    width: 100%;
    margin: 0 auto;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background-color: var(--accent-color);
    color: white;
    padding: clamp(0.8rem, 2vw, 1rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: clamp(100px, 15vw, 120px);
}

.experience-years {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 0.2rem;
}

.experience-text {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.about-paragraph {
    margin-bottom: var(--space-md);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    text-align: justify;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, var(--space-md));
    margin-top: var(--space-lg);
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-light);
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: var(--radius-md);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 500;
}

.credential i {
    color: var(--primary-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* MOBILE: UN SOLO BREAKPOINT */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -15px;
    }
    
    .about-credentials {
        justify-content: center;
    }
    
    .credential {
        font-size: 0.85rem;
        padding: 0.6rem 0.9rem;
    }
}