body{
  margin:0;
  background:#000;
  color:#fff;
  font-family:Arial;
  text-align:center;
}

.container{
  padding:20px;
}

h1{
  font-size:24px;
}

.fotos{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:20px 0;
}

.fotos img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:10px;
}

button{
  background:#ff0066;
  border:none;
  color:#fff;
  padding:15px;
  font-size:16px;
  border-radius:10px;
  cursor:pointer;
  width:90%;
  max-width:300px;
}

.popup{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
}

.popup-content{
  background:#111;
  padding:20px;
  border-radius:10px;
  width:90%;
  max-width:320px;
  margin:100px auto;
}

input{
  width:100%;
  padding:10px;
  margin:10px 0;
  border-radius:5px;
  border:none;
  font-size:16px; /* 🔥 ISSO RESOLVE */
}

.copy{
  background:#333;
}

.whats{
  background:#25D366;
}

.info{
  color:lime;
}

.alerta{
  color:red;
  font-size:12px;
}

.vip-box{
  margin-top:25px;
  padding:15px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:10px;
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
  background:rgba(255,255,255,0.02);
}

.vip-title{
  font-size:14px;
  color:#aaa;
  margin-bottom:10px;
}

.vip-highlight{
  margin-top:10px;
  color:#ff0066;
}