@font-face{font-family:Rajdhani;src:url('../fonts/rajdhani-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Rajdhani;src:url('../fonts/rajdhani-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:Rajdhani;src:url('../fonts/rajdhani-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:Rajdhani;src:url('../fonts/rajdhani-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap}

:root{
  --teal:#1DB5B6;
  --teal-700:#158C8D;
  --teal-300:#7FE0E0;
  --teal-100:#DFF6F6;
  --navy:#031026;
  --navy-600:#1D283C;
  --navy-800:#0A1B33;
  --canvas:#FAFAFA;
  --line:#E1E5EA;
  --muted:#9BA4B2;
  --ease:cubic-bezier(.22,1,.36,1);
  --font:Rajdhani,"Segoe UI","Helvetica Neue",Arial,Roboto,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  min-height:100vh;
  background:var(--canvas);
  font-family:var(--font);
  color:var(--navy);
  padding:64px 20px;
  overflow-x:hidden;
}

.topbar{
  position:fixed;
  top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(120deg,#031026 0%,#158C8D 52%,#1DB5B6 100%);
  background-size:220% 100%;
  animation:gradPan 8s ease-in-out infinite;
  z-index:10;
}

main{
  position:relative;
  box-sizing:border-box;
  width:100%;
  max-width:600px;
  margin:0 auto;
  text-align:center;
  padding:8px 0 4px;
  isolation:isolate;
}

.glow{
  position:absolute;
  top:-120px;
  left:50%;
  width:520px;
  height:360px;
  margin-left:-260px;
  background:radial-gradient(circle,rgba(29,181,182,.20) 0%,rgba(29,181,182,0) 70%);
  filter:blur(8px);
  z-index:-1;
  animation:floatSlow 14s ease-in-out infinite;
  pointer-events:none;
}

.logo{
  width:clamp(150px,32vw,200px);
  height:auto;
  display:block;
  margin:0 auto;
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.05s;
}

h1{
  width:100%;
  box-sizing:border-box;
  margin:28px auto 0;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:break-word;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:-.02em;
  line-height:1.15;
  font-size:clamp(1.5rem,4.4vw,2.25rem);
  color:var(--navy);
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.16s;
}

h1 .grad{
  background:linear-gradient(92deg,var(--navy),var(--teal-700) 48%,var(--teal) 100%);
  background-size:220% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:gradPan 9s ease-in-out infinite;
}

.apoio{
  width:100%;
  box-sizing:border-box;
  margin:28px auto 0;
  overflow-wrap:anywhere;
  word-break:break-word;
  font-size:clamp(1rem,2.6vw,1.125rem);
  font-weight:500;
  line-height:1.7;
  color:var(--navy-600);
  max-width:min(46ch,100%);
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.27s;
}

.destaque{
  box-sizing:border-box;
  width:100%;
  margin:28px auto 0;
  background:var(--teal-100);
  border:1px solid rgba(29,181,182,.32);
  border-radius:14px;
  padding:18px 24px;
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.38s;
}

.destaque p{
  margin:0;
  overflow-wrap:anywhere;
  word-break:break-word;
  font-size:clamp(1.0625rem,2.8vw,1.1875rem);
  font-weight:700;
  color:var(--navy);
  letter-spacing:-.01em;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:28px auto 0;
  background:var(--teal);
  color:#fff;
  text-decoration:none;
  font-family:var(--font);
  font-weight:700;
  font-size:1.0625rem;
  letter-spacing:.01em;
  padding:16px 34px;
  border-radius:999px;
  box-shadow:0 10px 24px -8px rgba(29,181,182,.55);
  transition:background .2s ease,box-shadow .2s ease,transform .2s ease;
  min-height:44px;
  max-width:100%;
  box-sizing:border-box;
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards,glowPulse 3.2s ease-in-out 1.1s infinite;
  animation-delay:.49s,1.1s;
}

.cta:hover{
  background:var(--navy);
  box-shadow:0 12px 30px -8px rgba(3,16,38,.5);
}
.cta:active{transform:translateY(1px)}
a:focus-visible,
.cta:focus-visible{
  outline:2px solid var(--teal-700);
  outline-offset:3px;
  border-radius:999px;
}

footer{
  margin-top:36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  opacity:0;
  animation:fadeUp .8s var(--ease) forwards;
  animation-delay:.6s;
}
footer a{
  color:var(--muted);
  text-decoration:none;
  font-size:.875rem;
  font-weight:500;
}
footer a:hover{color:var(--navy-600)}
footer a:focus-visible{
  outline:2px solid var(--teal-700);
  outline-offset:3px;
  border-radius:4px;
}
.copy{
  color:var(--muted);
  font-size:.75rem;
  font-weight:500;
  margin:0;
}

@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes gradPan{0%,100%{background-position:0 50%}50%{background-position:100% 50%}}
@keyframes floatSlow{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(2%,-3%,0) scale(1.06)}}
@keyframes glowPulse{0%,100%{box-shadow:0 10px 24px -8px rgba(29,181,182,.55)}50%{box-shadow:0 16px 36px -6px rgba(29,181,182,.85)}}

@media (max-width:640px){
  body{padding:40px 16px}
  .destaque{padding:16px 18px}
  .cta{width:100%;padding:16px 24px}
  .glow{width:380px;height:280px;margin-left:-190px;top:-90px}
}

@media (prefers-reduced-motion:reduce){
  .topbar,.glow,h1 .grad,.cta{animation:none!important}
  .logo,h1,.apoio,.destaque,.cta,footer{animation:none!important;opacity:1!important;transform:none!important}
}
