:root {
  color-scheme: dark;

  --bg: #020812;
  --panel: rgba(6, 20, 36, .76);
  --panel-strong: rgba(7, 23, 40, .92);

  --cyan: #27d9f3;
  --cyan-light: #8ff4ff;
  --blue: #3b82f6;
  --blue-light: #70a8ff;

  --text: #f1fbff;
  --muted: #8faabd;
  --muted-2: #637e92;

  --line: rgba(94, 205, 255, .16);
  --line-strong: rgba(55, 218, 244, .42);

  --danger: #fb7185;

  --shadow:
    0 35px 90px rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);

  background:
    linear-gradient(
      90deg,
      rgba(1, 8, 16, .92) 0%,
      rgba(2, 11, 21, .82) 42%,
      rgba(2, 12, 22, .67) 100%
    ),
    radial-gradient(
      circle at 70% 25%,
      rgba(0, 191, 255, .18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #020711,
      #061728 52%,
      #03101c
    );

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;
  z-index: -3;

  background:
    radial-gradient(
      ellipse at 70% 65%,
      rgba(15, 92, 142, .23),
      transparent 37%
    ),
    radial-gradient(
      ellipse at 25% 90%,
      rgba(0, 160, 190, .12),
      transparent 34%
    );
}

.city {
  position: fixed;
  inset: 0;
  z-index: -2;

  overflow: hidden;

  pointer-events: none;
}

.city::before,
.city::after {
  content: "";

  position: absolute;

  bottom: 0;

  width: 42vw;
  height: 62vh;

  opacity: .30;

  filter:
    drop-shadow(
      0 0 30px rgba(25, 170, 220, .10)
    );
}

.city::before {
  right: -3vw;

  background:
    linear-gradient(
      90deg,
      transparent 0 7%,
      rgba(13, 42, 62, .94) 7% 23%,
      transparent 23% 27%,
      rgba(10, 35, 54, .96) 27% 46%,
      transparent 46% 51%,
      rgba(14, 45, 66, .94) 51% 70%,
      transparent 70% 75%,
      rgba(9, 31, 49, .98) 75%
    );

  clip-path:
    polygon(
      0 100%,
      0 34%,
      7% 34%,
      7% 18%,
      23% 18%,
      23% 48%,
      29% 48%,
      29% 4%,
      48% 4%,
      48% 39%,
      55% 39%,
      55% 25%,
      72% 25%,
      72% 53%,
      79% 53%,
      79% 11%,
      100% 11%,
      100% 100%
    );
}

.city::after {
  left: 29vw;

  width: 36vw;
  height: 45vh;

  background:
    linear-gradient(
      90deg,
      rgba(9, 34, 53, .82),
      rgba(11, 47, 70, .74)
    );

  clip-path:
    polygon(
      0 100%,
      0 42%,
      16% 42%,
      16% 18%,
      36% 18%,
      36% 58%,
      44% 58%,
      44% 5%,
      63% 5%,
      63% 37%,
      75% 37%,
      75% 22%,
      100% 22%,
      100% 100%
    );
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;

  pointer-events: none;

  opacity: .18;

  background-image:
    linear-gradient(
      rgba(34, 211, 238, .035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(34, 211, 238, .035) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      transparent 78%
    );
}

.page {
  width: min(1540px, 100%);

  min-height: 100vh;

  margin: auto;

  padding:
    38px
    clamp(28px, 5vw, 82px)
    45px;

  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--text);

  text-decoration: none;
}

.logo-mark {
  position: relative;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;

  padding: 10px 9px;

  border:
    1px solid rgba(73, 218, 245, .42);

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(34, 211, 238, .18),
      rgba(59, 130, 246, .06)
    );

  box-shadow:
    0 0 35px rgba(34, 211, 238, .10);
}

.logo-mark i {
  display: block;

  width: 6px;

  border-radius: 2px 2px 0 0;

  background:
    linear-gradient(
      to top,
      var(--blue),
      var(--cyan-light)
    );

  box-shadow:
    0 0 10px rgba(34, 211, 238, .35);
}

