/* About Section - Versión simplificada con mejor contraste */
.about-content-simple {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.profile-section {
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 30px rgba(179, 136, 255, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(179, 136, 255, 0.5);
}

.about-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(179, 136, 255, 0.4);
}

.about-desc {
    color: #e0d0f0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: rgba(179, 136, 255, 0.15);
    border: 1px solid rgba(179, 136, 255, 0.4);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #d4b3ff;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 0 10px rgba(179, 136, 255, 0.2);
}

.skill-tag:hover {
    background: rgba(179, 136, 255, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(179, 136, 255, 0.4);
    color: #fff;
}

/* Studios Section con mejor iluminación */
.studios-section {
    padding: 5rem 0;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 30px rgba(179, 136, 255, 0.5);
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

.studio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(179, 136, 255, 0.05);
    border: 1px solid rgba(179, 136, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.studio-item:hover {
    background: rgba(179, 136, 255, 0.12);
    border-color: rgba(179, 136, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(179, 136, 255, 0.3);
}

.studio-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(179, 136, 255, 0.3));
    transition: all 0.3s ease;
}

.studio-item:hover img {
    filter: drop-shadow(0 0 20px rgba(179, 136, 255, 0.6));
    transform: scale(1.1);
}

.studio-item p {
    color: #f0e0ff;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Social Section con mejor visibilidad */
.social-section {
    padding: 4rem 0;
}

.social-links-main {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(179, 136, 255, 0.12);
    border: 2px solid rgba(179, 136, 255, 0.35);
    border-radius: 12px;
    color: #f0e0ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(179, 136, 255, 0.2);
}

.social-btn:hover {
    background: rgba(179, 136, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(179, 136, 255, 0.4);
    color: #fff;
}

.social-btn svg,
.social-btn i {
    width: 24px;
    height: 24px;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(179, 136, 255, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
    .about-content-simple {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .profile-img {
        max-width: 200px;
    }

    .skills-tags {
        justify-content: center;
    }

    .studios-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .studio-item {
        padding: 1.2rem;
    }

    .studio-item img {
        width: 60px;
        height: 60px;
    }

    .studio-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .studio-item img {
        width: 55px;
        height: 55px;
    }

    .social-links-main {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }
}
