/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  /* Fundo escuro premium elegante */
  background: radial-gradient(circle at top right, #1e1b4b, #0f172a, #000000);
  background-attachment: fixed;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.container {
  flex: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
}

/* --- PERFIL --- */
.profile {
  text-align: center;
  margin-bottom: 35px;
}

.avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  /* Borda dupla iluminada */
  border: 4px solid #0f172a;
  box-shadow: 0 0 0 3px #8b5cf6, 0 10px 25px rgba(139, 92, 246, 0.4);
}

.username {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.verificado {
  width: 22px;
  height: 22px;
}

.subtitle {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-top: 10px;
  padding: 0 15px;
  font-weight: 400;
}

/* --- LINKS (CARDS) --- */
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05); /* Efeito vidro */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

/* Destaque para os cards Premium */
.premium-card {
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.premium-card:hover {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Ícones dos botões */
.icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden; /* Garante que a imagem não saia das bordas arredondadas */
  background: rgba(255, 255, 255, 0.05); /* Fundo translúcido sutil para as imagens */
}

/* Classe nova para as imagens personalizadas */
.custom-app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playstore-bg { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }

/* Textos dentro do botão */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  text-align: left;
}

.card-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.card-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

.card-arrow {
  color: #64748b;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.link-card:hover .card-arrow {
  color: #fff;
}

/* Divisória da Play Store */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.divider::before { margin-right: 10px; }
.divider::after { margin-left: 10px; }

/* Ocultar o card padrão um pouco mais para focar no Premium */
.standard-card {
  opacity: 0.85;
}
.standard-card:hover {
  opacity: 1;
}

/* --- REDES SOCIAIS --- */
.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* --- RODAPÉ --- */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* RESPONSIVO */
@media (max-width: 400px) {
  .card-title { font-size: 0.95rem; }
  .card-subtitle { font-size: 0.7rem; }
  .icon-wrapper { width: 42px; height: 42px; font-size: 1.3rem; }
  .avatar { width: 90px; height: 90px; }
}