* {
  box-sizing: border-box;
}





main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.title {
  text-align: center;
  align-self: center;
  margin-top: 1.5rem;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(var(--shadow-sm));
}

/* Estilos da Barra de Busca e Filtro (Baseados no Dashboard) */
.search-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: oklch(0.98 0 0);
  border-radius: var(--radius-full);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0% 0 0 / 5%);
  transition: var(--transition);
}

.search-bar-wrapper:focus-within {
  background: var(--bg-surface);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.search-bar-wrapper input {
  border: none;
  width: 100%;
  background: transparent;
  padding-left: 0.8rem;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  height: 24px;
}

.icon-btn-pill {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border: none;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.icon-btn-pill:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.icon-btn-pill img {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Área de resultados */
.query-area {
    width: 100%;
    max-width: 1100px;
    margin: 0.5rem auto 2rem; /* Reduzi o espaço superior para 0.5rem */
    padding: 0 1.5rem;
}

