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

    :root {
        /* Dark Theme */
        --bg-dark: #000000;
        --bg-darker: #0a0a0a;
        --bg-card: #111111;
        --bg-card-hover: #1a1a1a;
        
        /* Accent Colors */
        --accent-blue: #0a84ff;
        --accent-purple: #bf5af2;
        --accent-cyan: #5ac8fa;
        
        /* Text Colors */
        --text-primary: #ffffff;
        --text-secondary: #a1a1a6;
        --text-muted: #6e6e73;
        
        /* Borders */
        --border-dark: rgba(255, 255, 255, 0.06);
        --border-light: rgba(255, 255, 255, 0.12);
        
        /* Shadows */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
        --shadow-glow: 0 0 40px rgba(10, 132, 255, 0.3);
        
        --transition: cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
        background: var(--bg-dark);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 52px;
        background: rgba(10, 10, 10, 0.8);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-bottom: 1px solid var(--border-dark);
        z-index: 9999;
    }

    .nav-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        letter-spacing: -0.02em;
    }

    .nav-menu {
        display: flex;
        gap: 32px;
        list-style: none;
    }

    .nav-menu a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color 0.3s var(--transition);
        letter-spacing: -0.01em;
    }

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

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 100px 24px 60px;
        background: radial-gradient(circle at 50% 0%, rgba(10, 132, 255, 0.08) 0%, transparent 50%);
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 50%, rgba(191, 90, 242, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(90, 200, 250, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }

    .hero-badge {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(10, 132, 255, 0.15);
        border: 1px solid rgba(10, 132, 255, 0.3);
        color: var(--accent-blue);
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 24px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .hero h1 {
        font-size: clamp(56px, 8vw, 120px);
        font-weight: 800;
        line-height: 0.95;
        letter-spacing: -0.03em;
        margin-bottom: 20px;
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .hero-description {
        font-size: clamp(17px, 2vw, 21px);
        color: var(--text-muted);
        max-width: 720px;
        margin: 0 auto 40px;
        line-height: 1.5;
        text-align: justify; /* ou "center", dependendo do estilo da seção */
        text-justify: inter-word; /* melhora a distribuição das palavras */
        letter-spacing: 0.1px; /* melhora a leitura em telas grandes */
        padding: 0 1rem; /* respiro lateral em telas menores */
    }


    .hero-cta {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 14px 28px;
        border-radius: 100px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        letter-spacing: -0.01em;
    }

    

    .btn-primary {
        background: var(--accent-blue);
        color: var(--bg-dark);
        box-shadow: var(--shadow-glow);
    }

    .btn-primary:hover {
        background: #3a9aff;
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(10, 132, 255, 0.5);
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1.5px solid var(--border-light);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--accent-blue);
    }

    /* Section */
    section {
        padding: 120px 24px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .section-header {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 100px;
    }

    .section-label {
        font-size: 13px;
        color: var(--accent-blue);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(44px, 6vw, 72px);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }

    .section-description {
        font-size: clamp(17px, 2vw, 21px);
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Grid */
    .grid {
        display: grid;
        gap: 24px;
    }

    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
    
    .icon-top {
        display: inline-block;
        font-size: 3rem;
        color: #333;
        }

        .icon-top i {
            transition: color 0.3s ease;
        }

        .icon-top i:hover {
            color: #6e5494; /* GitHub purple */
        }

    /* Card */
    .card {
        background: var(--bg-card);
        border: 1px solid var(--border-dark);
        border-radius: 24px;
        padding: 48px;
        transition: all 0.4s var(--transition);
        position: relative;
        overflow: hidden;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
        opacity: 0;
        transition: opacity 0.3s;
    }

    .card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-light);
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .card:hover::before {
        opacity: 1;
    }

    .card-icon {
        font-size: 64px;
        display: block;
        margin-bottom: 24px;
        line-height: 1;
        filter: grayscale(0.3);
    }

    .card-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .card-text {
        font-size: 17px;
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Stats */
    .stats {
        background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
        border: 1px solid var(--border-dark);
        border-radius: 32px;
        padding: 80px 48px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 48px;
        text-align: center;
        box-shadow: var(--shadow-md);
    }

    .stat-number {
        font-size: 64px;
        font-weight: 900;
        display: block;
        margin-bottom: 12px;
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.03em;
    }

    .stat-label {
        font-size: 16px;
        color: var(--text-secondary);
        font-weight: 500;
    }

    /* Timeline */
    .timeline {
        position: relative;
        padding-left: 80px;
        margin-top: 40px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--accent-blue), transparent);
    }

    .timeline-item {
        margin-bottom: 80px;
        position: relative;
    }

    .timeline-marker {
        position: absolute;
        left: -64px;
        top: 12px;
        width: 20px;
        height: 20px;
        background: var(--accent-blue);
        border-radius: 50%;
        border: 4px solid var(--bg-dark);
        box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.2);
    }

    .timeline-date {
        font-size: 13px;
        color: var(--accent-blue);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
    }

    .timeline-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -0.02em;
    }

    .timeline-subtitle {
        font-size: 20px;
        color: var(--text-secondary);
        margin-bottom: 16px;
        font-weight: 600;
    }

    .timeline-text {
        font-size: 17px;
        color: var(--text-secondary);
        line-height: 1.7;
    }

    /* Skills */
    .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 60px;
    }

    .skill-card {
        background: var(--bg-card);
        border: 1px solid var(--border-dark);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.3s var(--transition);
    }

    .skill-card:hover {
        border-color: var(--border-light);
        background: var(--bg-card-hover);
    }

    .skill-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 28px;
        color: var(--text-primary);
        letter-spacing: -0.01em;
    }

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

    .skill-item {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-dark);
        font-size: 16px;
        color: var(--text-secondary);
        transition: color 0.2s;
    }

    .skill-item:hover {
        color: var(--text-primary);
    }

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

    /* Container dos Projects */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .project-card:hover {
        border-color: var(--border-light);
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .project-image {
        height: 200px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 64px;
        position: relative;
        overflow: hidden;
    }

    .project-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    }

    .project-content {
        padding: 24px;
    }

    .project-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .project-description {
        font-size: 15px;
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.6;
    }

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

    .tag {
        padding: 8px 16px;
        background: rgba(10, 132, 255, 0.15);
        border: 1px solid rgba(10, 132, 255, 0.3);
        color: var(--accent-blue);
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }

    /* Testimonials */
    .testimonial-card {
        background: var(--bg-card);
        border: 1px solid var(--border-dark);
        border-radius: 24px;
        padding: 48px;
        position: relative;
        transition: all 0.3s var(--transition);
    }

    .testimonial-card:hover {
        border-color: var(--border-light);
        background: var(--bg-card-hover);
    }

    .testimonial-quote {
        font-size: 56px;
        color: var(--accent-blue);
        opacity: 0.2;
        line-height: 1;
        margin-bottom: 24px;
        font-family: Georgia, serif;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 32px;
        color: var(--text-secondary);
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-top: 24px;
        border-top: 1px solid var(--border-dark);
    }

    .author-avatar {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bg-dark);
        font-weight: 700;
        font-size: 22px;
        flex-shrink: 0;
    }

    .author-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 4px;
    }

    .author-title {
        font-size: 15px;
        color: var(--text-muted);
    }

    /* Contact */
    .contact-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .contact-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 36px;
        background: var(--bg-card);
        border: 1px solid var(--border-dark);
        border-radius: 100px;
        text-decoration: none;
        color: var(--text-primary);
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s var(--transition);
    }

    .contact-link:hover {
        transform: translateY(-4px);
        border-color: var(--accent-blue);
        box-shadow: 0 0 30px rgba(10, 132, 255, 0.3);
    }

    .contact-icon {
        font-size: 24px;
    }

    /* Footer */
    footer {
        background: var(--bg-darker);
        border-top: 1px solid var(--border-dark);
        padding: 80px 24px 48px;
        text-align: center;
    }

    footer h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    footer p {
        color: var(--text-muted);
        font-size: 15px;
        margin-top: 24px;
    }

    /* Parallax */
    .parallax-feature {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
        border-top: 1px solid var(--border-dark);
        border-bottom: 1px solid var(--border-dark);
        text-align: center;
        position: relative;
        overflow: hidden;
        margin: 120px 0;
    }

    .parallax-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 0 24px;
    }

    .parallax-title {
        font-size: clamp(48px, 7vw, 88px);
        font-weight: 900;
        margin-bottom: 28px;
        line-height: 1.05;
        letter-spacing: -0.03em;
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-muted) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .parallax-subtitle {
        font-size: clamp(20px, 3vw, 28px);
        color: var(--text-secondary);
        line-height: 1.5;
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.3s var(--transition);
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.15) translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
        animation: none;
    }

    .whatsapp-float i {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }


    /* Responsive */
    @media (max-width: 768px) {
        nav {
            height: 56px;
        }

        .nav-menu {
            display: none;
        }

        section {
            padding: 80px 24px;
        }

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

        .timeline {
            padding-left: 48px;
        }

        .timeline-marker {
            left: -46px;
        }

        .stats {
            padding: 60px 24px;
            gap: 32px;
        }

        .card {
            padding: 32px;
        }

        .project-content {
            padding: 32px;
        }

        .testimonial-card {
            padding: 32px;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        animation: fadeInUp 0.8s var(--transition) forwards;
        opacity: 0;
    }

    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    html {
        scroll-behavior: smooth;
    }

    ::selection {
        background: var(--accent-blue);
        color: var(--bg-dark);
    }

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-dark);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--border-light);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-blue);
    }

        
    .container-do-nome {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .name {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0;
    padding: 0.5rem 1rem;
    white-space: nowrap; /* Evita quebra de linha */
    overflow: visible; /* Garante que nada seja cortado */
    width: fit-content; /* Ajusta ao conteúdo */
    max-width: 100%; /* Responsivo */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

    /* Animação fade-in suave */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .delay-2 {
        animation-delay: 0.4s;
    }

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

    /* Efeito hover (opcional) */
    .name:hover {
        transform: scale(1.05);
        color: #6e5494; /* ou sua cor preferida */
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Responsividade para telas pequenas */
    @media (max-width: 768px) {
        .name {
            font-size: clamp(1.5rem, 8vw, 3rem);
            white-space: normal; /* Permite quebra em telas muito pequenas */
            text-align: center;
        }
    }