/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #010f24;
  color: #f0f0f0;
  line-height: 1.6;
  padding-top: 70px; /* espaço pro menu fixo */
}

/* MENU LATERAL (DESKTOP) */
.lateral {
  display: block;
}

.menupc {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-color: rgb(2, 2, 26);
  color: #fff;
  border-right: 2px solid #0ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;;
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.barmenu ul {
  list-style: none;
  text-align: center;
  margin-top: 40px;
}

.barmenu ul li {
  margin: 20px 0;
}
.neon-title{
  text-decoration: none;
  margin-left: 20px;

}

.neon-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 130%;
  height: 8px;
  margin-left: 3px;
  margin-top: 4px;
  background: #0ff;
  box-shadow: 0 0 6px #0ff, 0 0 12px #0ff, 0 0 18px #0ff;
  border-radius: 2px;
}


.barmenu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.barmenu ul li a:hover {
  background: rgb(132, 132, 231);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;

}

/* ICONES (DESKTOP) */
/* Ícones flutuantes de contato */
.icones {
  position: fixed;      /* fixa na tela */
  top: 50%;             /* centraliza verticalmente */
  right: 20px;          /* distância da borda direita */
  display: flex;
  flex-direction: column; /* um embaixo do outro */
  gap: 15px;
  z-index: 1000;        /* acima de tudo */
}

/* Botões */
.icones button {
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Cores neon para cada ícone */
.insta a button {
  background: rgb(193, 13, 115);
}
.insta a button:hover {
  background: rgb(255, 134, 229);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
}

.whats a button {
  background: rgb(11, 137, 43);
}
.whats a button:hover {
  background: rgb(77, 255, 121);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
}

.email a button {
  background: blue;
}
.email a button:hover {
  background: rgb(132, 132, 231);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
}

/* Responsividade: centraliza no topo em telas pequenas */
@media (max-width: 768px) {
  .icones {
    flex-direction: row; /* ícones lado a lado */
    top: auto;
    bottom: 10px;      /* fica no rodapé móvel */
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
  }

  .icones button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}


/* MENU TOPO (MOBILE) */
.topocel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(2, 2, 26);
  padding: 12px 20px;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.nomecel h1 {
  font-size: 18px;
  font-weight: 700;
}
.nomecel h3 {
  font-size: 14px;
  font-weight: 400;
  color: #aaa;
}

.menucel {
  position: relative;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Links mobile */
.menu-links {
  list-style: none;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0;
  width: 200px;
  background: rgb(2, 2, 26);
  box-shadow: 0 0 10px #0ff;
  border-radius: 8px;
}

.menu-links li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.menu-links li a {
  display: block;
  padding: 12px;
  color: #fff;
  text-decoration: none;
}

.menu-links li a:hover {
  background: #044f75;
  box-shadow: 0 0 8px #0ff;
}

/* Esconde menu lateral no mobile */
@media (max-width: 768px) {
  .lateral { display: none; }
  .icones { justify-content: center; margin: 10px 0; }
  .topocel { display: flex; }
}

@media (min-width: 769px) {
  .topocel { display: none; }
}

/* MAIN CONTENT */
main {
  display: grid;
  place-items: center;
  padding: 40px 20px;
  gap: 60px;
  margin-left: 200px; /* espaço pro menu lateral no desktop */
  background: linear-gradient(to bottom, #010f24, #04122c, #061d43, #155d7e);
}

main section {
  width: 90%;
  max-width: 900px;
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
  text-align: center;
}

/* Neon underline estilo barra fixa */
main section h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00eaff;
  position: relative;
  display: inline-block; /* para o underline acompanhar a largura do texto */
}

/* Linha neon fixa */
main section h2::after {
 content: "";
  position: absolute;
  left: 0;
  bottom: -5px;   /* distância do texto */
  width: 100%;
  height: 3px;     /* altura da barra */
  background: #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
  border-radius: 1px;
}


/* TEXTO */
main section p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* PORTFOLIO */
.meustrab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.meustrab figure {
  background: rgba(0,0,0,0.3);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
  transition: 0.3s;
}
.expandirimg {
  transition: all transform 0.3s ease;
  cursor: pointer;
}

.expandirimg.expandida {
  position: fixed;       /* fica fixa na tela */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3); /* centraliza e aumenta */
  max-width: 90vw;       /* limite largura */
  max-height: 90vh;      /* limite altura */
  z-index: 9999;         /* fica na frente de tudo */
  box-shadow: 0 0 25px rgba(0,0,0,0.8); /* efeito destaque */
  border-radius: 10px;
}

.expandirimg.expandida {
  transform: scale(3); /* aumenta 80% */
  z-index: 10;           /* sobe na frente */
  position: relative;
}

.meustrab figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
}

.meustrab img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.meustrab figcaption {
  font-size: 0.9rem;
  color: #ddd;
}

/* CONTATO */
.ctt ul {
  list-style: none;
  padding: 0;
}

.ctt ul li {
  margin: 10px 0;
}

.ctt ul li a {
  color: #0ff;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}

.ctt ul li a:hover {
  color: #fff;
  text-shadow: 0 0 8px #0ff;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: rgb(2, 2, 26);
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  main { margin-left: 0; gap: 40px; }
  main section { padding: 25px; }
  main section h2 { font-size: 1.5rem; }
}
/* HABILIDADES / COMO POSSO TE AJUDAR */
.habilidades {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.ajuda-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 16px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
  transition: 0.3s;
}

.ajuda-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}

.ajuda-item button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  margin-bottom: 15px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #044f75;
  color: #0ff;
  box-shadow: 0 0 10px #0ff;
}

.ajuda-item h3 {
  color: #0ff;
  margin-bottom: 10px;
  font-family: 'Exo 2', sans-serif;
}

.ajuda-item p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

/* Neon underline do nome (garantia extra) */
.neon-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.4rem;
  color: #0ff;
  text-align: center;
  display: inline-block;
  position: relative;
}

.neon-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 5px;
  background: #0ff;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 60px #0ff;
  border-radius: 2px;
}

