.search-form {
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.search-form input[type="search"] {
  border: 1px solid #ccc;
  border-radius: 25px; /* 🔹 Campo mais redondo */
  padding: 4px 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

.wm-search-btn {
  background-color: #02213f;
  color: white;
  border: none;
  border-radius: 50%; /* 🔹 Botão redondo */
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wm-search-btn:hover {
  background-color: #03458b;
}
