/* ── Floating left menu ───────────────────────── */
#floating-menu {
  position: fixed;
  top: 80px; /* recuo abaixo da barra */
  left: 12px; /* recuo da borda esquerda */
  width: 220px;
  background: rgba(17,17,17,0.97);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
}

/* Princípios button — full width */
.floating-menu__principles-btn {
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #e0e0e0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}

.floating-menu__principles-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

/* Divider */
.floating-menu__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 2px 0;
}

/* Search */
.floating-menu__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.floating-menu__search-icon {
  position: absolute;
  left: 10px;
  color: #555;
  font-size: 17px;
  pointer-events: none;
  line-height: 1;
}

#search-input {
  width: 100%;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 13px;
  padding: 0 28px 0 32px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}

#search-input::placeholder { color: #555; }

#search-input:focus {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.09);
}

#search-clear {
  position: absolute;
  right: 8px;
  background: transparent;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 12px;
  padding: 2px;
}

#search-clear:hover { color: #f0f0f0; }

/* Filter selects */
#floating-menu select {
  width: 100%;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 12px;
  padding: 0 8px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

#floating-menu select:hover,
#floating-menu select:focus { border-color: rgba(255,255,255,0.22); }

#floating-menu select option {
  background: #1a1a1a;
  color: #f0f0f0;
}
