.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-hero-image {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MISSION SECTION */
.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 4rem;
    border-top: 2px solid var(--neon-magenta);
    border-bottom: 2px solid var(--neon-magenta);
    padding: 3rem 0;
}

.mission-content {
    order: 2;
}

.mission-image {
    order: 1;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    border: 3px solid var(--neon-magenta);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.4);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.value-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 0, 255, 0.1));
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* TIMELINE SECTION */
.timeline-section {
    margin-bottom: 4rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 2px solid var(--neon-magenta);
    padding-bottom: 1rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 2rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--neon-cyan);
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
    z-index: 10;
}

.timeline-content {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.1);
}

.timeline-content:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
    transform: translateY(-3px);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TEAM SECTION */
.team-section {
    margin-bottom: 4rem;
}

.team-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 2px solid var(--neon-cyan);
    padding-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.team-member:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-5px);
}

.team-member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--neon-magenta);
}

.team-member-info {
    padding: 1.5rem;
}

.team-member-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-role {
    color: var(--neon-magenta);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--neon-magenta);
    border-radius: 4px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.2);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* STATS SECTION */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 0, 255, 0.1));
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-section {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

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

    .stats-section {
        padding: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-section {
        padding: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-image {
        height: 300px;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .mission-image {
        order: 1;
    }

    .mission-content {
        order: 2;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        padding-left: 1.5rem;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 2rem;
    }
}