/* ============================================
   About Section Styles
   ============================================ */

.about {
    padding: 5rem 0;
    background: var(--bg-gray-900);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature-text {
    color: var(--text-gray-300);
    font-size: 1rem;
    line-height: 1.5;
}

.about-philosophy {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-gray-800);
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray-700);
}

.about-philosophy-text {
    color: var(--text-gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.about-philosophy-text strong {
    color: var(--text-white);
}

.about-profile {
    text-align: center;
}

.about-profile-card {
    background: var(--bg-gray-800);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-gray-700);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.about-profile-avatar {
    width: 8rem;
    height: 8rem;
    background: var(--primary-yellow);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #000;
}

.about-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.about-profile-location {
    color: var(--text-gray-400);
    margin-bottom: 1rem;
}

.about-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.about-profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-profile-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.25rem;
}

.about-profile-stat-label {
    color: var(--text-gray-400);
    font-size: 0.875rem;
}

/* Animaciones */
.about-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-profile {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .about-title {
        font-size: 1.875rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-profile-card {
        padding: 1.5rem;
    }
    
    .about-profile-avatar {
        width: 6rem;
        height: 6rem;
        font-size: 3rem;
    }
    
    .about-profile-stat-value {
        font-size: 1.5rem;
    }
}