.logo-mark i:nth-child(1) {
  height: 16px;
}

.logo-mark i:nth-child(2) {
  height: 26px;
}

.logo-mark i:nth-child(3) {
  height: 21px;
}

.logo-text strong {
  display: block;

  font-size: 25px;
  line-height: 1;

  letter-spacing: -1.2px;
}

.logo-text strong span {
  color: var(--cyan);
}

.logo-text small {
  display: block;

  margin-top: 5px;

  color: #66869b;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1.3px;
}

.top-status {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #7896aa;

  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #3ee6a4;

  box-shadow:
    0 0 13px rgba(62, 230, 164, .7);
}

.content {
  flex: 1;

  display: grid;

  grid-template-columns:
    minmax(0, 1.13fr)
    minmax(390px, 500px);

  gap:
    clamp(50px, 7vw, 115px);

  align-items: center;

  padding:
    35px 0
    25px;
}

.hero {
  max-width: 760px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 22px;

  padding: 8px 13px;

  border:
    1px solid rgba(34, 211, 238, .21);

  border-radius: 999px;

  background:
    rgba(34, 211, 238, .055);

  color: #91edfa;

  font-size: 11px;
  font-weight: 750;

  text-transform: uppercase;

  letter-spacing: 1.25px;
}

.badge::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--cyan);

  box-shadow:
    0 0 12px var(--cyan);
}

.hero h1 {
  max-width: 760px;

  margin: 0;

  font-size:
    clamp(47px, 5.5vw, 78px);

  line-height: .98;

  letter-spacing:
    clamp(-4.5px, -.28vw, -2px);
}

.hero h1 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #8ff5ff,
      #55c9ff 48%,
      #719cff
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  max-width: 650px;

  margin:
    27px 0
    34px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;

  max-width: 680px;
}

.feature {
  min-height: 105px;

  padding: 18px;

  display: flex;
  gap: 14px;

  border:
    1px solid rgba(78, 189, 232, .13);

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(6, 25, 42, .55),
      rgba(4, 15, 27, .38)
    );

  backdrop-filter: blur(10px);

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.feature:hover {
  transform: translateY(-3px);

  border-color:
    rgba(34, 211, 238, .36);

  background:
    rgba(7, 29, 48, .68);
}

.feature-icon {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border:
    1px solid rgba(34, 211, 238, .22);

  border-radius: 11px;

  background:
    rgba(34, 211, 238, .07);

  color: var(--cyan);

  font-size: 17px;
}

.feature strong {
  display: block;

  margin-bottom: 5px;

  color: #dcf8ff;

  font-size: 13px;
}

.feature p {
  margin: 0;

  color: #718da1;

  font-size: 11px;
  line-height: 1.55;
}

.login-area {
  width: 100%;

  justify-self: end;
}

.login-card {
  position: relative;

  width: 100%;

  padding:
    clamp(28px, 3vw, 42px);

  overflow: hidden;

  border:
    1px solid rgba(74, 203, 246, .25);

  border-radius: 29px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 29, 49, .91),
      rgba(3, 14, 26, .88)
    );

  backdrop-filter: blur(28px);

  box-shadow: var(--shadow);
}

.login-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -150px;
  right: -120px;

  border-radius: 50%;

  background:
    rgba(34, 211, 238, .18);

  filter: blur(65px);

  pointer-events: none;
}

.login-card::after {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  left: -110px;
  bottom: -120px;

  border-radius: 50%;

  background:
    rgba(59, 130, 246, .13);

  filter: blur(60px);

  pointer-events: none;
}

.login-head {
  position: relative;
  z-index: 1;

  margin-bottom: 25px;
}

.login-head h2 {
  margin: 0 0 7px;

  font-size: 29px;

  letter-spacing: -1.1px;
}

.login-head p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.6;
}

.account-tabs {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 4px;

  margin-bottom: 24px;

  padding: 4px;

  border:
    1px solid rgba(82, 165, 201, .13);

  border-radius: 13px;

  background:
    rgba(1, 10, 18, .54);
}

