
          :root {
    --bg: #0a0a0f;
    --surface: #111118;
    --border: #1e1e2e;
    --accent: #7fff6e;
    --text: #e8e8f0;
    --muted: #6b6b80;
    --card: #13131c;
  }
   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

   }

   body{
    font-family: 'Syne', sans-serif;
    background: var(--bg);
    color: var(--text);
   }
   nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
    z-index: 100;

   }
   .nav-logo{
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-decoration: none;
   }
   .nav-links{
    display: flex;
    gap: 2.5rem;

   }

   .nav-links a{
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
   }
   .nav-links a:hover{
    color: var(--text);
   }

   .hero {
    min-height: 100vh;
    padding: 8rem 3rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
   }

   .hero-tag{
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
   }

   .hero-tag::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
   }

   .hero-nome{
    font-size: 6rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
   }
   
   .destaque{
    color: var(--accent);
    display: block;
   }

   .hero-desc{
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2.5rem;
   }
    
   .hero-botoes{
    display: flex;
    gap: 1rem;
   }

   .btn{
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.75rem;
    font-family: 'Space Mono' , monospace;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
   }

   .btn-primary{
    background: var(--accent);
    color: #0a0a0f;
    font-weight: 700;
   }

   .btn-primary:hover{
    background: #a8ff9e;
    transform: translateY(-2px);
   }

   .btn-outline{
    border:1px solid var(--border);
    color: var(--muted);
   }

   .btn-outline:hover{
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
   }

.hero-grid {
position: absolute;
inset: 0;
background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

   #skills{
    padding: 6rem 3rem;
   }

   .section-header{
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 3rem;
   }

   .section-num{
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
   }

   .section-titulo{
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;

   }

   .section-linha{
    flex: 1;
    height: 1px;
    background: var(--border);
   }
   
    .skills-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }

    .skill-card{
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 1.5rem;
        transition: border-color 0.2s, transform 0.2s;
        position: relative;
        overflow: hidden;
    }

    .skill-card::before{
        content:'';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--accent);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.25s;
    }
.skill-card:hover{
    border-color: rgba(127, 255, 110, 0.3);
    transform: translateY(-3px);
}

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

.skill-header{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 1.3rem;

}

.skill-nome{
    font-weight:700;
    font-size: 1rem;

}

.skill-desc{
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

#experiencia{
    padding: 6rem 3rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

}

.exp-container{
    position: relative;
    padding-left: 2rem;
}

.exp-container::before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 1px;
    background: var(--border);

}

.exp-item{
    position: relative;
    padding-bottom: 3rem;

}

.exp-item::before{
    content:'';
    position: absolute;
    left: -2.4rem;
    top: 8px;
    width:9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(127, 255, 110, 0.5);
}

.exp-data{
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;

}
.exp-cargo{
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.exp-empresa{
    font-size: 0.85rem;
    color: var(--muted);
    font-family: 'Space Mono',monospace;
    margin-bottom: 1rem;

}

.exp-lista{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exp-lista li{
    font-size: 0.88rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.exp-lista li::before{
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;

}

#cursos{
    padding: 6rem 3rem;

}

.cursos-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.curso-card{
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s;
}

.curso-card:hover{
    border-color: rgba(79, 195, 247, 0.4);
}

.curso-ponto{
    width: 8px;
    height: 8px;
    background: #4fc3f7;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.5);

}

.curso-nome{
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.curso-plataforma{
    font-family: 'Space Mono', monospace;
    font-size:0.7rem;
    color: #4fc3f7;
    letter-spacing: 0.05em;
}

.curso-status{
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(127, 255, 110, 0.3);
    border-radius: 2px;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

#contato{
    padding: 6rem 3rem;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contato-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contato-texto h2{
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;

}

.contato-texto p{
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contato-links{
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.contato-link{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border); 
    border-radius: 4px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    background: var(--bg);
}

.contato-link:hover {
  border-color: var(--accent);
  transform: translateY(-3px) translateX(6px);
}

.contato-icone{
    font-size: 1.2rem;
    width: 36px;
    text-align: center;
}

.contato-label{
    font-size: 0.7rem;
    color: var(--muted);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contato-valor{
    font-size: 0.9rem;
    font-weight: 600;
}

footer{
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border)
}

footer p {
font-family: 'Space Mono', monospace;
font-size:0.7rem;
color: var(--muted);
letter-spacing: 0.5em;
}

.hero-direita {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card:hover {
  border-color: rgba(127, 255, 110, 0.3);
  transition: border-color 0.2s;
}

.stat-icone {
  width: 40px;
  height: 40px;
  background: rgba(127, 255, 110, 0.08);
  border: 1px solid rgba(127, 255, 110, 0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Space Mono', monospace;
}

.stat-valor {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

body {
  cursor: none;
}

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-anel {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

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

/* animação de entrar pela direita */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* aplica nos elementos da hero-esquerda */
.hero-esquerda > * {
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}

.hero-esquerda > *:nth-child(1) { animation-delay: 0.1s; }
.hero-esquerda > *:nth-child(2) { animation-delay: 0.25s; }
.hero-esquerda > *:nth-child(3) { animation-delay: 0.4s; }
.hero-esquerda > *:nth-child(4) { animation-delay: 0.55s; }

/* aplica nos cards da hero-direita */
.stat-card {
  opacity: 0;
  animation: slideIn 0.6s forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.45s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.75s; }

.contato-link:nth-child(1) { transition-delay: 0.1s; }
.contato-link:nth-child(2) { transition-delay: 0.25s; }
.contato-link:nth-child(3) { transition-delay: 0.4s; }

@media (max-width: 768px) {

  
  .nav-links {
    display: none;
  }

  
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
  }

  
  .hero-direita {
    display: none;
  }

  
  .hero-nome {
    font-size: 3.5rem;
  }

 
  #skills {
    padding: 4rem 1.5rem;
  }

 
  #experiencia {
    padding: 4rem 1.5rem;
  }

  
  #cursos {
    padding: 4rem 1.5rem;
  }

  
  #contato {
    padding: 4rem 1.5rem;
  }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  
  .contato-texto h2 {
    font-size: 2rem;
  }

 
  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }

}

