/* =========================================================
   RunSol — Menu e rodapé da tela de login
   (o restante do layout/fundo permanece o original)
   ========================================================= */

:root {
  --rs-navy-900: #0a1628;
  --rs-amber-300: #fbc55c;
  --rs-amber-500: #f5a623;
  --rs-amber-600: #d98a12;
  --rs-slate-300: #b7c4dc;
  --rs-white: #f7f9fc;
}

.rs-nav {
  position: relative;
  z-index: 20;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(247, 249, 252, 0.08);
}

.rs-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rs-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.rs-nav__logo {
  height: 26px;
  width: auto;
  display: block;
}

.rs-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rs-nav__links a {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--rs-slate-300);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  position: relative;
}

.rs-nav__links a:not(.rs-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--rs-amber-500);
  transition: width 0.2s ease;
}

.rs-nav__links a:not(.rs-nav__cta):hover {
  color: var(--rs-white);
}

.rs-nav__links a:not(.rs-nav__cta):hover::after {
  width: 100%;
}

.rs-nav__cta {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--rs-navy-900) !important;
  background: linear-gradient(135deg, var(--rs-amber-300), var(--rs-amber-500));
  padding: 7px 16px;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.rs-nav__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* rodapé */

.rs-footer {
  font-family: "Inter", "Segoe UI", sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 16px 20px 22px;
  font-size: 0.78rem;
  color: var(--rs-slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rs-footer a {
  color: var(--rs-slate-300);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.rs-footer a:hover {
  color: var(--rs-amber-300);
  border-color: var(--rs-amber-300);
}

/* responsivo */

@media (max-width: 480px) {
  .rs-nav__inner { padding: 10px 16px; }
  .rs-nav__links { gap: 14px; }
  .rs-nav__links a { font-size: 0.82rem; }
}
