/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* Container principal */
body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* vibe criativa roxo/azul */
  color: #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Card container */
#container {
  width: 360px;
  min-height: 90vh;
  background: url('./assets/Foto-capa-2.jpeg') no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 26px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Overlay colorido (mais leve) */
#container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(236,72,153,0.45)); 
  border-radius: 20px;
  z-index: 0;
  backdrop-filter: blur(2px); /* blur mais suave */
}

#container > * {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Perfil */
#profile {
  margin-bottom: 28px;
}

#profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #ec4899; /* rosa neon */
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.8);
}

#profile h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

#profile p {
  font-size: 1rem;
  color: #fbcfe8;
  font-weight: 500;
}

/* Menu de contato */
nav {
  margin-bottom: 28px;
  width: 100%;
}

nav .menu li {
  list-style: none;
  margin: 12px 0;
}

nav .menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.35s ease;
  width: 100%;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
}

nav .menu a:hover {
  background: linear-gradient(90deg, #3b82f6, #ec4899);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.6);
}

/* Redes sociais */
#social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}

#social-links a {
  color: #f1f5f9;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

#social-links a:hover {
  color: #000000;
  transform: scale(1.25);
  text-shadow: 0 0 8px #ec4899;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Responsividade */
@media (max-width: 420px) {
  #container {
    padding: 20px;
    width: 100%;
  }

  #profile img {
    width: 95px;
    height: 95px;
  }

  #profile h2 {
    font-size: 1.2rem;
  }
}
