.localizador-section {
  padding: 90px 0;
  background: #f8fafc;
}

.localizador-header {
  max-width: 720px;
  margin: 0 auto 50px;
}

.localizador-header h2 {
  font-weight: 800;
  margin-bottom: 10px;
}

.localizador-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid #FFD200;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #FFD200;
  color: #000;
}

.localizador-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
}

.localizador-filtros {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.lista-resultados {
  margin-top: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.resultado-item {
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.resultado-item:hover {
  background: #fff8dc;
}

.localizador-mapa {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .localizador-layout {
    grid-template-columns: 1fr;
  }

  .localizador-mapa {
    height: 400px;
  }
}
