 .nosotros-hero {
            min-height: 60vh;
            background: linear-gradient(135deg, #092c02 0%, #1c4d09 50%, #092c02 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .nosotros-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shoe-pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10,25 Q15,20 25,25 Q35,30 40,25 Q45,20 50,25" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23shoe-pattern)"/></svg>') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .nosotros-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .nosotros-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .nosotros-hero p {
            font-size: 1.3rem;
            margin-bottom: 0;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .story-section {
            background: white;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .story-text {
            padding: 2rem 0;
        }

        .story-text h3 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .story-text h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-light), var(--primary-dark));
            border-radius: 2px;
        }

        .story-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }

        .story-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .story-image:hover {
            transform: perspective(1000px) rotateY(0deg) scale(1.02);
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .values-section {
            background: linear-gradient(135deg, var(--secondary-light) 0%, #f0f0f0 100%);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(45deg, var(--primary-light), var(--primary-dark));
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--primary-light);
            margin-bottom: 1.5rem;
            display: block;
        }

        .value-card h4 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--secondary-color);
            line-height: 1.6;
        }

        .team-section {
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .team-photo {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .team-photo::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-photo::after {
            transform: translateX(100%);
        }

        .team-info {
            padding: 2rem;
        }

        .team-info h4 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--primary-light);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-info p {
            color: var(--secondary-color);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .stats-section {
            background: linear-gradient(135deg, #1a3a0e 0%, #2d5a1c 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>') center/cover;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-light);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-section {
            background: white;
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h3 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nosotros-hero h1 {
                font-size: 2.2rem;
            }

            .nosotros-hero p {
                font-size: 1.1rem;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .story-image {
                transform: none;
            }

            .story-image:hover {
                transform: scale(1.02);
            }

            .story-text h3 {
                font-size: 1.6rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .nosotros-hero {
                min-height: 50vh;
            }

            .nosotros-hero h1 {
                font-size: 1.8rem;
            }

            .story-text h3 {
                font-size: 1.4rem;
            }

            .value-card {
                padding: 2rem 1.5rem;
            }

            .cta-content h3 {
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }