header{background:#140d21cc;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);color:#fff;padding:1rem 0;position:fixed;top:0;left:0;right:0;z-index:1000;border-bottom:1px solid var(--border);transition:all .3s ease}header.scrolled{background:#140d21f2;box-shadow:0 4px 20px #0000004d}.header-content{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;gap:2rem}.header-logo{font-size:1.25rem;font-weight:600;color:var(--text);text-decoration:none;letter-spacing:-.02em;transition:color .3s ease}.header-logo:hover{color:var(--secondary)}.profile-info{display:none}nav{display:flex;align-items:center;gap:0}nav ul{padding:0;list-style:none;display:flex;gap:2rem;align-items:center}nav ul li a{color:var(--text-muted);text-decoration:none;font-weight:400;font-size:.9rem;position:relative;padding:.5rem 0;transition:color .3s ease;letter-spacing:.01em}nav ul li a:after{content:"";position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--secondary);transition:width .3s ease}nav ul li a:hover{color:var(--text)}nav ul li a:hover:after{width:100%}.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem;color:var(--text);font-size:1.5rem;z-index:1001}.menu-toggle svg{width:24px;height:24px}@media (max-width: 768px){.header-content{padding:0 1.5rem}.menu-toggle{display:block}nav{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:var(--surface);padding:5rem 2rem 2rem;transition:right .3s ease;z-index:999;border-left:1px solid var(--border)}nav.active{right:0}nav ul{flex-direction:column;gap:0;align-items:flex-start}nav ul li{width:100%}nav ul li a{display:block;padding:1rem 0;font-size:1rem;border-bottom:1px solid var(--border);width:100%}nav ul li a:after{display:none}}.sobre-content{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;margin-top:2rem}.sobre-text{font-size:1.1rem;line-height:1.8}.sobre-text p{margin-bottom:1.5rem;color:var(--text)}.sobre-text strong{color:var(--text);font-weight:600}.sobre-illustration{display:flex;justify-content:center;align-items:center}.sobre-illustration svg{width:100%;max-width:500px;height:auto;filter:drop-shadow(0 20px 40px rgba(99,102,241,.2))}@media (max-width: 968px){.sobre-content{grid-template-columns:1fr;gap:3rem}.sobre-illustration{order:-1}.sobre-illustration svg{max-width:400px}}@media (max-width: 768px){.sobre-content{gap:2rem}}.skills-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:2rem}.skill-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem;transition:all .3s ease;position:relative;overflow:hidden}.skill-card:hover{transform:translateY(-4px);border-color:var(--secondary);background:var(--surface-hover)}.skill-icon{width:48px;height:48px;margin-bottom:1.5rem;position:relative;color:var(--secondary)}.skill-icon svg{width:100%;height:100%;transition:transform .3s ease}.skill-card:hover .skill-icon svg{transform:scale(1.1)}.skill-card h3{font-size:1.25rem;color:var(--text);margin-bottom:1.5rem;font-weight:600}.skill-tags{display:flex;flex-wrap:wrap;gap:.6rem;position:relative}.skill-tag{background:#6366f11a;color:var(--secondary);padding:.4rem .9rem;border-radius:6px;font-size:.85rem;transition:all .3s;font-weight:500;border:1px solid rgba(99,102,241,.2)}.skill-tag:hover{background:#6366f133;border-color:var(--secondary);transform:translateY(-2px)}@media (max-width: 768px){.skills-container{grid-template-columns:1fr}}.projetos-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;perspective:1000px}.projeto{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem;transition:all .3s ease;position:relative;overflow:hidden;display:flex;flex-direction:column;gap:1rem;cursor:pointer}.projeto:hover{transform:translateY(-4px);border-color:var(--secondary);background:var(--surface-hover)}.projeto-icon{width:40px;height:40px;margin-bottom:.5rem;color:var(--secondary);transition:transform .3s ease;position:relative;z-index:1}.projeto-icon svg{width:100%;height:100%}.projeto:hover .projeto-icon{transform:scale(1.1) rotate(-5deg)}.projeto h3{color:var(--text);margin:0;font-size:1.25rem;font-weight:600;position:relative;z-index:1}.projeto-desc{color:var(--text-muted);line-height:1.7;margin:0;position:relative;z-index:1;font-size:.95rem}.projeto-tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:auto;position:relative;z-index:1}.projeto-tag{font-size:.75rem;padding:.3rem .7rem;border-radius:6px;background:#6366f11a;color:var(--secondary);font-weight:500;border:1px solid rgba(99,102,241,.2)}.projeto-links{display:flex;gap:1rem;flex-wrap:wrap;position:relative;z-index:1}.projeto-link{display:inline-flex;align-items:center;gap:.5rem;color:var(--text-muted);text-decoration:none;font-weight:500;font-size:.9rem;transition:all .3s}.projeto-link:hover{color:var(--secondary);gap:.7rem}.projeto-link svg{width:16px;height:16px;transition:transform .3s}.projeto-link:hover svg{transform:translate(3px)}.github-link{color:var(--text);opacity:.7}.loading-container{display:flex;justify-content:center;align-items:center;min-height:300px;padding:3rem}.loading-spinner{text-align:center}.spinner{width:50px;height:50px;border:4px solid rgba(9,132,227,.1);border-top-color:var(--secondary);border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 1rem}@keyframes spin{to{transform:rotate(360deg)}}.loading-spinner p{color:var(--secondary);font-size:1.1rem;font-weight:500;margin-top:1rem}@media (max-width: 768px){.projetos-grid{grid-template-columns:1fr}.projeto-links{flex-direction:column}}.experiencia-lista{max-height:800px;overflow-y:auto;padding-right:20px;scrollbar-width:thin;scrollbar-color:var(--secondary) transparent}.experiencia-lista::-webkit-scrollbar{width:8px}.experiencia-lista::-webkit-scrollbar-track{background:transparent}.experiencia-lista::-webkit-scrollbar-thumb{background-color:var(--secondary);border-radius:20px;border:2px solid transparent}.experiencia-item{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:2rem;transition:all .3s ease;margin-bottom:1.5rem}.experiencia-item:hover{border-color:var(--secondary);background:var(--surface-hover);transform:translate(4px)}.experiencia-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem}.experiencia-title h3{margin:0;color:var(--text);font-size:1.25rem;font-weight:600}.empresa{color:var(--text-muted);font-size:.9rem;font-weight:400}.experiencia-periodo{display:flex;align-items:center;gap:.5rem;color:var(--gray);font-size:.9rem}.calendar-icon{width:18px;height:18px;color:var(--secondary)}.experiencia-content{color:var(--text-muted);line-height:1.7}.experiencia-content p{margin-bottom:1rem}.experiencia-tags{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1rem}.exp-tag{background:#6366f11a;color:var(--secondary);padding:.4rem .9rem;border-radius:6px;font-size:.75rem;font-weight:500;border:1px solid rgba(99,102,241,.2)}.formacao-title{margin:3rem 0 1.5rem;color:var(--text);font-size:1.5rem;font-weight:600;position:relative;padding-left:0;display:flex;align-items:center;gap:.5rem}.formacao-title:before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:24px;background:linear-gradient(to bottom,var(--secondary),var(--accent));border-radius:2px}.formacao .experiencia-header{border-left:3px solid var(--accent);padding-left:15px}.formacao .calendar-icon{color:var(--accent)}@media (max-width: 768px){.experiencia-header{flex-direction:column;gap:1rem}.experiencia-periodo{margin-top:.5rem}.experiencia-lista{max-height:600px;padding-right:10px}.formacao-title{font-size:1.5rem}}.contato-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}.contato-illustration{display:flex;justify-content:center;align-items:center}.contato-illustration svg{width:100%;max-width:400px;height:auto}.contact-form-wrapper{flex:1}.contato-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:2rem}.contato-item{display:flex;align-items:center;gap:1rem;padding:1rem;border-radius:8px;background:var(--surface);border:1px solid var(--border);transition:all .3s}.contato-item:hover{background:var(--surface-hover);border-color:var(--secondary);transform:translate(4px)}.contato-icon{width:24px;height:24px;color:var(--secondary);display:flex;align-items:center;justify-content:center}.contato-icon svg{width:100%;height:100%}.contato-item a{color:var(--text-muted);text-decoration:none;font-weight:500}.contato-item:hover a{color:var(--text)}.contact-form{display:grid;gap:1.5rem;max-width:600px;margin:2rem auto}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{font-weight:500;color:var(--text);font-size:.9rem}.form-group input,.form-group textarea{padding:.9rem;background:var(--surface);border:1px solid var(--border);border-radius:8px;font-family:Inter,sans-serif;color:var(--text);transition:all .3s}.form-group input::-moz-placeholder,.form-group textarea::-moz-placeholder{color:var(--text-muted)}.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-muted)}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--secondary);background:var(--surface-hover);box-shadow:0 0 0 3px #6366f11a}.form-group textarea{min-height:150px;resize:vertical}.submit-btn{background:var(--secondary);color:#fff;border:none;padding:1rem 2rem;border-radius:8px;font-weight:500;cursor:pointer;transition:all .3s;letter-spacing:.5px}.submit-btn:hover:not(:disabled){background:var(--accent);transform:translateY(-2px);box-shadow:0 8px 20px #6366f166}.submit-btn:active:not(:disabled){transform:translateY(0)}.submit-btn:disabled{opacity:.5;cursor:not-allowed}@media (max-width: 768px){.contato-wrapper{grid-template-columns:1fr}.contato-illustration{order:-1}.contato-illustration svg{max-width:300px}}footer{background:var(--primary);color:var(--text);padding:3rem 0 2rem;margin-top:8rem;position:relative}.footer-wave{position:absolute;top:-1px;left:0;width:100%;height:120px;overflow:hidden;z-index:1}.footer-wave svg{width:100%;height:100%;display:block}.footer-content{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;justify-content:space-between;align-items:center;position:relative;z-index:2}.footer-copyright{color:var(--text-muted);font-size:.9rem;margin:0}.footer-social{display:flex;gap:1.5rem}.social-link{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);text-decoration:none;transition:all .3s ease;border-radius:8px}.social-link:hover{color:var(--text);background:#ffffff0d;transform:translateY(-2px)}.social-link svg{width:20px;height:20px}@media (max-width: 768px){footer{padding:2rem 0 1.5rem}.footer-content{flex-direction:column;gap:1.5rem;text-align:center}.footer-copyright{order:2}.footer-social{order:1}}:root{--primary: #140d21;--secondary: #6366f1;--accent: #8b5cf6;--text: #e5e7eb;--text-muted: #9ca3af;--background: #0f0a1a;--surface: #1a1625;--surface-hover: #252030;--gray: #6b7280;--border: rgba(255, 255, 255, .1)}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:Inter,sans-serif;margin:0;padding:0;background:var(--background);color:var(--text);line-height:1.7;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body:before{content:"";position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(circle at 20% 30%,rgba(99,102,241,.15) 0%,transparent 50%),radial-gradient(circle at 80% 70%,rgba(139,92,246,.1) 0%,transparent 50%);animation:backgroundShift 20s ease infinite;z-index:-1;pointer-events:none}@keyframes backgroundShift{0%,to{transform:translate(0) scale(1);opacity:1}50%{transform:translate(20px,-20px) scale(1.05);opacity:.8}}main{max-width:1200px;margin:0 auto;padding:0 2rem;padding-top:80px}section{margin-bottom:6rem;padding:0;background:transparent;border:none;box-shadow:none}section h2{font-size:2rem;font-weight:600;color:var(--text);margin-bottom:3rem;position:relative;display:inline-block;letter-spacing:-.03em}section h2:after{content:"";position:absolute;bottom:-8px;left:0;width:40px;height:2px;background:linear-gradient(90deg,var(--secondary),var(--accent));border-radius:2px}@keyframes underlineExpand{0%{width:0}to{width:80px}}@keyframes titleFade{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes profileFade{0%{opacity:0;transform:translate(-20px)}to{opacity:1;transform:translate(0)}}@keyframes float{0%,to{transform:translateY(0) rotate(0)}50%{transform:translateY(-20px) rotate(5deg)}}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.8;transform:scale(1.05)}}@keyframes shimmer{0%{background-position:-1000px 0}to{background-position:1000px 0}}::-webkit-scrollbar{width:12px}::-webkit-scrollbar-track{background:var(--surface);border-radius:10px}::-webkit-scrollbar-thumb{background:var(--secondary);border-radius:10px;border:2px solid var(--surface)}::-webkit-scrollbar-thumb:hover{background:var(--accent)}@media (max-width: 768px){main{padding:2rem 1rem}section{padding:1.5rem}section h2{font-size:1.5rem}}