.account-tab {
  min-width: 0;

  border: 0;

  padding: 10px 6px;

  border-radius: 9px;

  background: transparent;

  color: #668399;

  cursor: pointer;

  font: inherit;
  font-size: 11px;
  font-weight: 750;

  transition:
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

.account-tab:hover {
  color: #c7f6ff;
}

.account-tab.active {
  color: #dffcff;

  background:
    linear-gradient(
      90deg,
      rgba(34, 211, 238, .15),
      rgba(59, 130, 246, .13)
    );

  box-shadow:
    inset 0 0 0 1px
    rgba(34, 211, 238, .20);
}

.alert {
  position: relative;
  z-index: 1;

  margin-bottom: 18px;

  padding: 12px 14px;

  border:
    1px solid rgba(251, 113, 133, .30);

  border-radius: 12px;

  background:
    rgba(251, 113, 133, .08);

  color: #fecdd3;

  font-size: 12px;
  line-height: 1.5;
}

.form {
  position: relative;
  z-index: 1;
}

.field {
  margin-bottom: 17px;
}

.field-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 8px;
}

label {
  color: #b5cedd;

  font-size: 11px;
  font-weight: 750;
}

.forgot {
  border: 0;
  padding: 0;

  background: none;

  color: #68dff2;

  cursor: pointer;

  font: inherit;
  font-size: 10px;

  text-decoration: none;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;

  left: 14px;
  top: 50%;

  transform: translateY(-50%);

  color: #55758a;

  pointer-events: none;

  font-size: 14px;
}

input {
  width: 100%;

  outline: none;

  padding:
    14px
    43px
    14px
    40px;

  border:
    1px solid rgba(99, 168, 198, .18);

  border-radius: 12px;

  background:
    rgba(1, 9, 17, .62);

  color: #fff;

  font: inherit;
  font-size: 13px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

input::placeholder {
  color: #4e697d;
}

input:focus {
  border-color:
    rgba(34, 211, 238, .66);

  background:
    rgba(2, 14, 25, .88);

  box-shadow:
    0 0 0 4px
    rgba(34, 211, 238, .065);
}

.password-toggle {
  position: absolute;

  right: 8px;
  top: 50%;

  width: 35px;
  height: 35px;

  transform: translateY(-50%);

  border: 0;

  border-radius: 9px;

  background: transparent;

  color: #668499;

  cursor: pointer;

  font-size: 15px;
}

.password-toggle:hover {
  color: var(--cyan);
  background: rgba(34,211,238,.06);
}

.options {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin:
    -1px 0
    20px;
}

.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #718da1;

  cursor: pointer;

  font-size: 10px;
}

.remember input {
  width: 14px;
  height: 14px;

  margin: 0;

  padding: 0;

  accent-color: var(--cyan);
}

.login-button {
  position: relative;

  width: 100%;

  overflow: hidden;

  border: 0;

  padding: 14px 18px;

  border-radius: 12px;

  background:
    linear-gradient(
      90deg,
      #27d9f3,
      #5aa8ff
    );

  box-shadow:
    0 15px 35px
    rgba(34, 211, 238, .16);

  color: #02131b;

  cursor: pointer;

  font: inherit;
  font-size: 13px;
  font-weight: 850;

  transition:
    transform .18s ease,
    filter .18s ease,
    box-shadow .18s ease;
}

.login-button:hover {
  transform: translateY(-2px);

  filter: brightness(1.06);

  box-shadow:
    0 19px 45px
    rgba(34, 211, 238, .24);
}

.login-button:active {
  transform: translateY(0);
}

.login-button.loading {
  pointer-events: none;
  opacity: .78;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 22px 0;

  color: #4e6a7e;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.divider::before,
.divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(104, 159, 187, .12);
}

.register-box {
  position: relative;
  z-index: 1;

  text-align: center;
}

.register-box p {
  margin:
    0 0
    11px;

  color: #718da1;

  font-size: 11px;
}

