/* RESET E FONTE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #181824;
  color: #e6e6e6;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR MINIMALISTA */
.navegação {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #181824f2;
  padding: 1.2rem 0;
  border-bottom: 1px solid #232336;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.Menulink {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.Menulink::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #6c63ff;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.Menulink:hover,
.Menulink:focus {
  color: #6c63ff;
}

.Menulink:hover::after,
.Menulink:focus::after {
  width: 100%;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: none;
  margin-bottom: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 2rem 2rem 2rem;
}

.fotoperfil {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6c63ff;
  box-shadow: 0 2px 12px #0003;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fotoperfil:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px #6c63ff44;
}

.hero-nome {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.hero-profissao {
  font-size: 1.1rem;
  color: #6c63ff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.hero-icons {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.hero-icons img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.2) brightness(1.1);
  transition: filter 0.2s, transform 0.2s;
}

.hero-icons img:hover {
  filter: grayscale(0) brightness(1.3) drop-shadow(0 0 6px #6c63ff);
  transform: scale(1.08);
}

.hero-desc {
  font-size: 1.05rem;
  color: #bdbdcf;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero-btn {
  margin-top: 1rem;
  background: #6c63ff;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.hero-btn:hover {
  background: #554ee6;
  transform: translateY(-2px) scale(1.03);
}

/* SOBRE - skills com ícones */
.sessao.sobre {
  max-width: 600px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.sobre-titulo2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
}

.paragrafo {
  font-size: 1.08rem;
  color: #bdbdcf;
  text-align: center;
  margin-bottom: 1.2rem;
  background: #202032;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 2px 12px #0001;
  max-width: 500px;
}

.skills-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #232336;
  color: #e6e6e6;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  box-shadow: none;
}

.skills-list img {
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: middle;
}

/* PROJETOS PROFISSIONAL E CLEAN */
.projetos {
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  padding: 0 1rem;
}

.projeto-titulo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

.projetos-lista {
  display: flex;
  flex-wrap: nowrap; /* NÃO quebra linha, força lado a lado */
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto 2rem auto;
  padding: 0;
  overflow-x: auto; /* Permite rolar horizontalmente se não couber */
}

.projetos-card {
  flex: 0 0 260px; /* largura fixa menor para caber mais cards lado a lado */
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #191a23;
  border-radius: 16px;
  box-shadow: 0 4px 24px #0003;
  min-height: 340px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  overflow: hidden;
  padding-bottom: 1.2rem;
}

.projetos-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  background: #232336;
  border-bottom: 1px solid #232336;
}

.projetos-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 12px 40px #0005;
}

.projeto-subtitulo {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 1.2rem 0 0.5rem 0;
  color: #e6e6e6;
  text-align: left;
  letter-spacing: 0.3px;
  padding: 0 1.2rem 0 1.2rem;
}

.projeto-descricao {
  font-size: 0.98rem;
  color: #bdbdcf;
  text-align: left;
  margin: 0 0 1.2rem 0;
  padding: 0 1.2rem 0 1.2rem;
  line-height: 1.5;
  opacity: 0.98;
  min-height: 48px;
}

.btn-vermais {
  background: transparent;
  color: #6c63ff;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: 1px solid #6c63ff;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: none;
  text-decoration: none;
  margin: 0 0 0 1.2rem;
  align-self: flex-start;
}

.btn-vermais:hover {
  background: #6c63ff;
  color: #fff;
  border: 1px solid #554ee6;
}

/* CONTATOS */
.contatos {
  max-width: 500px;
  margin: 4rem auto 0 auto;
  padding: 0 1rem;
}

.cotaots-titulo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

.formulario-contatos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 0 1rem;
  background: #202032;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0002;
}

.nome-form, .grupo-form {
  margin-bottom: 1rem;
  width: 100%;
}

.campo-form, textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #232336;
  border-radius: 8px;
  background: #232336;
  color: #e6e6e6;
  font-size: 1rem;
  transition: border 0.2s, background 0.2s;
}

.campo-form:focus, textarea:focus {
  border: 1px solid #6c63ff;
  outline: none;
  background: #202032;
}

.campo-form::placeholder, textarea::placeholder {
  color: #6c63ff99;
}

button[type="submit"] {
  background: #6c63ff;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px #6c63ff22;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

button[type="submit"]:hover {
  background: #554ee6;
  transform: translateY(-2px) scale(1.03);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2) brightness(1.2);
  transition: filter 0.2s, transform 0.2s;
}

.social-links a:hover img {
  filter: grayscale(0) brightness(1.5) drop-shadow(0 0 8px #6c63ff);
  transform: scale(1.1);
}

/* SCROLLBAR MINIMALISTA */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background: #232336;
}
::-webkit-scrollbar-thumb {
  background: #6c63ff;
  border-radius: 8px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .projetos-lista {
    flex-wrap: wrap;
    overflow-x: unset;
    gap: 1.5rem;
  }
  .projetos-card {
    flex: 1 1 100%;
    max-width: 95vw;
    min-width: 220px;
  }
  .hero-content {
    padding: 2rem 0.5rem;
  }
  .cabecalho {
    max-width: 95vw;
  }
  .sessao {
    max-width: 95vw;
  }
  .contatos {
    max-width: 95vw;
  }
  .paragrafo {
    padding: 1rem 0.5rem;
  }
}