/* institucional_tenant.css — site institucional da operação local */

/* Hero */
.tenant-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background-image: var(--xbyte-radial);
  position: relative; overflow: hidden;
}
.tenant-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 20%, transparent 70%);
          mask-image: radial-gradient(circle at 50% 0%, #000 20%, transparent 70%);
  opacity: 0.5;
}
.tenant-hero .container { position: relative; z-index: 2; }

/* Nav */
.tenant-nav-wrap { position: sticky; top: 0; z-index: 1030; }

/* Step num */
.step-num {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-family: var(--bs-font-display); font-weight: 700; font-size: .95rem;
  background: var(--xbyte-gradient); color: #fff; flex-shrink: 0;
}

/* Footer */
.site-footer { border-top: 1px solid var(--xbyte-border); padding: 2.5rem 0 1.5rem; }
.footer-link { color: var(--xbyte-muted); display: block; padding: .2rem 0; font-size: .9rem; }
.footer-link:hover { color: var(--xbyte-text); }

/* Hairline divider */
.hairline { border-color: var(--xbyte-border) !important; }

/* Mobile nav */
.mobile-nav-dropdown {
  position: absolute; left: 0; right: 0; z-index: 1040;
  background: var(--xbyte-surface);
}
@media (max-width: 991px) {
  .tenant-nav-wrap .d-none.d-lg-flex { display: none !important; }
}