.register-button {
  width: 100%;

  display: block;

  padding: 13px 16px;

  border:
    1px solid rgba(34, 211, 238, .24);

  border-radius: 12px;

  background:
    rgba(34, 211, 238, .045);

  color: #a9f3ff;

  cursor: pointer;

  font-size: 11px;
  font-weight: 750;

  text-decoration: none;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.register-button:hover {
  transform: translateY(-2px);

  border-color:
    rgba(34, 211, 238, .50);

  background:
    rgba(34, 211, 238, .09);
}

.login-footer {
  position: relative;
  z-index: 1;

  margin-top: 22px;

  padding-top: 17px;

  border-top:
    1px solid rgba(255,255,255,.055);

  display: flex;
  justify-content: center;
  gap: 8px;

  color: #4e6d82;

  font-size: 9px;
}

.login-footer span {
  color: #617f92;
}

.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding-top: 12px;

  color: #425f74;

  font-size: 9px;
}

.page-footer-links {
  display: flex;
  gap: 18px;
}

.page-footer a {
  color: #4f7086;
  text-decoration: none;
}

.page-footer a:hover {
  color: #85eafa;
}

@media (max-width: 1000px) {
  .content {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .hero {
    max-width: 800px;
  }

  .login-area {
    max-width: 600px;

    justify-self: center;
  }

  .city::before {
    width: 75vw;
  }
}

@media (max-width: 650px) {
  .page {
    padding:
      22px
      17px
      28px;
  }

  .top-status {
    display: none;
  }

  .logo-text small {
    display: none;
  }

  .content {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 46px;

    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
  }

  .login-card {
    padding: 25px 20px;

    border-radius: 23px;
  }

  .account-tab {
    font-size: 10px;
  }

  .page-footer {
    flex-direction: column;

    text-align: center;
  }
}

.forgot-disabled,
.footer-disabled {
  cursor: not-allowed;
  opacity: .58;
}

.footer-disabled {
  color: #4f7086;
}

.alert-success { border-color: rgba(77, 226, 157, .4); background: rgba(36, 130, 88, .18); color: #a6f2ca; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

/* Interações da página de acesso */
@keyframes login-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes login-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes login-pulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 217, 243, .36); }
  100% { box-shadow: 0 0 0 12px rgba(39, 217, 243, 0); }
}

@keyframes login-shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@keyframes login-ambient {
  0%, 100% { opacity: .72; transform: scale(1) translate3d(0, 0, 0); }
  50% { opacity: 1; transform: scale(1.06) translate3d(0, -8px, 0); }
}

@keyframes login-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, -48px 24px; }
}

@keyframes login-tap {
  0% { transform: scale(1); }
  45% { transform: scale(1.018); }
  100% { transform: scale(1); }
}

.grid-overlay {
  animation: login-grid-drift 18s linear infinite;
}

.city::before,
.city::after {
  animation: login-float 11s ease-in-out infinite;
}

.city::after { animation-delay: -4s; }

.login-card.is-tapped {
  animation: login-tap .42s ease-out;
}

body::before {
  animation: login-ambient 8s ease-in-out infinite;
}

.hero .badge {
  box-shadow: 0 0 0 0 rgba(39, 217, 243, .18);
  animation: login-rise .65s cubic-bezier(.22, 1, .36, 1) both, login-pulse 2.8s ease-out 1.1s infinite;
}

@media (prefers-reduced-motion: reduce) {
  body::before, .hero .badge, .grid-overlay, .city::before, .city::after,
  .login-card.is-tapped { animation: none !important; }
}

