* {
  box-sizing: border-box;
}

.nav-hover:hover a {
  color: #000;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.slh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1021;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.slh-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.slh-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slh-mobile-only {
  display: flex;
}

.slh-desktop-only {
  display: none;
}

.slh-link {
  text-decoration: none;
  color: black;
  margin-right: 1rem;
  white-space: nowrap;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

}

.slh-dropdown {
  position: relative;
}

.slh-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: none;
  min-width: 180px;
}

.slh-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  margin-right: 1rem;
  white-space: nowrap;
  font-family: Roboto Condensed;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}

.slh-show {
  display: block !important;
}

.slh-search,
.slh-mobile-menu {
  display: none;
  padding: 1rem;
}

.slh-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 400;
  margin-right: 1rem;
  font-family: Roboto Condensed;
}

.slh-btn:hover {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .slh-mobile-only {
    display: none;
  }

  .slh-desktop-only {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }
}

/* --- Ajustes adicionais para o menu mobile (coluna com estilo limpo) --- */
.slh-mobile-menu details summary {
  list-style: none;
  cursor: pointer;
  font-weight: bold;
  padding: 0.25rem 0;
}

.slh-mobile-menu details summary::-webkit-details-marker {
  display: none;
}

.slh-mobile-menu details[open]>summary::after {
  content: "▾";
  font-size: 15px;
  margin-left: 4px;
}

.slh-mobile-menu details:not([open])>summary::after {
  content: "▸";
  font-size: 15px;
  margin-left: 4px;
}

.slh-mobile-menu a {
  display: block;
  padding: 0.3rem 0;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.slh-mobile-menu details div {
  margin-left: 12px;
  margin-top: 4px;
}

.slh-dropdown-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

/* Estilo do formulário de busca */
.slh-search form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
  border: 2px solid #6D28D9;
  border-radius: 8px;
  padding: 6px 12px;
  background-color: #fff;
}

/* Campo de texto */
.slh-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 6px;
  color: #333;
  background: transparent;
}

/* Placeholder */
.slh-search input::placeholder {
  color: #aaa;
}

/* Botão com ícone */
.slh-search button {
  background-color: #6D28D9;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícone no botão */
.slh-search button img {
  height: 16px;
  filter: brightness(0) invert(1);
  /* deixa branco */
}