    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #f0f0f0;
            --secondary: #EE3233;
            --accent: #373638;
            --dark: #0a0a0a;
            --dark-gray: #1a1a1a;
            --medium-gray: #505050;
            --light-gray: #b0b0b0;
            --text: #f2f2f2;
            --gradient: linear-gradient(135deg, var(--secondary), var(--accent));
        }

        html {
            scroll-behavior: smooth;
            scroll-snap-type: y proximity;
        }

        body {
            font-family: "IBM Plex Mono", monospace;
            font-weight: 300;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated grid background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: -50px;
            width: 110vw;
            height: 100%;
            background-image: 
                linear-gradient(rgba(238, 50, 51, 0.03) 1px, transparent 1px),
                linear-gradient(-90deg, rgba(238, 50, 51, 0.03) 1px, transparent 1px);
            background-size: 5px 5px;
            pointer-events: none;
            z-index: 0;
            animation: gridMove 10s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite;
            filter: blur(1px);
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 15s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 20s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 14s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 16s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 19s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 13s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 17s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 20s; }
        .particle:nth-child(11) { left: 45%; animation-delay: 5s; animation-duration: 12s; }
        .particle:nth-child(12) { left: 65%; animation-delay: 2s; animation-duration: 14s; }
        .particle:nth-child(13) { left: 85%; animation-delay: 4s; animation-duration: 16s; }
        .particle:nth-child(14) { left: 25%; animation-delay: 1s; animation-duration: 12s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% { opacity: 0.5; }
            90% { opacity: 0.5; }
            50% { transform: translateY(50vh) scale(1); }
            100% { 
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        /* Navigation */
        header {
            padding: 10px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 18px;
            color: var(--primary);
            letter-spacing: 2px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo i {
            color: var(--secondary);
            font-size: 20px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--medium-gray);
            color: var(--light-gray);
            font-size: 11px;
            padding: 10px 20px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .menu-toggle:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        /* Sections */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            scroll-snap-align: start;
            padding: 100px 0;
        }

        /* Hero Section */
        .hero {
            padding-top: 120px;
        }

 

        .hero-content {
            display: grid;
            justify-content: center;
            grid-template-columns: 2fr 2fr;
            gap: 10px;
            align-items: center;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-greeting {
            font-size: 14px;
            color: var(--secondary);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hero-greeting::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--secondary);
        }

        .hero-name {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 10px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title {
            font-size: 24px;
            color: var(--light-gray);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .hero-description {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }

        .stat-label {
            font-size: 11px;
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border: 1px solid var(--medium-gray);
            color: var(--text);
            transition: all 0.3s ease;
            font-family: inherit;
            cursor: pointer;
            background: transparent;
        }

        .btn:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(238, 50, 51, 0.2);
        }

        .btn-primary {
            background: var(--secondary);
            border: none;
            color: var(--text);
            font-weight: 600;
        }

        .btn-primary:hover {
            box-shadow: 0 10px 40px rgba(238, 50, 51, 0.4);
        }

        /* Profile Image Area */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-frame {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: var(--gradient);
            padding: 4px;
            position: relative;
            animation: pulse 3s ease-in-out infinite;
        }

        .profile-frame::before {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px dashed var(--medium-gray);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 30px rgba(238, 50, 51, 0.3); }
            50% { box-shadow: 0 0 60px rgba(238, 50, 51, 0.5); }
        }

        .profile-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--dark-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: var(--secondary);
        }

        .profile-inner img {
            position: absolute; 
            top: -30px;left: 20px; 
            width: 225px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-number {
            font-size: 12px;
            color: var(--secondary);
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .about-text p {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.9;
            margin-bottom: 25px;
        }

        .about-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .about-card {
            background: var(--dark-gray);
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .about-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }

        .about-card h4 {
            font-size: 11px;
            color: var(--secondary);
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .about-card p {
            font-size: 14px;
            color: var(--light-gray);
            line-height: 1.6;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .skill-category {
            background: var(--dark-gray);
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--secondary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .skill-category:hover {
            transform: translateY(-5px);
            border-color: rgba(238, 50, 51, 0.3);
        }

        .skill-category:hover::before {
            transform: scaleY(1);
        }

        .skill-category h3 {
            font-size: 14px;
            color: var(--secondary);
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .skill-list {
            list-style: none;
        }

        .skill-list li {
            font-size: 14px;
            color: var(--light-gray);
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .skill-list li:last-child {
            border-bottom: none;
        }

        .skill-list li:hover {
            color: var(--text);
            padding-left: 10px;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: var(--dark-gray);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: rgba(238, 50, 51, 0.3);
        }

        .project-card:hover::before {
            transform: scaleX(1);
        }

        .project-status {
            font-size: 10px;
            color: var(--secondary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .project-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .project-card p {
            font-size: 14px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            font-size: 10px;
            color: var(--light-gray);
            border: 1px solid var(--medium-gray);
            padding: 5px 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .project-card:hover .tag {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        /* Blogs Section */
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        .blog-card {
            background: var(--dark-gray);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            border-color: rgba(238, 50, 51, 0.3);
        }

        .blog-card:hover::before {
            transform: scaleX(1);
        }

        /* Imagem do Blog */
        .blog-image {
            width: 100%;
            height: 125px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.3);
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        /* Conteúdo do Blog */
        .blog-content {
            padding: 5px 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-status {
            font-size: 10px;
            color: var(--secondary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .blog-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
            color: #fff;
        }

        .blog-card p {
            font-size: 12px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 10px;
            flex: 1;
        }

        .blog-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
            margin-left: 10px;
        }

        .tag {
            font-size: 10px;
            color: var(--light-gray);
            border: 1px solid var(--medium-gray);
            padding: 5px 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .blog-card:hover .tag {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .blog-cta {
            margin-top: auto;
        }

        .blog-cta .btn {
            width: 100%;
            justify-content: center;
        }

        /* Contact Section */
        #contact {
            min-height: auto;
            padding-bottom: 60px;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            font-size: 15px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--light-gray);
            transition: all 0.3s ease;
            padding: 20px;
        }

        .contact-link:hover {
            color: var(--secondary);
            transform: translateY(-5px);
        }

        .contact-link i {
            font-size: 28px;
        }

        .contact-link span {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .email-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .email-form input {
            flex: 1;
            padding: 14px 20px;
            background: transparent;
            border: 1px solid var(--medium-gray);
            color: var(--text);
            font-family: inherit;
            font-size: 13px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .email-form input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 20px rgba(238, 50, 51, 0.2);
        }

        .email-form button {
            padding: 14px 30px;
            background: var(--secondary);
            color: var(--text);
            border: none;
            font-family: inherit;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .email-form button:hover {
            box-shadow: 0 10px 30px rgba(238, 50, 51, 0.3);
            transform: translateY(-2px);
        }

        /* Footer - FIXED */
        footer {
            background: var(--dark-gray);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-content p {
            font-size: 12px;
            color: var(--medium-gray);
        }

        .footer-socials {
            display: flex;
            gap: 20px;
        }

        .footer-socials a {
            color: var(--medium-gray);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--medium-gray);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 20px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .about-grid {  
                margin: 0px auto;
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-visual {
                order: -1;
            }

            .profile-frame {
                width: 250px;
                height: 250px;
            }

            .skills-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark);
                padding: 20px;
                flex-direction: column;
                gap: 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .hero-name {
                font-size: 36px;
            }

            .hero-title {
                font-size: 18px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-cta {
                flex-direction: column;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .about-cards {
                grid-template-columns: 1fr;
            }

            .contact-links {
                flex-wrap: wrap;
            }

            .email-form {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .container {
                padding: 0 20px;
            }

            section {
                padding: 80px 0;
            }
        }