.page {
  animation: login-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.logo-mark {
  animation: login-float 5s ease-in-out infinite;
}

.status-dot {
  animation: login-pulse 2.2s ease-out infinite;
}

.hero .badge,
.hero h1,
.hero-description,
.login-card {
  animation: login-rise .65s cubic-bezier(.22, 1, .36, 1) both;
}

.hero h1 { animation-delay: .08s; }
.hero-description { animation-delay: .16s; }
.login-card { animation-delay: .12s; }

.feature {
  animation: login-rise .55s cubic-bezier(.22, 1, .36, 1) both;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature:nth-child(1) { animation-delay: .22s; }
.feature:nth-child(2) { animation-delay: .3s; }
.feature:nth-child(3) { animation-delay: .38s; }
.feature:nth-child(4) { animation-delay: .46s; }

.feature:hover {
  transform: translateY(-5px) scale(1.01);
}

.feature-icon {
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature:hover .feature-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 0 0 6px rgba(39, 217, 243, .08);
}

.login-card {
  transform-style: preserve-3d;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.login-card:hover {
  border-color: rgba(55, 218, 244, .34);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .52), 0 0 32px rgba(0, 180, 220, .08);
}

.account-tab {
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.account-tab:hover {
  transform: translateY(-2px);
}

.account-tab.active {
  animation: login-pulse 1.6s ease-out 1;
}

.login-button,
.register-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.login-button::after,
.register-button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  transform: skewX(-18deg);
  animation: login-shimmer 4.8s ease-in-out infinite;
  pointer-events: none;
}

.login-button:hover,
.register-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.login-button:active,
.register-button:active {
  transform: translateY(0) scale(.985);
}

.input-wrap {
  transition: transform .2s ease, box-shadow .2s ease;
}

.input-wrap:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(39, 217, 243, .08), 0 14px 28px rgba(0,0,0,.15);
}

@media (prefers-reduced-motion: reduce) {
  .page, .logo-mark, .status-dot, .hero .badge, .hero h1, .hero-description,
  .login-card, .feature, .account-tab.active, .login-button::after,
  .register-button::after { animation: none !important; }
  .feature:hover, .account-tab:hover, .login-button:hover, .register-button:hover,
  .input-wrap:focus-within { transform: none !important; }
}

/* Experiência interativa da página inicial */
.experience-panel {
  position: relative;
  max-width: 680px;
  margin: 30px 0 22px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(82, 190, 232, .18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 34, 54, .62), rgba(3, 15, 28, .48));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 18px 48px rgba(0,0,0,.12);
}
.experience-panel::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(39, 217, 243, .16);
  filter: blur(30px);
  pointer-events: none;
}
.experience-heading { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }

/* Fundo fotográfico e abertura da experiência de acesso */
.city {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, .94) 0%, rgba(2, 8, 18, .78) 38%, rgba(2, 8, 18, .18) 100%),
    url('/img/login-condominio-bg.png') center / cover no-repeat;
  opacity: .98;
  animation: login-kenburns 24s ease-in-out infinite alternate;
}

.grid-overlay { z-index: 0; }
.page { position: relative; z-index: 1; }

.city::before,
.city::after { opacity: .14; }

@keyframes login-kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.09) translate3d(-1.5%, -1%, 0); }
}

.login-intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  background: #020812;
  color: var(--text);
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}

.login-intro.is-hidden { opacity: 0; visibility: hidden; }
.login-intro strong { font-size: 27px; letter-spacing: -1px; }
.login-intro strong span { color: var(--cyan); }
.login-intro p { margin: 0; color: var(--muted); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; }
.login-intro-mark { display: flex; align-items: flex-end; gap: 4px; height: 38px; }
.login-intro-mark i { display: block; width: 7px; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--blue), var(--cyan-light)); box-shadow: 0 0 14px rgba(39, 217, 243, .45); animation: login-intro-bars 1s ease-in-out infinite; }
.login-intro-mark i:nth-child(1) { height: 17px; animation-delay: -.18s; }
.login-intro-mark i:nth-child(2) { height: 32px; animation-delay: -.34s; }
.login-intro-mark i:nth-child(3) { height: 24px; animation-delay: -.05s; }
.login-intro-line { width: 150px; height: 2px; overflow: hidden; border-radius: 999px; background: rgba(143, 244, 255, .12); }
.login-intro-line i { display: block; width: 45%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan-light)); animation: login-intro-progress 1.2s ease-in-out infinite; }

