* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.container {
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 400px;
}

h1, h2 {
  margin-bottom: 20px;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background-color: #fff;
  color: #ff4f7a;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: none;
  margin-bottom: 10px;
  outline: none;
}

.hint {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}

/* Tela Final */
.photo-box {
  margin-top: 20px;
  width: 100%;
}

.photo-box img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}