
 
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
 
.soon-hero{
  padding:150px 0 110px;
  min-height:80vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}
 
.soon-wrap{
  position:relative;
  z-index:1;
  max-width:680px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
 
.soon-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--color-primary-light);
  background:rgba(128,121,255,.08);
  border:1px solid rgba(128,121,255,.25);
  padding:8px 16px;
  border-radius:var(--radius-full);
  margin-bottom:28px;
}
 
.soon-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--color-primary);
  box-shadow:0 0 10px 2px var(--color-primary-glow);
  animation:soon-pulse 1.8s ease-in-out infinite;
}
 
@keyframes soon-pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(.7);}
}
 
.soon-icon{
  width:86px;height:86px;
  border-radius:26px;
  background:var(--color-node-grad);
  border:1px solid var(--color-border-strong);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(128,121,255,.06);
  display:flex;align-items:center;justify-content:center;
  color:var(--color-primary-light);
  margin-bottom:28px;
  animation:soon-float 4s var(--ease) infinite;
}
 
.soon-icon svg{width:38px;height:38px;}
 
@keyframes soon-float{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-8px) rotate(-4deg);}
}
 
.soon-hero h1{
  font-size:clamp(30px,4.6vw,48px);
  margin-bottom:16px;
}
 
.soon-hero h1 .accent{color:var(--color-primary-light);}
 
.soon-sub{
  color:var(--color-text-secondary);
  font-size:17px;
  max-width:520px;
  margin:0 auto 44px;
}
 
/* Barra de progresso */
.soon-progress{
  width:100%;
  max-width:420px;
  margin:0 auto 40px;
  text-align:left;
}
 
.soon-progress-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--color-text-tertiary);
  margin-bottom:10px;
}
 
.soon-progress-value{
  color:var(--color-primary-light);
  font-weight:600;
}
 
.soon-progress-track{
  width:100%;
  height:8px;
  border-radius:var(--radius-full);
  background:var(--color-card);
  border:1px solid var(--color-border);
  overflow:hidden;
}
 
.soon-progress-fill{
  height:100%;
  border-radius:var(--radius-full);
  background:linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  box-shadow:0 0 14px 0 var(--color-primary-glow);
  transition:width 1.4s var(--ease);
}
 
/* Formulário de notificação */
.soon-notify{
  display:flex;
  gap:10px;
  width:100%;
  max-width:420px;
  margin:0 auto;
}
 
.soon-notify input[type="email"]{
  flex:1;
  min-width:0;
  padding:14px 18px;
  border-radius:var(--radius-full);
  border:1px solid var(--color-border-strong);
  background:var(--color-card);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:14.5px;
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
 
.soon-notify input[type="email"]::placeholder{
  color:var(--color-text-tertiary);
}
 
.soon-notify input[type="email"]:focus{
  outline:none;
  border-color:var(--color-primary-light);
  background:var(--color-card-hover);
}
 
.soon-notify input.invalid{
  border-color:var(--color-red);
}
 
.soon-notify .btn{
  flex-shrink:0;
  white-space:nowrap;
}
 
.soon-notify .btn:disabled{
  opacity:.65;
  cursor:default;
  transform:none !important;
}
 
.soon-notify-msg{
  min-height:20px;
  margin-top:14px;
  font-size:13.5px;
  color:var(--color-text-tertiary);
}
 
.soon-notify-msg.success{color:var(--color-green);}
.soon-notify-msg.error{color:var(--color-red);}
 
.soon-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:36px;
}
 
.soon-actions .btn svg{flex-shrink:0;}
 
@media (max-width:600px){
  .soon-hero{padding:130px 0 72px;}
  .soon-notify{flex-direction:column;}
  .soon-notify .btn{width:100%;}
}
 






