@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  background: #3a3a3a;
  height: 100%;
}

canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at center, #0a0f2c, #000);
}

.container {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  color: #00eaff;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px #00eaff33;
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

/* Efeito hover 3D igual ao da imagem */
.content:hover {
  transform: scale(1.05) rotateY(6deg) rotateX(3deg);
  box-shadow: 0 0 30px #00eaff, 0 0 60px #00eaff66, 0 0 100px #00eaff33;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #00eaff;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #00eaff;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Efeito hover com rotação 3D e brilho aumentado */
.avatar:hover {
  transform: scale(1.15) rotateY(10deg) rotateX(5deg);
  box-shadow: 0 0 25px #00eaff, 0 0 50px #00eaff66, 0 0 80px #00eaff33;
}


h1 {
  margin: 10px 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

h2 {
  color: #b3e5ff;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  color: #cce7ff;
  margin-bottom: 30px;
}

.links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  color: #fff;
  border: 1px solid #00eaff;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00eaff;
  color: #000;
  box-shadow: 0 0 10px #00eaff, 0 0 40px #00eaff33;
}

.linkedin { border-color: #0077b5; }
.instagram { border-color: #e1306c; }
.cv { border-color: #00ff88; }
/* ===== POPUP ===== */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#popup-box {
  background: #000;
  border: 2px solid #00eaff;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  color: #00eaff;
  max-width: 400px;
  box-shadow: 0 0 20px #00eaff88;
}

#close-popup {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  color: #000;
  background: #00eaff;
  font-weight: bold;
  transition: .3s;
}

#close-popup:hover {
  background: #00bcd4;
}
