.elementor-19132 .elementor-element.elementor-element-edb9d5e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19132 .elementor-element.elementor-element-b438df0{--display:flex;--padding-top:60px;--padding-bottom:60px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-41116a4 *//* Fonte global */
.card h3,
.card p {
  font-family: 'Manrope', sans-serif;
  margin: 0;
}
/* Barra de ferramentas alinhada em uma linha */
.toolbar {
  display: flex;
  justify-content: space-between; /* filtros na esquerda, ícones na direita */
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: nowrap; /* mantém tudo em uma linha */
  gap: 20px;
}

/* Agrupamento dos filtros (lado esquerdo) */
.filter-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap; /* não deixa quebrar linha */
}

/* Selects */
.filter-group select {
  border: 1.5px solid #d6dce5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  background: #fff;
  min-width: 180px;
  transition: border 0.3s;
}
.filter-group select:focus {
  border-color: #0074C0;
  outline: none;
}

/* Campo de busca */
.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #d6dce5;
  border-radius: 8px;
  background: #fff;
}

.search-box input {
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  min-width: 320px;
  flex: 1; /* ocupa todo o espaço */
}

.search-box button {
    display: none !important;
  background: #0074C0;
  color: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-left: 1px solid #d6dce5;
}

.search-box button i {
  font-size: 14px; /* garante ícone centralizado */
}

.search-box button:hover {
  background: #0056b3;
}

.search-box.custom-search input[type="text"] {
  padding: 10px 14px;
  line-height: normal;
}

/* Botões de visualização (lado direito) */
.view-switch {
  display: flex;
  gap: 8px;
  margin-left: auto; /* garante que vá para direita */
}
.view-btn {
  border: 1.5px solid #d6dce5;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.view-btn.active,
.view-btn:hover {
  background: #E9F3FB;
  border-color: #007BFF;
  color: #007BFF;
}

/* Responsivo */
@media(max-width: 992px) {
  .toolbar {
    flex-wrap: wrap; /* permite quebrar em telas menores */
    gap: 10px;
  }
  .filter-group {
    flex-wrap: wrap; /* filtros podem quebrar em 2 linhas */
    width: 100%;
  }
  .search-box input {
    flex: 1;
  }
  .view-switch {
    margin-left: 0;
  }
}



/* Alternador de visualização */
.view-switch {
  display: flex;
  gap: 8px;
}

.view-btn {
  border: 1.5px solid #d6dce5;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.3s;
}

.view-btn.active,
.view-btn:hover {
  background: #E9F3FB;
  border-color: #007BFF;
  color: #007BFF;
}

/* Cards container */
#cards.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* sempre 3 colunas */
  gap: 20px;
}

#cards.list-view {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Card base */
.card {
  border: 2px solid #0074C0;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}

.card:hover {
  box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Link ocupa todo o card */
.card a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Ícone */
.card img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.card:hover img {
  transform: scale(1.1);
}

/* Textos */
.card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h3 {
  font-family: 'Manrope', sans-serif;
  color: #0074C0;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.card p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #757575;
  margin: 0;
}

/* Responsivo */
@media(max-width: 768px) {
  #cards.grid-view {
    grid-template-columns: 1fr; /* 1 por linha no mobile */
  }
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group {
    width: 100%;
  }
  .search-box input {
    width: 100%;
  }
}/* End custom CSS */