
:root {
    --bg-color: #0d1117;          
    --card-bg: rgba(255, 255, 255, 0.03); 
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #8b949e;
    --accent-blue: #2D89C8;        
    --accent-green: #9DCD5A;    
    --glass-effect: blur(12px) saturate(180%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; 
}

a, button, .project-card, .contact-link {
    cursor: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}


.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-blue);
    opacity: 0.5;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}


body.hovering .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(45, 137, 200, 0.1);
    border-color: var(--accent-green);
}


header {
    padding: 20px 0;
    backdrop-filter: var(--glass-effect);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
}


.status-container {
    display: flex;
    justify-content: center;
    margin-bottom: 12px; 
}

.status-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff73;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 115, 0.5);
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}


.hero h1 {
    margin-top: 0; 
    font-size: 4rem;
    line-height: 1; 
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn.primary {
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn.primary:hover {
    transform: scale(1.05);
    background: var(--accent-blue);
    color: #fff;
}

.projects-section {
    padding: 60px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.05);
}

.project-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.about-section {
    margin: 100px 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 30px;
}

.stack span {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 8px;
    margin: 5px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.contact-section {
    text-align: center;
    padding: 100px 0;
}

.contact-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-green);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.contact-link:hover {
    border-bottom-color: var(--accent-green);
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid var(--border-color);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    body { cursor: auto; } 
    .cursor-dot, .cursor-outline { display: none; }
}




.toolbox-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.toolbox-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(157, 205, 90, 0.15) 0%, rgba(45, 137, 200, 0.15) 50%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.tool-icon-img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain; 
}



.tool-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-item:hover {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.05);
}



.process-section {
    padding: 100px 0;
    background-color: #050505; 
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; 
    text-align: center;
}

.status-badge-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

.status-text-mini {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}


.magic-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 60px;
    color: #fff;
}

.italic-gradient {
    font-family: serif; 
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, #9d64f8, #f4328b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.process-card {
    background: rgba(15, 15, 15, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05); 
    display: block;
    margin-bottom: 10px;
}

.process-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.process-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}



    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}




html {
    scroll-behavior: smooth;
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.lang-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(13, 17, 23, 0.8); 
    backdrop-filter: blur(12px);
    border: 2px solid #9DCD5A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(157, 205, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: none; 
}

.lang-fab:hover {
    transform: scale(1.15) rotate(10deg);
    border-color: #2D89C8; 
    box-shadow: 0 0 20px rgba(45, 137, 200, 0.4);
}


.lang-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(13, 17, 23, 0.8); 
    backdrop-filter: blur(12px);
    border: 2px solid #9DCD5A; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(157, 205, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: none; 
}

.lang-fab:hover {
    transform: scale(1.15) rotate(10deg);
    border-color: #2D89C8; 
    box-shadow: 0 0 20px rgba(45, 137, 200, 0.4);
}






body {
    background-color: #050505; /* Fundo base preto */
    /* Degradê inspirado no "Process & Tools" (Roxo e Rosa) */
    background-image: 
        radial-gradient(circle at 50% -20%, rgba(157, 100, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(244, 50, 139, 0.08) 0%, transparent 40%),
        /* Mantendo o Grid que você gosta */
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    background-attachment: fixed; /* O fundo não mexe ao rolar o site */
    color: #fff;
    min-height: 100vh;
}
