body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #18181b 0%, #3f0d3e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Efeito de brilho rosa no fundo */
.container::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ff4fcb55 0%, transparent 70%);
  filter: blur(60px);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.card {
  background: rgba(30, 30, 40, 0.85);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 #ff4fcb33, 0 1.5px 12px 0 #00000044;
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  max-width: 390px;
  width: 92vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1.5px solid #ff4fcb44;
  animation: glassFadeIn 1.2s cubic-bezier(.77,0,.18,1) 0.1s both;
}

@keyframes glassFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4fcb 0%, #18181b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 24px #ff4fcb55, 0 1.5px 8px #00000033;
  position: relative;
  border: 3px solid #fff2;
  overflow: hidden;
  animation: avatarPop 1.1s cubic-bezier(.77,0,.18,1) 0.2s both;
}

@keyframes avatarPop {
  0% { opacity: 0; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}

.avatar::after {
  content: "BR";
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 16px #ff4fcb99, 0 1px 2px #0008;
  font-family: 'Montserrat', Arial, sans-serif;
}

h1 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px #ff4fcb33;
  background: linear-gradient(90deg, #ff4fcb 30%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff4fcb;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #ff4fcb44;
}

p {
  color: #f3e8ff;
  font-size: 1.05rem;
  margin: 0 0 1rem 0;
  line-height: 1.6;
  text-shadow: 0 1px 8px #18181b99;
}

.loader {
  border: 4px solid #3f0d3e;
  border-top: 4px solid #ff4fcb;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  animation: spin 1.1s linear infinite;
  margin: 0 auto 0.5rem auto;
  box-shadow: 0 2px 16px #ff4fcb55;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

footer {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: #ffb3e6;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 8px #ff4fcb33;
}

/* Efeito de brilho animado no card */
.card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  width: 120px;
  height: 40px;
  background: linear-gradient(90deg, #ff4fcb 0%, #fff0 100%);
  opacity: 0.25;
  filter: blur(12px);
  transform: translateX(-50%) rotate(-8deg);
  pointer-events: none;
  animation: shine 2.5s infinite linear;
}

@keyframes shine {
  0% { left: 10%; opacity: 0.18; }
  50% { left: 80%; opacity: 0.32; }
  100% { left: 10%; opacity: 0.18; }
}

@media (max-width: 480px) {
  .card {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    max-width: 99vw;
  }
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1rem;
  }
  .avatar {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
} 