body {
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}


.foto {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

h1 {
  margin: 12px 0 5px;
}

p {
  color: #cbd5e1;
}

.links {
  margin-top: 25px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: white;
  color: #111;
  text-decoration: none;
  margin: 12px auto;
  padding: 14px;
  width: 260px;

  border-radius: 12px;
  font-weight: 500;

  transition: all 0.25s ease;
}

.links a:hover {
  transform: translateY(-3px) scale(1.03);
  background: #e5e7eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}