 /* Estilos Gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e6e6ff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            border-radius: 2px;
        }
        
        /* Cabeçalho */
        header {
            background: linear-gradient(135deg, rgba(74, 0, 128, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2346008a" fill-opacity="0.3" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,128C960,96,1056,96,1152,117.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom no-repeat;
            background-size: cover;
            color: white;
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L30,122.7C60,117,120,107,180,112C240,117,300,139,360,138.7C420,139,480,117,540,117.3C600,117,660,139,720,149.3C780,160,840,160,900,138.7C960,117,1020,75,1080,69.3C1140,64,1200,96,1260,122.7C1320,149,1380,171,1410,181.3L1440,192L1440,320L1410,320C1380,320,1320,320,1260,320C1200,320,1140,320,1080,320C1020,320,960,320,900,320C840,320,780,320,720,320C660,320,600,320,540,320C480,320,420,320,360,320C300,320,240,320,180,320C120,320,60,320,30,320L0,320Z"></path></svg>') bottom no-repeat;
            background-size: cover;
        }
        
        .header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .avatar {
            width: 180px;
            height: 180px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            border-radius: 50%;
            font-size: 80px;
            color: white;
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
        }
        
        header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #fff, #e6e6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        header p {
            font-size: 1.4rem;
            max-width: 600px;
            margin: 0 auto;
            color: #d8bfd8;
        }
        
        /* Navegação */
        nav {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 15px 0;
        }
        
        nav ul li a {
            display: block;
            color: #e6e6ff;
            text-decoration: none;
            padding: 12px 25px;
            margin: 0 5px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        nav ul li a:hover {
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        /* Seções */
        #sobre {
            background: linear-gradient(to bottom, #16213e 0%, #1a1a2e 100%);
            position: relative;
        }
        
        .sobre-conteudo {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .sobre-texto {
            flex: 2;
        }
        
        .sobre-texto p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        
        .sobre-imagem {
            flex: 1;
            text-align: center;
        }
        
        .sobre-imagem img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }
        
        .sobre-imagem img:hover {
            transform: scale(1.03);
        }
        
        /* Habilidades */
        #habilidades {
            background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
        }
        
        .habilidades-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .habilidade {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .habilidade:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
            background: rgba(138, 43, 226, 0.1);
        }
        
        .habilidade i {
            font-size: 3.5rem;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        
        .habilidade h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #e6e6ff;
        }
        
        .habilidade p {
            color: #d8bfd8;
        }
        
        /* Projetos */
        #projetos {
            background: linear-gradient(to bottom, #16213e 0%, #1a1a2e 100%);
        }
        
        .projetos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .projeto {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .projeto:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
        }
        
        .projeto-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .projeto-img div {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            color: white;
        }
        
        .projeto-info {
            padding: 25px;
        }
        
        .projeto-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #e6e6ff;
        }
        
        .projeto-info p {
            color: #d8bfd8;
            margin-bottom: 20px;
        }
        
        .projeto-btn {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-right: 10px;
        }
        
        .projeto-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        /* Contato */
        #contato {
            background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 100%);
        }
        
        .contato-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .form-contato {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(138, 43, 226, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #e6e6ff;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(138, 43, 226, 0.3);
            border-radius: 10px;
            font-size: 1rem;
            color: #e6e6ff;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8a2be2;
            box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.3);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        button {
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        .info-contato {
            padding: 20px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .info-item i {
            font-size: 1.8rem;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 20px;
            min-width: 40px;
            text-align: center;
        }
        
        .info-item div h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #e6e6ff;
        }
        
        .info-item div p {
            color: #d8bfd8;
        }
        
        /* Rodapé */
        footer {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            color: #d8bfd8;
            text-align: center;
            padding: 50px 0 30px;
            position: relative;
        }
        
        .redes-sociais {
            margin-bottom: 30px;
        }
        
        .redes-sociais a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #8a2be2, #6a5acd);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-size: 1.3rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .redes-sociais a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }
        
        /* Responsividade */
        @media (max-width: 900px) {
            .sobre-conteudo {
                flex-direction: column;
            }
            
            nav ul {
                flex-wrap: wrap;
            }
            
            header h1 {
                font-size: 2.5rem;
            }
            
            header p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 600px) {
            nav ul li a {
                padding: 10px 15px;
                margin: 5px;
                font-size: 0.9rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .avatar {
                width: 150px;
                height: 150px;
                font-size: 60px;
            }
        }
        
        /* Animações */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .avatar {
            animation: float 6s ease-in-out infinite;
        }