/* ══════════════════════════════════════
   About Section
   ══════════════════════════════════════ */

#sobre-mi { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}
.about-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: var(--white);
    font-weight: 800;
    flex-shrink: 0;
}
.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
}

/* Mobile: avatar arriba, texto abajo */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .about-avatar {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    .about-text {
        padding: 0 1rem;
    }
}
