/* RESET BÁSICO */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  min-height: 100vh;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
}

/* ===== HEADER / MENU ===== */
header {
  padding: 20px;
}

header nav {
  display: flex;
  justify-content: flex-end; /* SEMPRE direita */
  align-items: center;
}

header nav h1 {
  margin: 0;
  font-size: 1.4rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: rgb(227, 226, 226);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #0328cb;
}

/* ===== SEÇÃO SOBRE ===== */
#sobre {
  padding: 100px 0 50px;
  min-height: calc(100vh - 150px);
}

.container-sobre {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.texto-sobre h1 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

h2,
h3 {
  text-shadow: 2px 2px 4px rgb(41, 44, 56);
}

/* TÍTULO COM LINHA ANIMADA */
.titulo-secao {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 20px;
}

.titulo-secao::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #0080ff);
  transition: width 0.4s ease;
}

.titulo-secao:hover::after {
  width: 100%;
}

/* ===== INFO PESSOAL ===== */
.info-pessoal h3,
.habilidades h3,
.tecnologias h3 {
  font-size: 26px;
  margin: 40px 0 20px;
}

.info-pessoal p {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/* ===== HABILIDADES ===== */
.habilidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.habilidade-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
  transition: transform 0.3s, background-color 0.3s;
}

.habilidade-item:hover {
  transform: translateY(-3px);
  background-color: #2a2a2a;
}

.habilidade-item i {
  font-size: 20px;
  color: #0a66c2;
}

.habilidade-item span {
  font-size: 16px;
}

/* ===== TECNOLOGIAS ===== */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.tech-item {
  background-color: #1a1a1a;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid #333;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* EFEITO NEON */
.tech-item:hover {
  border-color: #00ffff;
  box-shadow:
    0 0 10px #00ffff,
    0 0 20px #0d25b0,
    0 0 30px #253232;
  text-shadow: 0 0 10px #0033ff;
  transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {

  /* HEADER / MENU */
  header nav {
    justify-content: center; /* centraliza no mobile */
  }

  header nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* RESTO CONTINUA IGUAL */
  .container-sobre {
    padding: 0 20px;
  }

  .texto-sobre h1 {
    font-size: 30px;
  }

  .titulo-secao {
    font-size: 1.6rem;
  }

  .info-pessoal p {
    font-size: 15px;
  }
}
