
        :root {
            --primary-color: #512bd4;
            --secondary-color: #2b0b3a;
            --accent-color: #00b4d8;
            --text-color: #ffffff;
            --background-gradient: linear-gradient(45deg, var(--secondary-color), #000000);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Orbitron', 'Segoe UI', sans-serif;
        }

        body {
            background: var(--background-gradient);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 111111200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header */
        .hero {
            text-align: center;
            padding: 8rem 1rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            margin-bottom: 4rem;
            position: relative;
        }

        .profile-img {
            width: 230px;
            height: 200px;
            border-radius: 50%;
            border: 4px solid var(--text-color);
            margin-bottom: 1.5rem;
            box-shadow: 0 0 20px rgba(0, 180, 216, 0.4);
            transition: transform 0.3s ease;
        }

        .profile-img:hover {
            transform: scale(1.05);
        }

        /* Seções Gerais */
        section {
            margin: 4rem 0;
            padding: 2rem 0;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--accent-color);
        }

        /* Sobre */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid var(--primary-color);
        }

        .skill-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        /* Projetos */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .project-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .tech-stack {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin: 1rem 0;
        }

        .tech-badge {
            background: rgba(81, 43, 212, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid var(--primary-color);
        }

        .project-features {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
            list-style: none;
        }

        .project-features li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .project-features li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        .project-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        /* Contato */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        input, textarea {
            width: 100%;
            padding: 1rem;
            margin: 0.5rem 0;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 5px;
            color: white;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            border: none;
            cursor: pointer;
        }

        .github-btn {
            background: #333;
            color: var(--text-color);
            border: 1px solid #555;
        }

        .github-btn:hover {
            background: #4078c0;
        }

        /* Animação 
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }*/

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Educação */
        .education {
            position: relative;
            padding: 4rem 0;
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            width: 2px;
            height: 100%;
            background: var(--accent-color);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 4rem;
        }

        .timeline-icon {
            position: absolute;
            left: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(81,43,212,0.3);
        }

        .timeline-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .timeline-content {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .timeline-date {
            color: var(--accent-color);
            font-weight: 500;
            margin: 0.5rem 0;
        }

        .institution {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .hero {
                padding: 4rem 1rem;
            }

            .profile-img {
                width: 150px;
                height: 150px;
            }

            .project-grid, .skills-container {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 3rem;
            }

            .timeline-icon {
                width: 40px;
                height: 40px;
            }
        }