/* Estilos específicos para página del equipo */
        .page-header {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.1) 0%, 
                rgba(139, 92, 246, 0.15) 25%,
                rgba(168, 85, 247, 0.1) 50%,
                rgba(236, 72, 153, 0.05) 75%,
                rgba(34, 197, 94, 0.08) 100%
            );
            padding: 140px 0 100px;
            text-align: center;
            position: relative;
            overflow: visible;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-10px) rotate(1deg); }
            66% { transform: translateY(5px) rotate(-1deg); }
        }

        .breadcrumbs {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease 0.2s forwards;
        }
        
        .breadcrumbs a {
            color: #6366f1;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .breadcrumbs a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transition: width 0.3s ease;
        }

        .breadcrumbs a:hover::after {
            width: 100%;
        }
        
        .breadcrumbs .separator {
            margin: 0 0.5rem;
            color: var(--text-light);
        }

        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, 
                #6366f1 0%, 
                #8b5cf6 25%, 
                #a855f7 50%, 
                #ec4899 75%, 
                #f59e0b 100%
            );
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.4s forwards, gradientShift 4s ease-in-out infinite;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .page-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(25px);
            animation: fadeInUp 0.8s ease 0.6s forwards;
            font-weight: 400;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 10%;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
            z-index: 1;
        }
        
        .team-metrics {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease 0.8s forwards;
        }
        
        .metric-item {
            text-align: center;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            background: var(--white);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .metric-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--dark-primary), var(--secondary-color));
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .metric-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .metric-item:hover::before {
            transform: translateX(0);
        }

        .metric-item::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .metric-item:hover::after {
            width: 120px;
            height: 120px;
        }
        
        .metric-item i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            display: block;
        }
        
        .metric-number {
            display: block;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        
        .metric-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.75px;
            font-weight: 600;
        }
        
        /* CEO Section */
        .ceo-section {
            padding: 4rem 0;
        }
        
        .ceo-card {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
            background: var(--background-dark);
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 2rem;
        }
        
        .ceo-image {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            height: 400px;
        }
        
        .ceo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ceo-card:hover .ceo-image img {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(224, 123, 223, 0.8), rgba(147, 235, 189, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .ceo-card:hover .image-overlay,
        .team-member-card:hover .image-overlay {
            opacity: 1;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: var(--container-background);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.25rem;
            border: 1px solid var(--background-dark);
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: var(--primary-color);
            color: white;
        }
        
        .position-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .position-badge.founder {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }
        
        .member-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .member-title {
            font-size: 1.125rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .member-description p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .specialties h4,
        .achievements h4 {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .specialty-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .specialty-tag {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .achievements {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .achievement-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .achievement-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            width: 30px;
        }
        
        .achievement-text strong {
            display: block;
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .achievement-text span {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }
        
        /* Fundadores y Equipo */
        .founders-section,
        .team-section {
            padding: 4rem 0;
        }
        
        .founders-section {
            background: var(--background);
        }
        
        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .team-member-card {
            background: var(--background-dark);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .team-member-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .member-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-member-card:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 1.5rem;
        }
        
        .team-member-card .member-name {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }
        
        .team-member-card .member-title {
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .team-member-card .member-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .skills {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        
        .skill-tag {
            background: var(--container-background);
            color: var(--text-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .contact-member {
            margin-top: 1rem;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(224, 123, 223, 0.3);
        }
        
        /* Valores del Equipo */
        .team-values {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(224, 123, 223, 0.03), rgba(147, 235, 189, 0.03));
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .value-item {
            background: var(--background-dark);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }
        
        .value-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        .value-item p {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Únete al Equipo */
        .join-team {
            padding: 4rem 0;
            background: var(--background);
            color: var(--text-primary);
            text-align: center;
            border: 1px solid var(--background-dark);
        }
        
        .join-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .join-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .join-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .join-buttons .btn {
            min-width: 200px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .team-metrics,
            .join-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            
            .ceo-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .ceo-image {
                height: 300px;
                order: -1;
            }
            
            .founders-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .achievements {
                align-items: center;
            }
            
            .achievement-item {
                justify-content: center;
                text-align: center;
            }
            
            .member-image {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 120px 0 80px;
            }

            .page-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .page-description {
                font-size: 1.125rem;
                max-width: 90%;
                margin-bottom: 2rem;
            }

            .team-metrics {
                flex-direction: column;
                gap: 2rem;
                margin-top: 2rem;
            }

            .metric-item {
                padding: 1.25rem 1.5rem;
                margin: 0 1rem;
            }

            .metric-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 100px 0 60px;
            }

            .page-title {
                font-size: 2rem;
            }

            .page-description {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .team-metrics {
                gap: 1.5rem;
            }

            .metric-item {
                margin: 0 0.5rem;
                padding: 1rem;
            }

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

            .metric-label {
                font-size: 0.75rem;
            }
            
            .member-name {
                font-size: 1.5rem;
            }
            
            .ceo-card {
                padding: 1rem;
            }
            
            .join-content h2 {
                font-size: 2rem;
            }
        }