body {
  background: transparent;
}

.public-nav {
  position: fixed;
  inset: 0 0 auto;
  padding-top: 8px;
  pointer-events: none;
  z-index: 40;
  background: transparent;
}

.public-nav .nav-inner {
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  background: #fff;
  pointer-events: auto;
  border: 1px solid var(--lb-borde);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(36, 33, 29, 0.08);
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lb-tinta);
  min-width: 0;
}

.brand-text {
  min-width: 0;
}

.brand-name {
  font-family: "Gelasio", "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
  color: var(--lb-azul);
}

.nav-links {
  gap: 10px;
  align-items: center;
}

.nav-links .btn {
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-family: "Work Sans", system-ui, sans-serif;
  border-radius: 4px;
}

.nav-links a.nav-link-text {
  text-decoration: none;
  color: #4a5568;
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  transition: color 0.15s ease;
  white-space: nowrap;
  padding: 0 6px;
}

.nav-links a.nav-link-text:hover {
  color: var(--lb-azul);
}

.brand-logo-svg {
  flex-shrink: 0;
}

.public-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.public-actions-desktop {
  display: none;
}

.public-footer-muted {
  color: #6b6560;
}

.public-footer-meta {
  color: #6b6560;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .public-nav .nav-inner {
    padding: 10px 28px;
  }

  .public-actions-desktop {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  .public-actions-mobile {
    display: none;
  }
}

@media (max-width: 991px) {
  .public-nav .nav-inner {
    border-radius: 6px;
    padding: 10px 18px;
  }

  .brand-name {
    font-size: 0.85rem;
  }
}
