
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.04) 0%, transparent 50%),
                conic-gradient(from 45deg, rgba(102, 126, 234, 0.02) 25%, rgba(118, 75, 162, 0.02) 25%, rgba(66, 153, 225, 0.02) 50%, rgba(102, 126, 234, 0.02) 50%, rgba(118, 75, 162, 0.02) 75%, rgba(66, 153, 225, 0.02) 75%, rgba(102, 126, 234, 0.02) 100%);
            background-repeat: repeat;
            background-size: 300px 300px;
        }
        /* Formas decorativas com ondas */
        .shape {
            position: fixed;
            z-index: -1;
            opacity: 0.5;
        }
        .wave-1 {
            top: 15%;
            right: 10%;
            width: 200px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
            animation: float 8s infinite ease-in-out;
        }
        .wave-2 {
            bottom: 25%;
            left: 5%;
            width: 150px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(66, 153, 225, 0.06), rgba(102, 126, 234, 0.06));
            animation: float 10s infinite ease-in-out reverse;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        .nav-links a:hover {
            opacity: 0.8;
        }
        /* Carrossel Hero */
        .hero-carousel {
            position: relative;
            height: 60vh;
            overflow: hidden;
        }
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        .carousel-slide.active {
            opacity: 1;
        }
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(102, 126, 234, 0.7), rgba(118, 75, 162, 0.7));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
        }
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        .indicator.active {
            background: white;
        }
        .section-title {
            text-align: center;
            margin: 4rem 0 3rem;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        .projects-section {
            padding: 2rem 0;
        }
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .filter-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            background: #fff;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        .filter-btn.active,
        .filter-btn:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .project-info {
            padding: 1.5rem;
        }
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .tag {
            background: #f0f0f0;
            padding: 0.2rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            color: #555;
        }
        .project-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        .btn-demo {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .btn-demo:hover {
            transform: scale(1.05);
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        /* Menu Mobile */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            z-index: 9999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        
        .mobile-menu a:hover {
            opacity: 0.8;
        }
        
        .mobile-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
                padding: 0 1rem;
            }
            
            .hero p {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .hero-carousel {
                height: 50vh;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .about-container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            
            .about-image img {
                width: 200px;
                height: 200px;
            }
            
            .about-content h2 {
                font-size: 2rem;
            }
            
            .filter-buttons {
                gap: 0.5rem;
                padding: 0 1rem;
            }
            
            .filter-btn {
                padding: 0.4rem 1rem;
                font-size: 0.9rem;
            }
            
            .project-card {
                margin: 0 1rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin: 2rem 0 2rem;
            }
            
            .projects-section {
                padding: 1rem 0;
            }
            
            .about-section {
                padding: 2rem 0;
            }
            
            footer {
                padding: 2rem 0;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .hero-carousel {
                height: 40vh;
            }
            
            .about-content h2 {
                font-size: 1.5rem;
            }
            
            .about-content p {
                font-size: 1rem;
            }
            
            .project-card {
                margin: 0 0.5rem;
            }
            
            .project-info {
                padding: 1rem;
            }
            
            .project-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .btn-demo,
            .btn-code {
                text-align: center;
                justify-content: center;
            }
        }
        /* Sessão Sobre Mim */
        .about-section {
            padding: 4rem 0;
            background-color: white;
        }
        .about-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .about-image {
            flex: 1;
            text-align: center;
        }
        .about-image img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #f0f0f0;
        }
        .about-content {
            flex: 2;
        }
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #333;
        }
        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .skills {
            margin-top: 2rem;
        }
        .skills h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .skill-bars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .skill-bar {
            margin-bottom: 1rem;
        }
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .skill-progress {
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 5px;
        }
        .skill-progress-bar {
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 5px;
        }
        .experience {
            margin-top: 2rem;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, #667eea, #764ba2);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-dot {
            position: absolute;
            left: -35px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .timeline-date {
            font-weight: bold;
            color: #667eea;
            margin-bottom: 0.5rem;
        }
        .timeline-company {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .timeline-description {
            line-height: 1.6;
        }
        
        /* Nova Sessão de Serviços Remotos */
        .services-section {
            padding: 4rem 0;
            background-color: #f8f9fa;
        }
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }
        .service-card p {
            color: #666;
            line-height: 1.6;
        }
        .windows-logo {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #0078D6;
        }
        
        /* Estilos WhatsApp */
        .whatsapp-highlight {
            position: relative;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 15px;
            color: white;
            margin-top: 1rem;
        }
        
        .whatsapp-highlight i {
            color: white;
            font-size: 1.5rem;
        }
        
        .whatsapp-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .whatsapp-contact-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Botão Flutuante WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }
        
        .whatsapp-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Responsividade para WhatsApp */
         @media (max-width: 768px) {
             .whatsapp-float {
                 bottom: 15px;
                 right: 15px;
             }
             
             .whatsapp-float-btn {
                 width: 50px;
                 height: 50px;
                 font-size: 1.5rem;
             }
             
             .whatsapp-highlight {
                 padding: 1rem;
             }
             
             .whatsapp-contact-btn {
                 padding: 0.6rem 1.2rem;
                 font-size: 0.9rem;
             }
         }
         
         /* Badge Em Desenvolvimento */
         .development-badge {
             display: inline-flex;
             align-items: center;
             gap: 0.5rem;
             background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
             color: white;
             padding: 0.6rem 1.2rem;
             border-radius: 20px;
             font-size: 0.9rem;
             font-weight: 500;
             text-transform: uppercase;
             letter-spacing: 0.5px;
             box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
             cursor: default;
         }
         
         .development-badge i {
             font-size: 1rem;
         }
         
         @media (max-width: 768px) {
             .development-badge {
                 padding: 0.5rem 1rem;
                 font-size: 0.8rem;
             }
         }
    