/* Alpha Ambiental — custom styles */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

.input {
  margin-top: .375rem;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  padding: .875rem;
  color: #fff;
  font-size: 14px;
}
.input:focus { outline: none; border-color: #22D46B; }

/* Marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { animation: marquee 35s linear infinite; }

/* Drawer */
#drawer.open { opacity: 1; pointer-events: auto; }
#drawer.open aside { transform: translateX(0); }
