 /* Estilos específicos para a página Sobre Nós */
        .timeline-section .timeline-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .timeline-section .timeline-item.animate-on-scroll {
            opacity: 1;
            transform: translateY(0);
        }
        
        .founders-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .founder-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .founder-image {
            height: 300px;
            overflow: hidden;
        }
        
        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .founder-card:hover .founder-image img {
            transform: scale(1.05);
        }
        
        .founder-content {
            padding: 30px;
        }
        
        .founder-content h3 {
            color: var(--primary-blue);
            margin-bottom: 5px;
            font-size: 1.6rem;
        }
        
        .founder-role {
            color: var(--secondary-orange);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .founder-quote {
            font-style: italic;
            color: var(--medium-gray);
            border-left: 3px solid var(--secondary-orange);
            padding-left: 15px;
            margin: 20px 0;
        }
        
        .founder-details {
            margin-top: 20px;
        }
        
        .founder-details p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        
        .founder-details i {
            color: var(--secondary-orange);
            margin-right: 10px;
            min-width: 20px;
            margin-top: 3px;
        }
        
        .stats-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5276 100%);
            color: var(--white);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-orange);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        @media (max-width: 768px) {
            .founder-image {
                height: 250px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }