:root{
  --bg0:#05040a;
  --bg1:#070a10;

  --ink:#f6f2ff;
  --muted: rgba(246,242,255,.72);
  --line: rgba(255,255,255,.10);

  --glass: rgba(255,255,255,.06);

  /* Worship vibe (verde/teal + dourado suave) */
  --hot1:#00f5c8;   /* teal neon */
  --hot2:#12b886;   /* green */
  --hot3:#ffd36a;   /* gold */

  --ok:#19f58f;
  --bad:#ff4d6d;

  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;

  /* fundo imersivo */
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(0,245,200,.20) 0%, transparent 55%),
    radial-gradient(900px 700px at 90% 30%, rgba(255,211,106,.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));

  overflow-x:hidden;
}

.bg{
  position:fixed; inset:0; pointer-events:none; z-index:-1;
}
.noise{
  position:absolute; inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  transform:rotate(10deg);
  mix-blend-mode:overlay;
  opacity:.14;
}
.vignette{
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 40%, transparent 30%, rgba(0,0,0,.60) 76%, rgba(0,0,0,.85) 100%);
}

.orb{
  position:absolute; width:520px; height:520px; border-radius:50%;
  filter: blur(24px);
  opacity:.55;
  mix-blend-mode:screen;
  animation: float 10s ease-in-out infinite;
}
.orb-a{ left:-140px; top:-160px; background:radial-gradient(circle at 30% 30%, rgba(0,245,200,.85), transparent 55%); }
.orb-b{ right:-180px; top:120px; background:radial-gradient(circle at 30% 30%, rgba(18,184,134,.80), transparent 55%); animation-duration: 12s;}
.orb-c{ left:20%; bottom:-220px; background:radial-gradient(circle at 30% 30%, rgba(255,211,106,.55), transparent 58%); animation-duration: 14s;}

@keyframes float{
  0%,100%{ transform:translate3d(0,0,0) scale(1); }
  50%{ transform:translate3d(0,-28px,0) scale(1.03); }
}

.wrap{
  width:min(980px, 92vw);
  margin: clamp(18px, 3vw, 34px) auto 40px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* HERO */
.hero{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}

.banner-top{
  width:100%;
  display:flex;
  justify-content:center;
}

.banner-frame{
  position:relative;
  width:min(520px, 92vw);
  border-radius: 26px;
  overflow:hidden;

  /* remove o “retângulo/moldura” */
  border: none;
  background: transparent;
  box-shadow: none;

  transform: translateZ(0);
}

.banner-img{
  width:100%;
  height:auto;
  object-fit:cover;
  filter: contrast(1.06) saturate(1.08);
  transform: scale(1.01);

  /* sombra suave sem virar moldura */
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  border-radius: 26px;
}



/* Luz passando no banner 
.banner-sheen{
  position:absolute; inset:-40% -20%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.42), transparent);
  transform: translateX(-70%) rotate(10deg);
  animation: sheenBanner 3.6s ease-in-out infinite;
  opacity:.55;
  pointer-events:none;
}*/

/* Luz passando no fundo inteiro */

.global-light{

  position:fixed;
  top:0;
  left:-50%;

  width:50%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.15),
    transparent
  );

  transform: skewX(-20deg);

  animation: lightSweep 12s linear infinite;

  pointer-events:none;
  z-index:0;

}

@keyframes lightSweep{

  0%{
    left:-50%;
  }

  100%{
    left:150%;
  }

}

@keyframes glow{
  0%,100%{ opacity:.55; transform:translate3d(0,0,0); }
  50%{ opacity:.85; transform:translate3d(6px,-6px,0); }
}
@keyframes sheenBanner{
  0%{ transform: translateX(-80%) rotate(10deg); }
  55%{ transform: translateX(25%) rotate(10deg); }
  100%{ transform: translateX(90%) rotate(10deg); }
}

.hero-text{
  width:min(720px, 92vw);
  text-align:center;
}

.kicker{
  margin:0;
  color: rgba(255,255,255,.78);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
}
.hero h1{
  margin:.25rem 0 .4rem;
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  letter-spacing:.02em;
  text-shadow: 0 10px 40px rgba(0,0,0,.65);
}
.sub{
  margin:0;
  color: var(--muted);
  line-height:1.4;
}

/* Counter */
.counter{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap:8px;
  align-items:baseline;
  color: rgba(255,255,255,.70);
}
.counter-number{
  font-weight: 900;
  color: rgba(0,245,200,.95);
  text-shadow: 0 0 22px rgba(0,245,200,.25);
}
.counter-text{
  font-size:.95rem;
}

/* CARD GLASS */
.card{
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(800px 240px at 18% 0%, rgba(0,245,200,.16), transparent 60%),
    radial-gradient(900px 260px at 100% 40%, rgba(255,211,106,.10), transparent 60%);
  pointer-events:none;
}

form{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.field label{
  display:block;
  font-size:.86rem;
  color: rgba(255,255,255,.86);
  margin: 0 0 8px 2px;
}
.field input{
  width:100%;
  padding: 14px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
  color: var(--ink);
  outline:none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder{ color: rgba(255,255,255,.45); }
.field input:focus{
  border-color: rgba(0,245,200,.55);
  box-shadow: 0 0 0 6px rgba(0,245,200,.14);
  transform: translateY(-1px);
}
.underline{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,200,.55), rgba(255,211,106,.35), transparent);
  opacity:.0;
  transform: translateY(-6px);
  transition: opacity .18s ease;
}
.field input:focus + .underline{ opacity: .95; }

.hint{
  display:block;
  margin-top:8px;
  color: rgba(255,255,255,.62);
  font-size:.78rem;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.picker{
  padding: 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}

.picker-label{
  margin:0 0 10px;
  font-size:.86rem;
  color: rgba(255,255,255,.86);
}

.seg{
  position:relative;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.seg-btn{
  flex: 1 1 auto;
  border-radius: 14px;
  padding: 12px 10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.88);
  font-weight:600;
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  position:relative;
  overflow:hidden;
}
.seg-btn:active{ transform: scale(.98); }
.seg-btn:hover{ border-color: rgba(255,255,255,.20); box-shadow: 0 12px 24px rgba(0,0,0,.25); }
.seg-btn.selected{
  border-color: rgba(0,245,200,.55);
  background: linear-gradient(180deg, rgba(0,245,200,.18), rgba(255,211,106,.08));
  box-shadow: 0 0 0 6px rgba(0,245,200,.10), 0 18px 40px rgba(0,0,0,.35);
}

.age{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.age input[type="range"]{
  width:100%;
  accent-color: #00f5c8;
}
.age-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.age-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,245,200,.14);
  border:1px solid rgba(0,245,200,.25);
  font-weight:800;
}
.age-note{
  color: rgba(255,255,255,.60);
  font-size:.78rem;
}

/* CTA */
.cta{
  margin-top:4px;
  position:relative;
  border:none;
  border-radius: 18px;
  padding: 16px 16px;
  color: #07130f;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing:.02em;
  cursor:pointer;
  transform: translateZ(0);
  overflow:hidden;
}
.cta-bg{
  position:absolute; inset:0;
  background: linear-gradient(90deg, var(--hot1), var(--hot2), var(--hot3));
  filter: saturate(1.1);
}
.cta-text{ position:relative; z-index:2; }
.cta-sheen{
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-60%) rotate(10deg);
  animation: sheen 2.4s ease-in-out infinite;
  opacity:.60;
}
@keyframes sheen{
  0%{ transform: translateX(-70%) rotate(10deg); }
  55%{ transform: translateX(30%) rotate(10deg); }
  100%{ transform: translateX(70%) rotate(10deg); }
}
.cta:hover{
  box-shadow: 0 26px 70px rgba(0,0,0,.55), 0 0 0 7px rgba(0,245,200,.12);
  transform: translateY(-1px);
}
.cta:active{ transform: translateY(1px) scale(.99); }
.cta[disabled]{ opacity:.65; cursor:not-allowed; }

.status{
  min-height: 1.1em;
  margin: 4px 2px 0;
  color: rgba(255,255,255,.78);
  font-size:.9rem;
}

.foot{
  color: rgba(255,255,255,.55);
  font-size:.82rem;
  text-align:center;
  padding: 4px 0 0;
}

/* MODAL */
.modal{
  position:fixed; inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index:50;
}
.modal.show{ display:flex; }
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.modal-card{
  width:min(520px, 92vw);
  border-radius: 24px;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.70);
  position:relative;
  overflow:hidden;
  animation: pop .22s ease-out;
}
@keyframes pop{
  from{ transform: translateY(10px) scale(.98); opacity:0; }
  to{ transform: translateY(0) scale(1); opacity:1; }
}
.modal-burst{
  position:absolute; inset:-30%;
  background:
    radial-gradient(circle at 30% 30%, rgba(25,245,143,.22), transparent 55%),
    radial-gradient(circle at 80% 55%, rgba(0,245,200,.18), transparent 58%),
    radial-gradient(circle at 55% 80%, rgba(255,211,106,.14), transparent 58%);
  mix-blend-mode:screen;
  animation: glow 3.4s ease-in-out infinite;
}
.modal-card h2{ margin:0 0 8px; position:relative; }
.modal-card p{
  margin:0 0 12px;
  color: rgba(255,255,255,.82);
  line-height:1.45;
  position:relative;
}

.follow-link{
  display:block;
  text-decoration:none;
  position:relative;
}

.modal-btn{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight:800;
  cursor:pointer;
  position:relative;
}
.modal-btn:hover{ box-shadow: 0 16px 34px rgba(0,0,0,.35); }
.modal-btn.insta{
  margin-bottom:10px;
  border-color: rgba(0,245,200,.22);
  background: linear-gradient(90deg, rgba(0,245,200,.22), rgba(255,211,106,.12));
}

.fx{
  position:fixed; inset:0;
  pointer-events:none;
  z-index:60;
}

@media (max-width: 720px){
  .grid2{ grid-template-columns: 1fr; }
}