/* styles.css */
.hero-gradient {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.3;
}

.category-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #6a11cb;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6a11cb;
}

.btn-explore {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
}

.btn-explore:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0078d7;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-card {
    border-left: 4px solid #28a745;
    background-color: #f8f9fa;
}

/* Classes extras */
.bg-purple { background-color: #6f42c1 !important; }
.text-purple { color: #6f42c1 !important; }

        .contact-card {
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            height: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #6a11cb;
        }
        
        .contact-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #6a11cb;
        }
        
        .btn-contact {
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-whatsapp {
            background: #25D366;
            color: white;
            border: none;
        }
        
        .btn-whatsapp:hover {
            background: #128C7E;
            color: white;
        }
        
        .btn-telegram {
            background: #0088cc;
            color: white;
            border: none;
        }
        
        .btn-telegram:hover {
            background: #006699;
            color: white;
        }
        
        .btn-youtube {
            background: #FF0000;
            color: white;
            border: none;
        }
        
        .btn-youtube:hover {
            background: #CC0000;
            color: white;
        }
        
        .btn-linkedin {
            background: #0077B5;
            color: white;
            border: none;
        }
        
        .btn-linkedin:hover {
            background: #005582;
            color: white;
        }
        
        .btn-facebook {
            background: #1877F2;
            color: white;
            border: none;
        }
        
        .btn-facebook:hover {
            background: #0D5DB8;
            color: white;
        }
        
        .btn-instagram {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
            border: none;
        }
        
        .btn-instagram:hover {
            color: white;
            opacity: 0.9;
        }
        
        .btn-github {
            background: #333333;
            color: white;
            border: none;
        }
        
        .btn-github:hover {
            background: #24292e;
            color: white;
        }
        
        .btn-lattes {
            background: #2E7D32;
            color: white;
            border: none;
        }
        
        .btn-lattes:hover {
            background: #1B5E20;
            color: white;
        }
        
        .contact-badge {
            font-size: 0.8rem;
            padding: 0.25rem 0.75rem;
        }
        
        .profile-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #6a11cb;
        }

         :root {
            --lang-python: #3776AB;
            --lang-javascript: #F7DF1E;
            --lang-java: #007396;
            --lang-typescript: #3178C6;
            --lang-go: #00ADD8;
            --lang-rust: #DEA584;
            --lang-kotlin: #7F52FF;
            --lang-swift: #FA7343;
            --lang-csharp: #239120;
            --lang-php: #777BB4;
                --lang-cpp: #00599C;
    --lang-ruby: #CC342D;
    --lang-sql: #336791;
    --lang-dart: #0175C2;
        }
        
        .code-font {
            font-family: 'Fira Code', monospace;
        }
        
        .lang-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .lang-gradient::before {
            content: '{ }';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Fira Code', monospace;
            font-size: 40vw;
            opacity: 0.05;
            pointer-events: none;
            z-index: 0;
        }
        
        .lang-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .lang-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--lang-color);
            z-index: 2;
        }
        
        .lang-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .lang-header {
            padding: 25px 25px 15px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .lang-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
            opacity: 0.9;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }
        
        .innovation-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--lang-color);
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 2px;
        }
        
        .cool-factor {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            border-left: 4px solid var(--lang-color);
        }
        
        .trend-meter {
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            margin: 10px 0;
            overflow: hidden;
        }
        
        .trend-fill {
            height: 100%;
            border-radius: 4px;
            background: var(--lang-color);
        }
        
        .code-snippet {
            background: #282c34;
            color: #abb2bf;
            border-radius: 8px;
            padding: 15px;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            overflow-x: auto;
            margin: 15px 0;
        }
        
        .keyword { color: #c678dd; }
        .function { color: #61afef; }
        .string { color: #98c379; }
        .comment { color: #5c6370; }
        .number { color: #d19a66; }
        
        .language-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        @media (max-width: 768px) {
            .language-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Estilos para Tabela Ordenável */
.sortable {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
    position: relative;
    padding-right: 30px !important;
}

.sortable:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.sortable i {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.sortable:hover i {
    opacity: 1;
}

.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Indicador visual de ordenação ativa */
.sortable.active {
    background-color: rgba(0, 123, 255, 0.15);
    font-weight: 600;
}

/* Responsividade adicional para a tabela */
@media (max-width: 768px) {
    .comparison-table {
        padding: 15px !important;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .sortable i {
        display: none;
    }
}
          :root {
            --windows-blue: #0078d7;
            --windows-dark: #1e1e1e;
            --windows-light: #f3f3f3;
        }
        
        .windows-gradient {
            background: linear-gradient(135deg, #0078d7 0%, #1e1e1e 100%);
            color: white;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, #0078d7, #1e1e1e);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            border-left: 4px solid var(--windows-blue);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            border-right: 4px solid var(--windows-blue);
        }
        
        .windows-version-badge {
            background: var(--windows-blue);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .screenshot-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            margin: 15px 0;
            border: 1px solid #ddd;
        }
        
        .screenshot-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .screenshot-container:hover img {
            transform: scale(1.02);
        }
        
        .evolution-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .evolution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,120,215,0.1);
        }
        
        .stats-box {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
        }