/* ===== FILTROS ===== */
.af-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}


#af-filter-select{
	background-color:#1b2b4a !important;
	color:white;
	border-radius:0px;
	border:0px;
	width: 100%; 
	max-width: 320px;
	margin: 0 auto !important;
	outline: none;
}

#af-filter-select option { 
	font-size:12px !important;
}

.af-filter button {
  background: #f3f3f3;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
}

.af-filter button:hover {
  background: #e6e6e6;
}

.af-filter button.active {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
}




/* ===== GRID ===== */
.af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
	margin-top:25px;
}

/* ===== ITEM ===== */
.af-item {
  background: #f4f4f7;
  border-bottom: 5px  solid var(--e-global-color-secondary);
  padding: 20px;
  text-align: center;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.af-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
	cursor: default;
}

/* ===== IMAGEM ===== */
.af-thumb img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* ===== TÍTULO ===== */
.af-item h3 {
  font-size: 20px;
  margin: 0;
  color: var(--e-global-color-primary);
  font-weight: 600;
}

/* ===== ESPECIALIDADE ===== */
h4.af-especialidade {
  font-size: 12px !important;
  margin: 0;
  color: #333;
  font-weight: 500;
}
@media(max-width: 575px){
    .elementor-element-e2d2842{
        display: block!important;
    }
}