* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #161616, #2c2c2c);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 340px;
  padding: 80px 20px 30px;
  background: #f5e2c8;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.img-perfil {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #161616;
  position: absolute;
  top: -85px;
  background: white;
}
.container h1 {
  margin-top: 60px;
  font-size: 22px;
  color: #222;
}

.container h2 {
  font-size: 16px;
  color: #222;
  margin-top: 5px;
}

.container h3 {
  margin-top: 5px;
  font-size: 13px;
  color: #222;
}

.container p {
  margin: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.btn-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  text-decoration: none;
  text-align: center;
  padding: 14px;
  background: #161616;
  color: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