@keyframes login-intro-bars { 0%, 100% { transform: scaleY(.72); opacity: .62; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes login-intro-progress { from { transform: translateX(-120%); } to { transform: translateX(340%); } }

@media (max-width: 760px) {
  .city { background-position: 66% center; }
  .city::before, .city::after { opacity: .08; }
}

@media (prefers-reduced-motion: reduce) {
  .login-intro, .city, .login-intro-mark i, .login-intro-line i { animation: none !important; transition: none !important; }
}
.experience-heading .eyebrow { color: #67d9eb; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.experience-heading h2 { margin: 5px 0 0; color: #e6fbff; font-size: 16px; letter-spacing: -.35px; }
.experience-pulse { width: 10px; height: 10px; flex: 0 0 auto; margin-top: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(39,217,243,.5); animation: login-pulse 2.2s ease-out infinite; }
.experience-tabs { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 12px; }
.experience-tab { border: 1px solid rgba(91, 185, 220, .15); border-radius: 999px; padding: 8px 12px; background: rgba(2, 13, 23, .52); color: #7e9bad; cursor: pointer; font: inherit; font-size: 10px; font-weight: 800; transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease; }
.experience-tab:hover { transform: translateY(-2px); color: #d7faff; border-color: rgba(39,217,243,.42); }
.experience-tab.is-active { color: #e4fdff; border-color: rgba(39,217,243,.38); background: linear-gradient(90deg, rgba(39,217,243,.15), rgba(74,144,255,.13)); box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.experience-preview { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; min-height: 57px; padding: 11px 12px; border: 1px solid rgba(97, 192, 225, .13); border-radius: 14px; background: rgba(1, 10, 18, .46); }
.experience-preview.is-changing { animation: experience-change .34s ease both; }
.experience-preview-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(39,217,243,.25); border-radius: 10px; background: rgba(39,217,243,.08); color: #8ff4ff; font-size: 18px; }
.experience-preview strong { display: block; color: #d9faff; font-size: 12px; }
.experience-preview p { margin: 3px 0 0; color: #7693a6; font-size: 10px; line-height: 1.5; }
.experience-steps { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin-top: 12px; color: #557286; font-size: 9px; font-weight: 800; letter-spacing: .35px; text-transform: uppercase; }
.experience-steps span { transition: color .22s ease, transform .22s ease; }
.experience-steps span.is-current { color: #8beffc; transform: translateY(-1px); }
.experience-steps i { width: 18px; height: 1px; background: linear-gradient(90deg, rgba(39,217,243,.45), rgba(88,140,255,.16)); }
.access-note { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; color: #6f96a8; font-size: 10px; }
.access-note span { color: #53e2ef; }
@keyframes experience-change { 0% { opacity: .35; transform: translateY(5px) scale(.985); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 650px) {
  .experience-panel { margin-top: 24px; padding: 15px; border-radius: 17px; }
  .experience-heading h2 { font-size: 14px; }
  .experience-tabs { gap: 6px; }
  .experience-tab { flex: 1 1 auto; padding: 8px 9px; }
  .experience-steps { gap: 5px; font-size: 8px; }
  .experience-steps i { flex: 1 1 auto; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .experience-pulse, .experience-preview.is-changing { animation: none !important; }
  .experience-tab:hover, .experience-steps span.is-current { transform: none; }
}

/* Páginas institucionais */
.institutional-page .page { position: relative; }
.institutional-topbar { position: relative; z-index: 1; }
.institutional-login-link { display: inline-flex; align-items: center; gap: 8px; color: #9eeef8; font-size: 11px; font-weight: 800; text-decoration: none; transition: transform .2s ease, color .2s ease; }
.institutional-login-link:hover { color: #e0fdff; transform: translateX(2px); }
.institutional-content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: center; gap: 34px; max-width: 1000px; width: 100%; margin: auto; padding: 44px 0; }
.institutional-card { padding: clamp(28px, 5vw, 56px); border: 1px solid rgba(74,203,246,.24); border-radius: 28px; background: linear-gradient(145deg, rgba(8,29,49,.9), rgba(3,14,26,.86)); box-shadow: var(--shadow); backdrop-filter: blur(24px); animation: login-rise .65s cubic-bezier(.22,1,.36,1) both; }
.institutional-kicker { margin: 28px 0 8px; color: #62d7e9; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.1px; }
.institutional-card h1 { margin: 0; color: #effcff; font-size: clamp(36px, 5vw, 60px); line-height: 1.02; letter-spacing: -2.8px; }
.institutional-copy { max-width: 680px; margin-top: 24px; }
.institutional-copy p { margin: 0 0 15px; color: #9ab4c3; font-size: 14px; line-height: 1.78; }
.institutional-copy p:last-child { margin-bottom: 0; }
.institutional-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.institutional-actions .register-button { width: auto; min-width: 190px; text-align: center; }
.institutional-secondary { color: #81adbd; font-size: 11px; font-weight: 750; text-decoration: none; transition: color .2s ease; }
.institutional-secondary:hover { color: #d7fbff; }
.institutional-aside { display: grid; gap: 7px; padding: 16px; border: 1px solid rgba(82,190,232,.14); border-radius: 18px; background: rgba(4,18,31,.55); animation: login-rise .65s .12s cubic-bezier(.22,1,.36,1) both; }
.institutional-aside-label { margin: 2px 10px 8px; color: #597b8d; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.institutional-aside a { display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; border: 1px solid transparent; border-radius: 10px; color: #86a7b6; font-size: 11px; font-weight: 750; text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.institutional-aside a:hover, .institutional-aside a.is-active { color: #e0fdff; border-color: rgba(39,217,243,.22); background: rgba(39,217,243,.08); transform: translateX(2px); }
.institutional-aside a span { color: #56dbea; }
@media (max-width: 800px) {
  .institutional-content { grid-template-columns: 1fr; gap: 18px; padding: 28px 0; }
  .institutional-aside { grid-template-columns: repeat(3, 1fr); align-items: center; }
  .institutional-aside-label { grid-column: 1 / -1; }
  .institutional-aside a { justify-content: center; text-align: center; }
  .institutional-aside a span { display: none; }
}
@media (max-width: 560px) {
  .institutional-login-link { font-size: 0; }
  .institutional-login-link span { font-size: 18px; }
  .institutional-card { padding: 25px 20px; border-radius: 22px; }
  .institutional-card h1 { font-size: 39px; letter-spacing: -2px; }
  .institutional-copy p { font-size: 13px; }
  .institutional-aside { grid-template-columns: 1fr; }
  .institutional-aside-label { margin-bottom: 2px; }
  .institutional-aside a { justify-content: space-between; text-align: left; }
  .institutional-aside a span { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  .institutional-card, .institutional-aside { animation: none !important; }
  .institutional-login-link:hover, .institutional-aside a:hover { transform: none; }
}
.institutional-whatsapp { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 15px; border: 1px solid rgba(66,221,161,.36); border-radius: 12px; background: rgba(66,221,161,.11); color: #b4f7d6; font-size: 11px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.institutional-whatsapp:hover { transform: translateY(-2px); border-color: rgba(66,221,161,.62); background: rgba(66,221,161,.18); }
.support-contacts { display: grid; gap: 8px; margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); }
.support-contacts > .institutional-aside-label { margin: 0 0 2px; }
.support-contacts > a, .support-contacts > div { display: grid; gap: 3px; padding: 10px 12px; border: 1px solid rgba(82,190,232,.12); border-radius: 10px; background: rgba(2,13,23,.32); color: inherit; text-decoration: none; }
.support-contacts > a:hover { border-color: rgba(39,217,243,.34); background: rgba(39,217,243,.07); }
.support-contacts strong { color: #d9faff; font-size: 11px; }
.support-contacts small { color: #718da1; font-size: 10px; }
.support-pending { opacity: .72; }
@media (prefers-reduced-motion: reduce) { .institutional-whatsapp:hover { transform: none; } }
