@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

        :root {
            --bg-pink: #f0fdf4; 
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-pink);
            color: #333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
          /* CONTAINER DE PARTÍCULAS  */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1; /* Fica atrás de tudo */
            background-color: var(--bg-pink);
        }

        /* LOGO COM EFEITO PISCANDo */
        .neon-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 450px; 
            aspect-ratio: 1/1;
        }

        .neon-image {
            width: 80%;
            max-width: 350px; 
            z-index: 5;
            filter: drop-shadow(0 0 8px #ff00ff)
                    drop-shadow(0 0 15px #ff00ff)
                    drop-shadow(0 0 30px #ff00ff)
                    drop-shadow(0 0 50px #00ffff);
            animation: flicker-infinite 5s linear infinite,
                       hum 2s infinite alternate ease-in-out;
        }

        @keyframes flicker-infinite {
            0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { 
                opacity: 1; 
                filter: drop-shadow(0 0 8px #ff00ff) drop-shadow(0 0 15px #ff00ff) drop-shadow(0 0 30px #ff00ff) drop-shadow(0 0 50px #00ffff);
            }
            20%, 21.999%, 63%, 63.999%, 65%, 69.999% { 
                opacity: 0.4; 
                filter: drop-shadow(0 0 2px #ff00ff);
            }
        }
        @keyframes hum {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        /* ANIMAÇÃO DE ESCRITA NO NOME - ACELERADA */
        .typing-effect {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: .05em;
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); 
            animation: typing 4s ease-out forwards;
            max-width: fit-content;
        }

        @keyframes typing {from { width: 0 }
 to { width: 100% }
        }

        /* EFEITO DE SURGIMENTO DO SUBTÍTULO */
        .fade-in-up {
            animation: fadeInUp 1.2s ease-out 1.0s both;
        }

        /* ANIMAÇÃO PARA OS ÍCONES SUBIREM PARA A POSIÇÃO */
        .fade-in-up-icons {
            animation: fadeInUp 1s ease-out 1.9s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CARROSSEL ESTILO NETFLIX */
        .netflix-row {
            display: flex;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .netflix-row::-webkit-scrollbar { display: none; }

        .project-card {
            min-width: 260px;
            height: 380px;
            margin-right: 20px;
            background-color: #333;
            border-radius: 20px;
            position: relative;
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        @media (hover: hover) {
            .project-card:hover { transform: scale(1.05); z-index: 10; }
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.95));
            opacity: 1; 
            transition: opacity 0.3s;
        }
        
        @media (min-width: 768px) {
            .project-overlay { opacity: 0; }
            .project-card:hover .project-overlay { opacity: 1; }
        }

        .section-title {
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-transform: uppercase;
            color: fuchsia-600;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        @media (min-width: 768px) {
            .section-title { font-size: 3rem; }
        }

        /* ESTILO DO MODAL DE SUCESSO */
        #success-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            z-index: 100;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }